Genesis move post title below image
// Move image above post title in Genesis Framework 2.0
remove_action( ‘genesis_entry_content’, ‘genesis_do_post_image’, 8 );
add_action( ‘genesis_entry_header’, ‘genesis_do_post_image’, 8 );
If WordPress doesn’t show a title be default on a blog page. This code is for Genesis, but will work for any theme if you change the hook. Create a new file called home.php with the following code. That’s the template file that WordPress uses for its Posts Page. $content = get_post( $posts_page )->post_content; $title_output…
When entering a coupon code for Free Shipping, the Free shipping option is not selected by default. A quick solution is to add a function that disables all other shipping options, leaving Free Shipping as the only available option. Add this snippet to your functions file. It hides everything but free_shipping if it’s available and…
Opposed to adding an “Empty Div” or “Overflow” to clear floats, you can use the CSS pseudo selector (:after) to clear floats. .clearfix:after { content: “.”; visibility: hidden; display: block; height: 0; clear: both; }
How to test if Google Adwords Call Forwarding is working on a website? Add the following to the end of the url string: #google-wcc-debug Then click “Force” in the Google AdWords Website Call Conversions debug window .
There are a few older functions that you would implement via your own custom plugin, but I found that none of them work. This one didn’t work: if ( !function_exists( ‘wp_password_change_notification’ ) ) { function wp_password_change_notification() {} } This one didn’t work: if ( !function_exists(‘wp_new_user_notification’) ) { function wp_new_user_notification( ) {} } This one didn’t…