Have you ever wanted your very own Droid App? In the sample below, you will see Cindy's new toy. Her app, once installed, sends her newest rss feeds directly to your Android device. Even when the app is closed, you have the option to receive notifications of any new posts. Application comes complete with it's own custom QR barcode, so it can be placed on your site for people to begin downloading and installing your Droid app. This is a live demo, so set your Droid to "scan" the barcode below for evaluation. If you're interested in having your own Droid app, send me a message via contact button or cyberhawkdesigns@gmail.com. It's $50.00 for both the custom .apk file and QR barcode. This includes website integration and artwork. Side-note: Can be set up to display Podcast feeds.
This highly visible subscription box will help you get more email and rss subscribers by adding itself after every post on your WordPress Thesis site.

In this tutorial you will first need to download the yellow star icon HERE and upload it to your theme's custom "images" folder. Once complete, you just have to edit the usual two files: custom.css and custom_functions.php
Add the following code to your custom.css file:
1 2 3 4 5 6 |
.custom .format_text p.voteme {
background: #ffffa0 url('/wp-content/themes/yourtheme/custom/images/yellow_star.png') center no-repeat;
border: 2px solid #e5e597;
background-position: 7px 50%; /* x-pos y-pos */
text-align: left;
padding: 5px 5px 5px 45px;}
|
Add the following code to your custom_functions.php file:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
/* adds a subscribe box to bottom of post (home) */
function seth_godin_stuff () {
if (is_home()) { ?>
<p><p class="voteme">Don't miss an article! Subscribe to <i>yoursitename</i> <a href="yourrssfeedurl">via RSS</a> or <a href="youremailfeedurl">via e-mail</a>.<p/>
<?php
}
}
add_action('thesis_hook_after_post', 'seth_godin_stuff', '1');
/* adds a subscribe box to bottom of post (single) */
function seth_godin_stuff_2 () {
if (is_single()) { ?>
<p><p class="voteme"Don't miss an article! Subscribe to <i>yoursitename</i> <a href="yourrssfeedurl">via RSS</a> or <a href="youremailfeelurl">via e-mail</a>.<p/>
<?php
}
}
add_action('thesis_hook_after_post', 'seth_godin_stuff_2', '2');
|
If you're customizing your WordPress Thesis Theme from scratch and want to null out the default divider lines such as Teaser Box lines, Comment lines, Sidebar lines, Post lines, etc. add the following code to the very top of your custom.css file:
1 2 3 4 5 6 7 8 9 |
.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
border-bottom: 0px;
border-top: 0px;
border-right: 0px;
border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
background: none;
}
|
Placing this code on top will give you the option to "over-rule" any declarations as long as your code is below/after this one.
If you’ve already upgraded to WordPress 3.2, you may have noticed that Thesis’ awesome "category page SEO controls" were not showing up.
To fix this, the guys at DIYthemes released Thesis 1.8.2, and they also added one new feature: a "dashboard news widget" with links to the latest posts from the Thesis blog.
Finally, have you checked out their new WordPress SEO resource page yet? Whether you’re a novice or a pro, you’ll benefit from their simple, effective SEO tips!
If you’re a DIYthemes customer, you can download Thesis 1.8.2 here. Don’t have Thesis yet? Click here to see which Thesis is right for you.
Source: Chris Pearson
There are a bunch of jQuery plugins and standard HTML/CSS solutions out there for creating a full screen, or full page background image that will stretch the image to the full width of the browser window. So basically no matter what size the screen is, it will resize the image accordingly. Here are a few that I found while searching:
There are numerous variations for creating the full screen background image, depending on your needs. For example, you can have just a single image, a series of images that rotate, and also you could have content above the image or not. I was working on a website for a client and there was a need to have a series of full screen background images on the home page that rotate and have some content above the image.
I ended up going with bgStretcher, but now I had to make it work in Thesis.
When we talk about jQuery Plugins we aren’t talking about traditional WordPress type plugins. jQuery plugins need to get integrated into the site by adding the necessary code in the right places and referencing the required plugin file.
It doesn’t matter which method you use from the list above, and you may even find a different one you prefer, but the concept is the same. In fact, this is a great lesson about Thesis hooks and how to add pretty much any custom functionality or content. Once you understand the concept, you can integrate almost anything you want.
So, let’s take a look at this. We’re going to integrate this jQuery plugin to display a full page background image in Thesis.
You can visit the bgStretcher page to download the file you need. Specifically, you want the file called bgstretcher.js. Upload this file to a new folder inside your custom folder called “js”. So it will look like this: /wp-content/themes/thesis_x/custom/js. The file needs to be inside the ‘js’ folder.
Add this to your custom_functions.php file:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
function fullbg() {
if (is_front_page()) {
?>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script><script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/custom/js/bgstretcher.js"></script>
<script type="text/javascript">// <![CDATA[
$(document).ready(function(){
// Initialize Backgound Stretcher
$(document).bgStretcher({
images: ['<?php bloginfo('template_directory'); ?>/custom/images/sample-1.jpg', '<?php bloginfo('template_directory'); ?>/custom/images/sample-2.jpg', '<?php bloginfo('template_directory'); ?>/custom/images/sample-3.jpg'],
imageWidth: 1024, imageHeight: 768
});
});
// ]]></script>
add_action('thesis_hook_after_html','fullbg');
|
Here’s what’s happening with this:
You will need to upload your images that are referenced in the above script to the images folder inside your custom folder.
You’re going to need to reference the css file supplied with this plugin. It’s called bgstretcher.css. You can either include this as a separate css file, which you will need reference in the head section of the site, or you can paste the contents into the custom.css file.
This is all you need to do in order to get the full page background images working. Now, if you want to add text above the image, you will just need to add this inside the custom.css file to the css selector that contains the content you want to appear above the image:
1 2 |
position: relative; z-index: 2; |
1 2 3 4 |
.custom .format_text {
position: relative;
z-index: 2;
}
|
Hopefully this all makes sense for you. If you have questions or something to add, feel free to leave a comment below.
source: Thesis-Blog.com