Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for trying, I Enabled the Avia Layout Builder Debugger and searched the homepage shortcode and found the image twice, so I removed it and checked the page again and the error doesn’t show and I don’t see anything different on your page.
Please check your page carefully, if it looks correct then fine.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey eduardodelat,
Thanks for your question, to achieve this you will need to use a pop up plugin, I’m not sure which one will offer this feature so you will need to research this a little, but here is a list of popular pop ups to get you started.Best regards,
MikeHey envapk2,
Perhaps you should use custom CSS media queries if you want to target an iPad in portrait, this article has a good example.
But you may need to research the portrait sizes for all of the iPads you want to target as the Pro is larger than the standard one.Best regards,
MikeHey salai_com,
Thanks for your question, I tested your form and it worked for me, please describe in more detail what the error is and how we can reproduce the error.Best regards,
MikeNovember 18, 2022 at 2:08 pm in reply to: Make video stop on final frame and not display play icon #1373087Hey John,
Thanks for your patience and the link to your site, but unfortunately our video element doesn’t offer this feature, while we could hide the play button with css we can’t make it stop on the final frame. The easiest solution would be to edit your video so the first frame displays what you want to see.
Another option would be to look for a video plugin that offers the features you wish to use instead.
Sorry, we couldn’t be more help.Best regards,
MikeHey AuroraArcus,
Thanks for your question, your site is giving a 404 error message for the image, which is why you didn’t find it, somewhere on your page the image is called, I didn’t find it in the source code.
Try making a copy of a different image and renaming it and place in the directory so it matches via FTP, then when you check your site you will see where it shows.
I changed the color of the two buttons to black, please clear your browser cache and check.Best regards,
MikeHi,
Thanks for the test site, I see that your pagination on the /works/ page is not correct and I suspect that you are using a modified child theme file or a function to change the pagination URL from it’s default to a custom one.
The default portfolio grid pagination url should be: /?avia-element-paging=2 this can not be changed, it is set like this to not conflict with the WordPress pagination.
Your pagination is: /page/2/ if you have modified this then please remove your modification, I was not able to login to your site to verify this.Best regards,
MikeHi,
You should not replace your child theme, your settings are linked to it. So please remove your new child theme and rename your old one back.
If you are using a custom header.php or footer.php in your child theme please remove these.Best regards,
MikeHi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
When I check your site the caption is at the bottom on mobile, please clear your browser cache and check.
Please see the screenshot in the Private Content area.Best regards,
MikeHi,
Please try this solutionBest regards,
MikeNovember 17, 2022 at 10:10 pm in reply to: Woocommerce Filter by Price on Shop Page in Mobile #1373017Hey navindesigns,
Thanks for the login, in your child theme stylesheet you had this css that pushed the logo out of sight, I removed it and now it shows.
Please clear your browser cache and check..logo img { padding: 40px 0px; }Best regards,
MikeHi,
I’m not sure what you mean by “bar that appears by default in the categories” please add a screenshot of it so we can see. To add one please try using an Screenshot service and pasting the image URL in your post.Best regards,
MikeHey kernwein,
Thanks for the link to your site, but I can’t tell where it is coming from without logging in, please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHi,
Thank you for the login, I see that you are using a plugin to add a background slider to the page: Unlimited Background Slider which is taller than the page content, so I have adjusted the function to also change the height of the page content to match your slider.function custom_sidebar_header_min_height() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ var pageHeight = $('body').height(); $('.html_header_sidebar #top #header').css({'min-height': pageHeight + 51}); $('.html_header_sidebar #top #av_section_1').css({'min-height': pageHeight}); })(jQuery); }); </script> <?php } add_action('wp_footer', 'custom_sidebar_header_min_height');This seems to work on the pages that I checked, please check.
Best regards,
MikeNovember 17, 2022 at 2:01 pm in reply to: Site Title to Logo on Mobile + Missing Search with Burger + Category Pagination #1372948Hi,
Thanks for your feedback, sorry for point 2 I thought you were talking about the mobile view. The search icon you see when you are logged in is not the site search, it is the admin search. To show the search icon next to your desktop burger menu please use this css:.html_burger_menu_active #header .avia-menu #menu-item-search.menu-item { display: block; } .html_burger_menu_active #header .avia-menu #menu-item-search.menu-item a:before { color: #5e5a4d; }For point 3 I was looking at the wrong page, unfortunately, the load more pagination is not available for categories.
Best regards,
MikeHi,
Thanks for your patience, it looks like you are using the Construction Demo, to change the width of the single post pages add this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .fullsize .template-blog .post .entry-content-wrapper > *, #top .fullsize .template-blog .post .entry-content-wrapper { max-width: 1310px; }by default the max-width is 800px, adjust the above width to suit.
To change the post justification to left use this css:#top #main .fullsize .template-blog .post .entry-content-wrapper { text-align: left; }To change the border colors go to Enfold Theme Options ▸ General Styling ▸ Main Content ▸ Border Colors

