After long gap another new tips is published today. Currently lot of users are using the Genesis Responsive Slider or Soliloquy Slider in Genesis Child Theme. But I am going with free version slider. Flexslider is a free slider which is coming from WooThemes. Minimum PRO Theme have no slider option for home page. So… Continue Reading
Archives for November 2014
Full Width Page Content with Blog Posts
Today one person asked this: However I really want the content full width. Would it be possible to adjust the template so that the primary sidebar only started as the blog posts started? This will be totally a custom page template. So creating a file “template_fwcblgpost.php” and add the following code. This new file will… Continue Reading
Controlling Footer Widget Columns from Theme Settings Page in Genesis
Previously I wrote a tutorial “How to change the footer copyright text from Genesis Theme Settings Page“. Today I am writing this article and showing you how to change the footer widget area from Genesis Theme Settings page. I added following PHP code in functions.php file: Creating Theme Settings for Footer Widget function gd_defaults_settings_fields( $default_settings… Continue Reading
Creating Footer Copyright Text UI in Theme Settings page of Genesis Framework
Today one question is came out from my mind. Why we can’t change the default footer copyright text from Genesis Theme Settings page? Every time we are installing the “Simple Edit” plugin or manually adding few code in the functions.php file. So I thoroughly checked the Genesis Theme Settings php file and got 2 filter… Continue Reading
How to change the "at" word next to the time in the post comments section?
ORIGINAL REQUEST: Hi, How can i change the “at” word next to the time in the post comments section? I want to translate it to “um”. Sample: 24. OKTOBER 2014 at 21:02 h I just reviewing the SP forums post and got this request. Immediately I checked the Genesis Comments Callback function and there have… Continue Reading
Page Content with Gird Blog Posts
This is a custom template. At top displaying the page content and below page content showing the latest blog posts in grid style. Create a file “template_custom.php” and add the following code. Now upload the file in your child theme folder. <?php /* Template Name: Static Content with Blog Posts */ // Fix for the… Continue Reading
Creating 5 Columns Footer Widgets
First open the functions.php file on Theme editor ( Dashboard->Appearance->Editor) or download the file via FTP/File Manager and open it on Notepad+ or any PHP editor. In maximum themes you will get this line add_theme_support( ‘genesis-footer-widgets’, 3 ); Change the value 3 to 5. If your theme is not supporting the footer widgets then add… Continue Reading
Column Classes Shortcode for Genesis Theme
Add the following codes in your functions.php file // Replace WP autop formatting if ( ! function_exists( ‘gd_remove_wpautop’ ) ) { function gd_remove_wpautop( $content ) { $content = do_shortcode( shortcode_unautop( $content ) ); $content = preg_replace( ‘#^<\/p>|^<br \/>|<p>$#’, ”, $content ); return $content; } // End gd_remove_wpautop() } /* ============= Two Columns ============= */ function… Continue Reading
Add Subscribe Button at right side of the Logo
Adding the “Subscribe” button at right side of the logo and opening the MailChimp signup on lightbox popup. See the Setps First install the Easy Fancybox plugin and setup the plugin like this way: Next go to Widget page (Appearance -> widgets) and put the Text Widget in Header Right Widget Area. Add the following… Continue Reading
Dividing the Genesis Footer in 2 parts
I am dividing the Genesis Footer in 2 parts. I am filtering the “genesis_footer_output” function. I added the following the code in functions.php file add_filter(‘genesis_footer_output’, ‘gd_footer_output’, 10, 3); function gd_footer_output($output, $backtotop_text, $creds_text){ $new_output = ‘<div class=”footer-left”>’ . $output . ‘</div>’; $new_output .= ‘<div class=”footer-right”>Website Design by <a href=”https://genesisdeveloper.me” target=”_blank”>GENESISDEVELOPER.ME</div>’; return $new_output; } And added the… Continue Reading