Adding new widget – home page only

1. Add this to functions.php

//* Register after header widget area
genesis_register_sidebar( array(
'id' => 'after-header',
'name' => __( 'After Header', 'focus' ),
'description' => __( 'This is a widget area that comes under header for collecting emails', 'focus' ),
) );

2. Add this to Genesis Simple Hooks plugin depeding on location and on which pages you want to display it. Remember: ther is difference between is_home and is_front_page

<?php
if(is_front_page() ) {
?>
<div class="after-header">
    <?php dynamic_sidebar( 'after-header' ); ?>
</div>
<?php
}
?>

Customize WordPress login logo without a plugin

Excellent method here

Don’t forget to customize your CSS file if new logo has different from default dimensions


How to exclude certain images from default WordPress gallery

When creating a post you upload different images. By default they all are assigned to this post. So when you try to insert gallery - the gallery consists of ALL the images you upload to this post/page. Bu what if I do NOT want to include ALL the … [Continue reading]


Aweber – changing lists and forms

1. Create new list 2. Click create new webform - Choose from My templates same form you want to recreate in a new list 3. At Step-2 Save under name you want 4. Copy <form..... </form> HTML code 5. Open in DW both HTML and *.css … [Continue reading]


How to set up a Copy of WP site on multiple domains

It's clear how to move a WP site from one URL to another. What if you want multiple instances of SAME WP site on different URLs (f..ck Google and duplicate content - not the matter). 1. On original site Tools> Export> All content 2. Download … [Continue reading]

© Copyright 2011 websitesmaster · Site by Yuri Yeleyko