• 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 - 1 through 20 (of 72 total)
1 2 3 4 →
  • Author
    Posts
  • May 6, 2021 at 10:14 am in reply to: Using MAMP and Mai Prosper Theme #503966
    JiveDig
    Participant

    I think you're using the wrong engine/plugin. Yes, contact support and we can get you the latest to try.


    Lead developer of Mai Theme

    May 5, 2021 at 8:34 am in reply to: Using MAMP and Mai Prosper Theme #503946
    JiveDig
    Participant

    Hey Kevin, it's Mike from BizBudding/Mai Theme here.

    We have a bunch of devs using Mai Theme with MAMP without issues, but I don't personally use it so I can't even guess at what the issue could be.

    I'd think the easiest thing to do is manually install Mai Engine plugin before activating Mai Theme. Then it'd already be there and ready to go. If there is an update, it should (hopefully) update as normal.

    Ping is via support and I can get you a copy of the plugin if you need.


    Lead developer of Mai Theme

    October 28, 2020 at 8:22 am in reply to: Change default settings into the agentpress listings plugin #501639
    JiveDig
    Participant

    No, sorry. A filter is something that can be added in your theme's functions.php or a custom functionality plugin, to override the agentpress output. It's definitely developer level stuff though. You mentioned looking in the theme's functions.php so I thought you were looking for code solutions.


    Lead developer of Mai Theme

    October 27, 2020 at 2:10 pm in reply to: Mai Lifestyle Theme – How to add secondary sidebar #501632
    JiveDig
    Participant

    Hi there, best bet for Mai Theme support is to contact us directly docs.bizbudding.com/support/

    We have 2 sidebar layouts available in Mai Lifestyle already. Customizer > Mai Site Layouts, or on each page/post you can set it individually.

    Note: v2 themes only have single sidebar options, but Mai Lifestyle is v1.


    Lead developer of Mai Theme

    October 27, 2020 at 2:07 pm in reply to: Change default settings into the agentpress listings plugin #501631
    JiveDig
    Participant

    Actually there is a PHP filter on the details too https://github.com/studiopress/agentpress-listings/blob/master/includes/class-agentpress-listings.php#L47


    Lead developer of Mai Theme

    October 27, 2020 at 2:00 pm in reply to: Change default settings into the agentpress listings plugin #501630
    JiveDig
    Participant

    Hi there.

    It looks like Agentpress has some shortcodes built in, when I scan the code here https://github.com/studiopress/agentpress-listings/blob/master/includes/class-agentpress-listings.php#L114

    I don't see much in the way of customizing the property details though. You can possibly use the do_shortcode_tag filter to change the output, or maybe what you're going for can be done with CSS alone.


    Lead developer of Mai Theme

    October 14, 2020 at 8:32 am in reply to: Corporate Pro – Homepage Block #9 #501447
    JiveDig
    Participant

    Hey Mike.

    See here: https://d.pr/i/TUxtSd

    Line 2044 has a max width set:

    
    .front-page-9 .widget {
        position: relative;
        z-index: 2;
        max-width: 768px;
    }
    

    Lead developer of Mai Theme

    October 5, 2020 at 7:32 am in reply to: Translate read more Mai Theme Law #501335
    JiveDig
    Participant

    Hi Leandro,

    We have a snippet available for translating the Read More link in our v1/classic themes. See here: https://support.bizbudding.com/en/articles/1807156-code-snippets

    Our v2 themes have a setting for this.


    Lead developer of Mai Theme

    February 5, 2020 at 3:46 pm in reply to: Form Style #496485
    JiveDig
    Participant

    🍻🎉


    Lead developer of Mai Theme

    February 5, 2020 at 2:29 pm in reply to: Form Style #496475
    JiveDig
    Participant

    Of course. Just add .home before it all.

    
    .home #mc_embed_signup_scroll {
    	display: -webkit-box;
    	display: flex;
    	-webkit-box-pack: center;
    	justify-content: center;
    }
    
    .home #mc_embed_signup_scroll > p:first-child {
    	-webkit-box-flex: 1;
    	flex: 1 1 auto;
    	max-width: 320px;
    	margin-right: -1px;
    }
    

    You could even add a custom class just to that Section via the Advanced Settings of the section, and use that instead of "home" so it only targets that section.


    Lead developer of Mai Theme

    February 5, 2020 at 11:53 am in reply to: Form Style #496465
    JiveDig
    Participant

    You can do something like this:

    
    #mc_embed_signup_scroll > p:first-child {
    	-webkit-box-flex: 1;
    	flex: 1 1 auto;
    	max-width: 320px;
    	margin-right: -1px;
    }
    

    Lead developer of Mai Theme

    February 4, 2020 at 3:19 pm in reply to: Form Style #496436
    JiveDig
    Participant

    Hi there. The site is looking great!

    You can add this to Customizer > Additional CSS to get it all on one line.

    
    #mc_embed_signup_scroll {
    	display: -webkit-box;
    	display: flex;
    	-webkit-box-pack: center;
    	justify-content: center;
    }
    

    Lead developer of Mai Theme

    January 27, 2020 at 9:52 am in reply to: Mai Lifestyle Customization Help #496234
    JiveDig
    Participant

    Oh I see. If you're using a different author box plugin, that's a different story. Glad you got it.


    Lead developer of Mai Theme

    January 27, 2020 at 9:23 am in reply to: Mai Lifestyle Customization Help #496231
    JiveDig
    Participant

    After a lot of digging, somehow the author bio image script was missing from the functions.php file.

    Can you clarify what the issue was?

    Mai Theme shouldn't require any extra code to get avatars to display.


    Lead developer of Mai Theme

    January 24, 2020 at 3:36 pm in reply to: Mai Lifestyle Customization Help #496190
    JiveDig
    Participant

    Hey there.

    It's worth mentioning Mai Theme has settings in Customizer > Mai Site Layout > Boxed Containers where you can enable/disable the boxed look (border/padding) for specific elements like the author box.

    You can increase the font size by getting more specific in your CSS. Try this as an example:

    
    .author-box .author-box-content {
        font-size: 20px;
    }
    

    The gravatar/avatar is a separate issue, something else is likely causing an issue that's breaking them from display. When I inspect the markup it looks like it is a blank image? Strange.

    https://d.pr/i/rX8q6h


    Lead developer of Mai Theme

    January 16, 2020 at 2:26 pm in reply to: Mia Lifestyle – blog page displaying last posts full description #495976
    JiveDig
    Participant

    Glad you got it 🙂


    Lead developer of Mai Theme

    January 9, 2020 at 8:53 am in reply to: Mia Lifestyle – blog page displaying last posts full description #495857
    JiveDig
    Participant

    Hi there. If I had to guess, I'd say you are using a page builder?

    Unfortunately some page builders do really weird stuff with the blog archive when we try to use the editor content from the page set as the blog archive. Can you try adding this to functions.php at the bottom on it's own line?

    
    // Run late.
    add_action( 'genesis_before', function() {
    	// Remove the custom blog archive intro.
    	remove_action( 'genesis_before_loop', 'mai_do_blog_description', 20 );
    });
    

    Lead developer of Mai Theme

    December 11, 2019 at 11:51 am in reply to: Product image size too large in Mai Lifestyle pro theme #495438
    JiveDig
    Participant

    Confirming you have Genesis Connect for WooCommerce plugin installed and activated?


    Lead developer of Mai Theme

    December 9, 2019 at 12:14 pm in reply to: How to change banner image on the homepage of Mai Lifestyle Theme into a slider #495358
    JiveDig
    Participant

    Hey there, here's how we do it:

    1. Make sure you are using the Sections template.
    2. Add any slider you want to the first (or whichever) section.
    3. Make sure that Section settings have Height as "Auto" and Content Width as "Full Width".
    4. Find the Visibility Settings in the sidebar and check the box to "Hide the banner" if your site has the banner area enabled.

    Lead developer of Mai Theme

    November 27, 2019 at 9:38 am in reply to: Product image size too large in Mai Lifestyle pro theme #495091
    JiveDig
    Participant

    Hi there,

    Mai Theme doesn't do anything specific with the WooCommerce image sizes. You can use the Woo settings in Customizer > WooCommerce > Image sizes and set it how you would like.


    Lead developer of Mai Theme

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

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