• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

SRD

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • March 29, 2017 at 7:10 pm in reply to: WordPress menu shooting blanks #204025
    SRD
    Member

    Thanks Victor,

    Which code are you referring to?

    I have restored from backup and the issue remains. 🙁

    March 9, 2017 at 4:58 am in reply to: How to grab custom header image URL #202742
    SRD
    Member

    Hello? Are you there?

    March 8, 2017 at 5:35 am in reply to: featured image not showing woocommerce #202695
    SRD
    Member

    Thanks,

    I can only find http://my.studiopress.com/tutorials/setup-custom-header/ on Google, which doesn't talk about moving or re-adding the header image.

    If I search http://my.studiopress.com for "move header image" I find nothing relevant.

    March 8, 2017 at 5:20 am in reply to: featured image not showing woocommerce #202692
    SRD
    Member

    We're talking about a Genesis child theme here, which does support WooCommerce, not a plugin.

    Child Theme's woocommerce.php:

    <?php
    /**
     * WooCommerce Template
     * 
     * Template used for all WooCommerce views for your site
     *
     */
     
    //* Remove standard post content output
    remove_action( 'genesis_loop', 'genesis_do_loop');
     
    //* Add WooCommerce content output
    add_action( 'genesis_loop', 'woocommerce_setup_genesis' );
     
    genesis();

    Child Theme's functions.php:

    /* WooCommerce */
    
    function woocommerce_setup_genesis() {
      woocommerce_content();
    }
    add_theme_support( 'woocommerce' );

    I was hoping to learn the custom code to allow header images to work with WooCommerce.

    March 7, 2017 at 6:40 am in reply to: How to move genesis article title out of wrap? #202627
    SRD
    Member

    Hi Victor,

    The code

    remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_open', 5 );
    remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
    remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_close', 15 );
    add_action( 'genesis_after_header', 'genesis_entry_header_markup_open', 11 );
    add_action( 'genesis_after_header', 'genesis_do_post_title', 12 );
    add_action( 'genesis_after_header', 'genesis_entry_header_markup_close', 13 );

    works on post titles and page titles.

    How do I make it only affect page titles, leaving post titles where they are?

    March 2, 2017 at 9:41 pm in reply to: Blog page title area not the same as other web page title areas #202388
    SRD
    Member

    Hi Victor. Please see http://vmpersonal.com/blog.html

    March 2, 2017 at 6:56 am in reply to: can't add widget area after footer #202334
    SRD
    Member

    ah okay, thanks Victor.

    March 2, 2017 at 6:40 am in reply to: Blog page title area not the same as other web page title areas #202329
    SRD
    Member

    (we developed the theme ourselves)

    March 2, 2017 at 6:40 am in reply to: Blog page title area not the same as other web page title areas #202328
    SRD
    Member

    It's a custom child theme with no home.php, which is used to display the Blog page.

    March 2, 2017 at 6:31 am in reply to: featured image not showing woocommerce #202325
    SRD
    Member

    header image thanks, @ http://vmpersonal.com/shop.html

    March 1, 2017 at 7:24 am in reply to: Blog page title area not the same as other web page title areas #202243
    SRD
    Member

    We're using a child theme of Genesis.

    We don't have a custom template for the blog (e.g. home.php).

    February 26, 2017 at 9:16 pm in reply to: How to grab custom header image URL #202049
    SRD
    Member

    Hello?

    February 24, 2017 at 5:58 am in reply to: How to grab custom header image URL #201878
    SRD
    Member

    The PHP code is inside a function called to be added into the <head> already.

    The PHP code executes but the URL is an empty string.

    Cheers.

    February 14, 2017 at 8:14 am in reply to: How to move genesis article title out of wrap? #201127
    SRD
    Member

    Hi Victor,

    I've been searching for something like knowthecode.io for about a year.

    Thank you so much for the link, and for your support.

    Regards,
    Steve

    February 14, 2017 at 12:30 am in reply to: How to move genesis article title out of wrap? #201109
    SRD
    Member

    Thank you Victor, it worked perfectly.

    I have access to a visual hooks guide, but is there also a genesis functions guide?

    I understand genesis_after_header is a genesis hook, and genesis_do_post_title is a genesis function. Is that right?

    Regards,
    Steve

    December 19, 2016 at 6:53 am in reply to: can't add action to 'genesis_before_content_sidebar_wrap' hook #197820
    SRD
    Member

    Beaut, that example has provided me with:

    function mhm_do_home_slider() {
    	if ( is_front_page() && function_exists( 'putRevSlider' ) ) {
    		putRevSlider("home", "homepage");
    	}
    }
    	
    add_action('genesis_before_content_sidebar_wrap', 'mhm_do_home_slider');

    which works now.

    Thank you.

    December 19, 2016 at 2:28 am in reply to: how do we search Genesis Documentation? #197804
    SRD
    Member

    I was searching for how to create our own widget areas.

    December 19, 2016 at 1:05 am in reply to: can't add custom function to genesis_footer hook #197798
    SRD
    Member

    Hi Braddalton,

    Thanks for the reply. I had uploaded functions.php to the wrong folder.

    Silly me!

    Thanks,
    Steve

    December 18, 2016 at 8:11 pm in reply to: Altered prefix for breadcrumb in child theme functions.php does not display #197793
    SRD
    Member

    Excellent, thank you kindly Victor.

  • Author
    Posts
Viewing 19 posts - 1 through 19 (of 19 total)

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble