• 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

babrees

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 - 1 through 20 (of 96 total)
1 2 3 4 5 →
  • Author
    Posts
  • February 1, 2021 at 11:43 pm in reply to: Genesis icon not available on CPT #502877
    babrees
    Participant

    Thank you but I did. They stated 'Toolset do not have any influence on page layout or sidebar as Toolset's output is only affected on the_content() (the page/post body) area. We do not control header, footer, sidebar.'

    They did offer to take a look to see if they could find a work-around, but the site is only local dev at the moment.

    Somebody else suggested adding Genesis support add_post_type_support( 'art-galleries', 'custom-fields' ); but that didn't work

    July 23, 2020 at 10:54 am in reply to: Remove post info on all but one category #500281
    babrees
    Participant

    Thanks @andytc Got it working, but I had to remove the ! after && as it was working but the wrong way round, removing it from Blog and including it elsewhere!

    January 23, 2019 at 10:40 am in reply to: Genesis Sample (Develop) #435123
    babrees
    Participant

    In the older theme settings, you would have a header section with a choice to have text or an image for a header. This is no longer there. In many themes it would not show due to custom header in functions.php - so I would remove that to show the header choice in theme settings.

    I want an image logo as site title - not text. Nor do I want the image to be a background image.

    January 23, 2019 at 1:43 am in reply to: Genesis Sample (Develop) #428642
    babrees
    Participant

    Thanks Victor.

    Is there documentation how we can have an image in site-title now then, as it's no longer in theme settings. Bad move on Studio Press for me 🙁

    May 13, 2017 at 12:45 am in reply to: Responsive header image for all devices #206373
    babrees
    Participant

    Thank you, but contrary to that it does not automatically adjust to the correct size 🙁

    In the end I removed the custom header support, as I could not see a way to do it with that, and uploaded a smaller image for smaller devices. It is still not perfect but at least the logo is showing.

    May 12, 2017 at 1:19 am in reply to: Responsive header image for all devices #206308
    babrees
    Participant

    Thank you Jchai. As I stated, I am using Executive Pro Theme, albeit with a few customisations that I did myself.

    If the option to have a logo in the header is available in the default theme, surely there should be help with ensuring this is ok on all devices?

    May 12, 2017 at 12:23 am in reply to: Responsive header image for all devices #206302
    babrees
    Participant

    Thank you but I don't know how to do that. Is there a tutorial somewhere?

    April 9, 2017 at 11:24 pm in reply to: Code Snippets #204536
    babrees
    Participant

    Thanks Andrea, but what I meant is that all the contact forms are for help only, there was no subject for just leaving feedback or suggestions in the drop-down box.

    April 9, 2017 at 2:44 am in reply to: Code Snippets #204511
    babrees
    Participant

    OK, it seems that I was looking in the wrong place. Being used to always having called it Post Meta, it is now under Entry Header and known as Entry Meta!

    April 8, 2017 at 10:03 am in reply to: Code Snippets #204503
    babrees
    Participant

    Susan. Thanks. It was very hard to be able to contact StudioPress directly with feedback or suggestions. In the end I contacted them using a "pre purchase" enquiry. I have heard back from them

    April 8, 2017 at 10:01 am in reply to: Code Snippets #204502
    babrees
    Participant

    Yep, that one works. However, under Code Snippets for removing post meta it shows

    //* Remove the post meta function
    remove_action( 'genesis_after_post_content', 'genesis_post_meta' );

    I cannot see any code snippets where it shows it correctly, as you have shown

    April 8, 2017 at 12:32 am in reply to: Code Snippets #204484
    babrees
    Participant

    No. I don't want to use a plugin for simple things. I have the correct code now, I am just pointing out the fact that the snippets are wrong.

    April 7, 2017 at 4:21 am in reply to: Code Snippets #204425
    babrees
    Participant

    Removing post meta and also post info. Haven't checked others

    April 7, 2017 at 12:48 am in reply to: Woocommerce issues #204418
    babrees
    Participant

    I had the issues with the sidebar, but on a new site so I didn't connect it immediately to woocommerce upgrade.

    Instead I deactivated all my plugins and then reactivated them. That seemed to do the trick as it all appears to be working ok

    February 20, 2017 at 11:13 am in reply to: Altitude – Remove post-info in 1 category #201657
    babrees
    Participant

    Thanks Victor, unfortunately that didn't work either.

    February 20, 2017 at 4:25 am in reply to: Genesis Featured Posts on Altitude Front Page #201635
    babrees
    Participant

    Thanks. I'm not sure what the problem was, but it was suggested to add widgets to the empty front-page sections. After adding them it suddenly worked and all showed in columns. They still worked after removing the widgets in the sections I wanted empty

    January 30, 2017 at 4:31 am in reply to: Add div class to custom category template #200240
    babrees
    Participant

    Hi Victor - got it working!!!! My fault entirely. I had tried so many different things and I had inadvertently not deleted one bit I had tried previously and that was the problem!

    I'd like to say thank you for all your help in this forum. Words can not say how much it is appreciated!

    Thanks

    January 29, 2017 at 3:36 pm in reply to: Add div class to custom category template #200231
    babrees
    Participant

    Yes, I created the category from the menu, but I do have a category template...

    <?php
    
    //* Remove the post title function
    remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
    
    //* Add the post title function
    add_action( 'genesis_entry_content', 'genesis_do_post_title', 11 );
    
    //* Remove the post info function
    remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
    
    //* Remove the post content
    remove_action( 'genesis_entry_content', 'genesis_do_post_content' );
    
    //* Remove the post meta function
    remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
    
    genesis();
    

    This is the exact code I put into functions.php...

    //* add new class div to wrap entry in photo gallery
    add_action('genesis_before_entry','add_custom_div_open');
    add_action('genesis_after_entry','add_custom_div_close');
    
    function add_custom_div_open() {
        if ( is_category( 'photo-gallery' ) ) {
            echo '<div class="photo-gallery-class">';
        }
    }
    
    function add_custom_div_close() {
        if ( is_category( 'photo-gallery' ) ) {
            echo '</div>';
        }
    }
    January 29, 2017 at 7:54 am in reply to: Add div class to custom category template #200217
    babrees
    Participant

    Thanks Victor, but that that didn't work. Didn't make any difference at all.

    I neglected to say I'm using Altitude theme, don't expect that would make a difference though.

    January 28, 2017 at 9:20 am in reply to: Remove post info on specific post type #200175
    babrees
    Participant

    Thanks Victor!

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 96 total)
1 2 3 4 5 →

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