Forum Replies Created
-
AuthorPosts
-
JiveDigParticipant
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
JiveDigParticipantHey 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 #501639JiveDigParticipantNo, 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
JiveDigParticipantHi 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 #501631JiveDigParticipantActually 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 #501630JiveDigParticipantHi 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
JiveDigParticipantHey 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
JiveDigParticipantHi 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
JiveDigParticipantOf 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
JiveDigParticipantYou 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
JiveDigParticipantHi 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
JiveDigParticipantOh 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
JiveDigParticipantAfter 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
JiveDigParticipantHey 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.
Lead developer of Mai Theme
January 16, 2020 at 2:26 pm in reply to: Mia Lifestyle – blog page displaying last posts full description #495976January 9, 2020 at 8:53 am in reply to: Mia Lifestyle – blog page displaying last posts full description #495857JiveDigParticipantHi 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 #495438JiveDigParticipantConfirming 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 #495358JiveDigParticipantHey there, here's how we do it:
- Make sure you are using the Sections template.
- Add any slider you want to the first (or whichever) section.
- Make sure that Section settings have Height as "Auto" and Content Width as "Full Width".
- 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 -
AuthorPosts