• 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

Brad Dalton

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 20 posts - 101 through 120 (of 15,342 total)
← 1 2 3 … 5 6 7 … 766 767 768 →
  • Author
    Posts
  • June 1, 2022 at 12:05 am in reply to: How can I choose a specific post with the featured post widget….? #505340
    Brad Dalton
    Participant

    The widget doesn't include this functionality by default but you can do it by creating a featured category and adding the posts you want displayed that way otherwise you would need to modify the code in the plugin which requires a understanding of how to use OOP.


    Tutorials for StudioPress Themes.

    May 27, 2022 at 2:24 am in reply to: PHP error in template #505311
    Brad Dalton
    Participant

    A point in the right direction :

    1. No need for get_header or get_footer so remove them.

    2. Add genesis(); at the end of the file. This function loads the header and footer hooks including the markup.

    3. And remove the default genesis_loop and add it back with your function.

    	
    remove_action('genesis_loop', 'genesis_do_loop');
    add_action( 'genesis_loop', 'your_loop' );
    function your_loop() {
    // Your Code Here
    }
    

    You can then use WP_Query to create your own custom loop or genesis hooks to add and remove default hooks for different elements including featured image, content, titles etc.


    Tutorials for StudioPress Themes.

    May 27, 2022 at 2:15 am in reply to: Blog page on Infinity Pro #505310
    Brad Dalton
    Participant

    Try the Customize > Content Archive > settings.


    Tutorials for StudioPress Themes.

    May 18, 2022 at 11:28 pm in reply to: How to apply this theme on WordPress website? #505271
    Brad Dalton
    Participant

    I doubt it will have any effect as long as meta data, permalinks and other links remain the same as well as the order of HTML content in your pages.

    You can preview your new theme and check before activating it.


    Tutorials for StudioPress Themes.

    May 11, 2022 at 2:10 am in reply to: Reverse/swap post navigation in single post #505224
    Brad Dalton
    Participant

    That's a step in the right direction. Now you need to spend some time and work out why.

    Good start.


    Tutorials for StudioPress Themes.

    May 11, 2022 at 1:03 am in reply to: Reverse/swap post navigation in single post #505222
    Brad Dalton
    Participant

    Happy to point you in the right direction.

    Please search for the function in your genesis folder and copy the entire function to your child theme.

    You'll need a basic understanding of PHP code to remove the default function, add a new custom function and complete the modification.


    Tutorials for StudioPress Themes.

    May 10, 2022 at 11:26 pm in reply to: Reverse/swap post navigation in single post #505220
    Brad Dalton
    Participant

    You can modify the genesis_adjacent_entry_nav function from Genesis. Copy it to your child theme and change the functions for each link.


    Tutorials for StudioPress Themes.

    May 2, 2022 at 9:51 pm in reply to: Academy Pro: How to make hero title h1 #505173
    Brad Dalton
    Participant

    Using a code editor, change the tag from h2 to h1.


    Tutorials for StudioPress Themes.

    May 2, 2022 at 9:45 am in reply to: Academy Pro: How to make hero title h1 #505170
    Brad Dalton
    Participant

    Line 66 in lib > templates > hero-section.php file, you can change the h2 tag.


    Tutorials for StudioPress Themes.

    May 1, 2022 at 9:47 am in reply to: How to Replace Featured Image on posts with Theme Header Background Image #505165
    Brad Dalton
    Participant

    Take a look inside the lib > header-functions.php file.


    Tutorials for StudioPress Themes.

    May 1, 2022 at 9:30 am in reply to: How to Replace Featured Image on posts with Theme Header Background Image #505164
    Brad Dalton
    Participant

    You can modify the PHP code so the default is displayed rather than the featured image?


    Tutorials for StudioPress Themes.

    April 30, 2022 at 11:52 pm in reply to: Removal of duplicate breadcrumb #505161
    Brad Dalton
    Participant

    Another option is to try the Genesis Breadcrumbs plugin https://wordpress.org/plugins/genesis-simple-breadcrumbs/


    Tutorials for StudioPress Themes.

    April 29, 2022 at 10:57 pm in reply to: Removal of duplicate breadcrumb #505159
    Brad Dalton
    Participant

    You need to use the default templates or use code to remove the the slug from the breadcrumbs.

    It's hard to test without setting up the same situation on a test site but those are my 2 suggestions unless anyone else has a better solution.


    Tutorials for StudioPress Themes.

    April 28, 2022 at 11:03 pm in reply to: Removal of duplicate breadcrumb #505145
    Brad Dalton
    Participant

    This looks like its occuring when you use a blocks page template but not when using the default template.


    Tutorials for StudioPress Themes.

    April 28, 2022 at 10:47 pm in reply to: Removal of duplicate breadcrumb #505144
    Brad Dalton
    Participant

    I see it here https://jetsettingduo.com/homepage/food/ but not on the travel page.


    Tutorials for StudioPress Themes.

    April 28, 2022 at 12:04 pm in reply to: Removal of duplicate breadcrumb #505140
    Brad Dalton
    Participant

    Are you referring to the permalink in the address bar? This is different to breadcrumbs which i can't see on this page.


    Tutorials for StudioPress Themes.

    April 28, 2022 at 11:45 am in reply to: SendGrid in Email Newsletter Block #505139
    Brad Dalton
    Participant

    You can add form code directly to a html block.

    I tested this with email form code recently and it works fine.


    Tutorials for StudioPress Themes.

    April 28, 2022 at 11:40 am in reply to: How to stop spam from Contact form on Home page ? #505138
    Brad Dalton
    Participant

    You can add a captcha to your contact form or use another form plugin. https://wpforms.com/how-to-build-spam-free-wordpress-contact-forms-the-ultimate-guide/


    Tutorials for StudioPress Themes.

    April 28, 2022 at 6:39 am in reply to: Changing sidebar code hook on WooCommerce product single pages #505136
    Brad Dalton
    Participant

    You can add

    echo '<div class="your-wrap">';
    
    // Your Code
    
    echo '</div>';
    

    Tutorials for StudioPress Themes.

    April 27, 2022 at 8:21 am in reply to: How do I remove the “MENU” text? #505132
    Brad Dalton
    Participant

    It depends on which version of Genesis Sample but try this solution.


    Tutorials for StudioPress Themes.

  • Author
    Posts
Viewing 20 posts - 101 through 120 (of 15,342 total)
← 1 2 3 … 5 6 7 … 766 767 768 →
« Previous Page

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 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