• 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

JiveDig

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 - 21 through 40 (of 72 total)
← 1 2 3 4 →
  • Author
    Posts
  • October 23, 2019 at 5:49 pm in reply to: Adding a class to "site-inner" so that it only catches the "::before" element #494228
    JiveDig
    Participant

    That looks like a snippet from me 😉

    Pseudo elements can’t have a class, they are an attribute of an existing element. So, you can add a class to site-inner and target your pseudo-element via that class.

    Not sure if that’s what you’re trying to do though.

    Your code would give you .site-inner.fa.fas::before {} as your target.


    Lead developer of Mai Theme

    October 13, 2019 at 9:57 am in reply to: Including the Parent/Child Custom Post Relationship in Breadcrumbs – Genesis #493981
    JiveDig
    Participant

    You’re building the link HTML already in your $crumb variable, so you can add the extra spans/markup there.


    Lead developer of Mai Theme

    September 11, 2019 at 2:53 pm in reply to: Remove Site Title from Site Header #493511
    JiveDig
    Participant

    Make sure you run your code late enough. See our docs for an explanation https://support.bizbudding.com/en/articles/1807156-code-snippets

    
    // Run after Mai Theme.
    add_action( 'genesis_before', function() {
    
    	// Add your custom code here.
    
    });
    

    Lead developer of Mai Theme

    August 6, 2019 at 10:24 am in reply to: Mai Law Pro – Logo is not displayed #492856
    JiveDig
    Participant

    That typically happens (in Mai Theme) when you are running an old version of Genesis. Make sure Genesis is up to date and the logo should work as expected.


    Lead developer of Mai Theme

    August 6, 2019 at 10:21 am in reply to: Mai Lifestyle – Center Primary Menu #492855
    JiveDig
    Participant

    Hi Rosesilk,

    Sorry I missed this. We use flexbox for our menus so you can center it like this:

    .nav-primary .menu {
    	-webkit-box-pack: center;
    	-ms-flex-pack: center;
    	justify-content: center;
    }

    Lead developer of Mai Theme

    August 6, 2019 at 10:17 am in reply to: Creating Summaries or Excerpts on Search Results Page #492854
    JiveDig
    Participant

    Great, glad you got it 🙂


    Lead developer of Mai Theme

    August 5, 2019 at 9:36 am in reply to: Creating Summaries or Excerpts on Search Results Page #492826
    JiveDig
    Participant

    Hey @ebeard, the search template in Mai Theme follows the archive settings in Customizer > Mai Content Types > Archive Defaults. Hope that helps.

    If you want direct Mai Theme support the best place is https://support.maitheme.com too 🙂


    Lead developer of Mai Theme

    June 26, 2019 at 12:25 pm in reply to: Broken Template After Upgrade to Genesis 3.1 #491963
    JiveDig
    Participant

    Glad I could help 😉


    Lead developer of Mai Theme

    June 26, 2019 at 9:33 am in reply to: Broken Template After Upgrade to Genesis 3.1 #491953
    JiveDig
    Participant

    Hey Gil,

    There are a few things you can do to change that template, like swapping your genesis_before_content_sidebar_wrap(); function for do_action( 'genesis_before_content_sidebar_wrap' ); but IMO that's still the wrong way. If you want to keep things the "Genesis way", try something along the lines of this:

    
    <?php
    /**
     * Template Name: Contributor
     */
    
    // Remove the default loop content.
    remove_action( 'genesis_loop', 'genesis_do_loop' );
    
    // Add new content.
    add_action( 'genesis_loop', function() {
    	?>
    	<div class="author_widget" style="float:left">
    		<h3>Your Life As A Human Authors</h3>
    		<div id="authorListing">
    			<ul id="author_list" style="list-style-type: none;">
    				<?php lh_list_editor('show_fullname=1&optioncount=0'); ?> 
    				<?php lh_list_authors('show_fullname=1&optioncount=0'); ?> 
    			</ul>
    		</div>
    	</div>
    	<?php
    });
    
    // Required for Genesis.
    genesis();
    

    Lead developer of Mai Theme

    June 18, 2019 at 1:48 pm in reply to: Mai Lifestyle: Change Banner Title on Archives page #491694
    JiveDig
    Participant

    We're going to add a form as well cause more people than we expected prefer the old school way 😀


    Lead developer of Mai Theme

    June 18, 2019 at 1:02 pm in reply to: Mai Lifestyle: Change Banner Title on Archives page #491689
    JiveDig
    Participant

    Do you have a chat bubble in the bottom right? If not, try incognito? Sometimes adblocker stuff blocks the bubble.


    Lead developer of Mai Theme

    June 18, 2019 at 12:26 pm in reply to: Mai Lifestyle: Change Banner Title on Archives page #491687
    JiveDig
    Participant

    Hi there,

    The best place for immediate support is https://support.maitheme.com

    When the front page is set to show latest posts, Genesis (or Mai Theme) does not currently have a way to change the Blog title without using code. Most of the time we use a static front page and a static Blog page as set in Settings > Reading. You have much more control that way. Otherwise you're stuck with a little code for that.


    Lead developer of Mai Theme

    June 18, 2019 at 12:24 pm in reply to: Mai Law Pro-Homepage "Hero Image" being clipped at the top #491686
    JiveDig
    Participant

    Hey @GabsterMedia,

    The best place for immediate support is https://support.maitheme.com.

    The image used for banner/section background is just that, a background image. It uses css to cover the entire background of the container regardless of the height setting or how much content is in the section. You could use object-position CSS to make it focus on the top/left/etc of the image. Default is to center.

    Hope that helps.


    Lead developer of Mai Theme

    October 20, 2018 at 9:21 pm in reply to: Grid help #223885
    JiveDig
    Participant

    Hi there, Mike with Mai Theme here. All of our grid parameters are available here https://intercom.help/bizbudding/mai-theme/shortcodes/grid-shortcode-parameters

    Also, it’s best to get Mai Theme specific support via the chat bubble in our docs above as well.

    The parent parameter just tells the grid to show all the child pages of a specific parent page by ID. Our demo has a parent page of Practice Area and all the the actual practice areas are each child pages of that page. So we tell grid what the parent is and it will only show child pages of that page.

    Hope that helps 🙂


    Lead developer of Mai Theme

    August 24, 2018 at 8:15 pm in reply to: child theme won't activate, gives error message #222711
    JiveDig
    Participant

    We check in here once on a while but it’s best to ping us directly, as Victor mentioned.

    We probably got you going already but if you still need help, we’re here 🙂

    https://support.maitheme.com


    Lead developer of Mai Theme

    August 24, 2018 at 8:12 pm in reply to: How do I Add Next Post / Previous Post Links to Posts??? Help Please #222710
    JiveDig
    Participant

    I like to do it by adding post type support, like this:

    
    // Add previous/next post links to single posts
    add_post_type_support( 'post', 'genesis-adjacent-entry-nav' );
    

    FWIW, this is how we do it in Mai Theme, though we have some other filters to add the featured image.


    Lead developer of Mai Theme

    August 24, 2018 at 8:03 pm in reply to: Slider #222709
    JiveDig
    Participant

    Thanks Brad 🙂

    Mike from Mai Theme here.

    To follow up, if you are using our Sections template for the page, you can disable the banner on that page and use our grid slider shortcode or any other slider plugin in the first section with the section Height setting to Auto and Content Width setting to Full Width.

    If you have any other questions feel free to ping us at https://support.maitheme.com


    Lead developer of Mai Theme

    August 24, 2018 at 7:59 pm in reply to: What to do with render-blocking scripts when plugins are call jQuery inline? #222708
    JiveDig
    Participant

    I haven’t found a good solution to this besides using a different plugin. This has been a frustration for us as well, and our main culprit is Gravity Forms. It’s unbelievable such a powerful and popular plugin would do this without a reasonable solution to disable or enqueue a script the right way.


    Lead developer of Mai Theme

    August 24, 2018 at 7:55 pm in reply to: Loco Translate + Mai Lifestyle Pro theme #222707
    JiveDig
    Participant

    Hi there, I haven’t personally used Loco Translate but you need to make sure the strings in the CPT code are translateable, and use a text-domain that Loco Translate will pick up.

    Also, I don’t think the theme is where your CPT code should go either. You’re safer putting that code in a plugin.


    Lead developer of Mai Theme

    July 10, 2018 at 7:28 am in reply to: Mai Theme, Bugs in new Update? #221528
    JiveDig
    Participant

    Yes, Critical CSS in WP Rocket is great, but very fragile. You should rebuild critical CSS every time you update plugins too. Glad you're all set 🙂


    Lead developer of Mai Theme

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 72 total)
← 1 2 3 4 →
« 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