After applying the css, please clear your browser cache and check.Best regards,
MikeHi,
xela thanks for your patience, on your test site the htaccess login is not working so I couldn’t view it, but on your live site the item on the /works/ page are working correctly, is the correct page?
FOTOstheimer Please open a new thread with the url to the page in question and an admin login so we can be of more assistance. It gets confusing when we are working on more than one site per thread. Thanks for understanding.Best regards,
MikeNovember 17, 2022 at 12:55 pm in reply to: Site Title to Logo on Mobile + Missing Search with Burger + Category Pagination #1372933Hi,
Thank you for your patience and the link to your question, as I understand the first question you are currently using this function to show a text logo on your desktop site, but you only want it to work on desktop and on mobile you want the logo image that you uploaded at Enfold Theme Options > Logo to show. To do this you will need to modify the function to include an IF statement to detect the WordPress mobile function like this:add_filter('avf_logo_final_output', 'avf_text_logo_final_output'); function avf_text_logo_final_output($logo) { if(!wp_is_mobile() ) { $link = apply_filters('avf_logo_link', home_url('/')); $logotext = "LOGO TEXT"; $subtext = "CUSTOM SUBTEXT"; $subtext = "<span class='subtext'>$subtext</span>"; $logo = "<span class='logo'><h1><a href='".$link."'>".$logotext.$subtext."</a></h1></span>"; return $logo; } else { return $logo; } }If you have trouble adjusting your function, please include an admin login in the Private Content area below so we can assist.
2: when I check your site I see the magnifying glass, perhaps you already found the setting at Enfold Theme Options ▸ Main Menu ▸ General ▸ Append search icon to main menu

3: to change the pagination to “Load More”, it look like you are using the Blog Posts element, but this element doesn’t offer the “Load More” pagination, for this option please try the Masonry element:

but this will also change the layout of your post grid, so please test on a test page to see if you like the change.Best regards,
MikeNovember 17, 2022 at 11:39 am in reply to: Shop category thumbnail images are suddenly the wrong size #1372911Hi,
Glad we were able to help, ‘Run everywhere’ is correct. If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Please ensure that you copied the code from the support forum and not an email that you may get from the forum because copying from an email may convert the quotes in the code to “curly quotes” which will break the code.
If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHey mhmhdev,
Thanks for your question, so you don’t have the ability to downgrade the PHP version temporarily?
If you could then you could update the theme though WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New as in the second set of instructions in the post you linked to.
If you can not then follow the FTP instructions in the post you linked to. After you update via FTP then you can activate the Enfold theme and it should work correctly.Best regards,
MikeNovember 17, 2022 at 1:24 am in reply to: Smaller viewports ignoring settings of a created css-class #1372856Hi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeNovember 17, 2022 at 1:23 am in reply to: burger menu on mobile menu changes colors on breakpoints #1372854Hi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Louis Witte,
Please login into the support forum and open a new thread, you have asked your question through the contact form which is not for support requests.
If you have not registered to our support forum yet you can do so here.
Thank you for your understanding and for using Enfold.Best regards,
MikeHey ralfakerkhoff,
Thanks for your question, when I test the disable emojis option in the Enfold Theme Options ▸ Performance settings the wp-emoji-release.min.js file is not loaded, perhaps you have a caching plugin that is still serving it, or perhaps you are also using caching on your webhost that you need to clear, or perhaps you are also using a CDN like cloudflare that you need to clear?
Perahps there is a plugin that is conflicting with the theme setting, if none of these suggestions help try adding this function in your child theme functions.php://Disable WordPress Emojis add_action( 'init', 'smartwp_disable_emojis' ); function smartwp_disable_emojis() { remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); remove_filter( 'the_content_feed', 'wp_staticize_emoji' ); remove_action( 'admin_print_styles', 'print_emoji_styles' ); remove_filter( 'comment_text_rss', 'wp_staticize_emoji' ); remove_filter( 'wp_mail', 'wp_staticize_emoji_for_email' ); add_filter( 'tiny_mce_plugins', 'disable_emojis_tinymce' ); } function disable_emojis_tinymce( $plugins ) { if ( is_array( $plugins ) ) { return array_diff( $plugins, array( 'wpemoji' ) ); } else { return array(); } }If this doesn’t solve then include an admin login in the Private Content area so we can be of more assistance.
Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts

