Forum Replies Created
-
AuthorPosts
-
January 19, 2025 at 7:11 pm in reply to: Enfold forces Woocommerce product images to be cropped and square #1475387
Hi,
Glad that this helps, the backend Featured image thumbnail is a WordPress function and I don’t know how to change this. But as you pointed out your customers won’t see this. Shall we close this thread then?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,
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,
MikeJanuary 19, 2025 at 6:59 pm in reply to: Can’t save pages/posts with classic editor and Enfold theme #1475384Hi,
Thanks for your feedback, I nor the Dev Team could reproduce this so it is hard for us to investigate further. I’m glad that this solution is working for you.
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,
MikeJanuary 19, 2025 at 3:22 pm in reply to: Enfold forces Woocommerce product images to be cropped and square #1475374Hey ProSEO,
I added this to your functions.php file in Appearance ▸ Editor:add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 ); function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) { return 'woocommerce_thumbnail'; }
and it solved your webshop
and the Related products:
Best regards,
MikeHey ebenanders,
The images that I check on your site are “https”, it looks like only the favicon is “http”. Check the URL in Enfold Theme Options ▸ favicon, you can edit it without uploading again. Also check your WordPress ▸ Settings ▸ General ▸ Site Address and WordPress ▸ Settings ▸ General ▸ WordPress Address for “http”Best regards,
MikeHi,
Thank you for your patience, I checked again but don’t see why the data-av_icon attribute is missing only for the Instagram and YouTube icons.
I asked Yigit for any other ideas.Best regards,
MikeJanuary 19, 2025 at 2:31 pm in reply to: Can’t save pages/posts with classic editor and Enfold theme #1475370Hi,
Please also note that I disabled your Disable Gutenberg plugin as this is not needed, the theme already has this setting in the Enfold Theme Options ▸ Select Your Editor option.Best regards,
MikeJanuary 19, 2025 at 2:27 pm in reply to: Can’t save pages/posts with classic editor and Enfold theme #1475368Hi,
Thank you for your patience, the Dev Team writes that when checking the revisions it seems that the title on your site is causing this, but it is not reproduceable on a local install, this can be ignored or use a plugin to Disable Autosave.
The only plugin that I found was Disable Gutenberg Autosave, but you are not using Gutenberg so it doesn’t seem to help you. I added this code to your Snippets plugin:add_action( 'admin_init', 'disable_autosave' ); function disable_autosave() { wp_deregister_script( 'autosave' ); }
and used your WP DB Cleaner plugin to remove past auto saves and saved a page and a post and checked back many times and checked your WP DB Cleaner plugin to see if any was added, but none were.
Please check.Best regards,
MikeHey nancyT,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { .av-burger-menu-main.menu-item-avia-special, .responsive.html_cart_at_menu.html_header_searchicon .menu-item-search-dropdown { right: -100px; } }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Munford,
The sidebar is not expected to show on mobile in this layout, nor in the burger menu, but adding this code to the end of your child theme functions.php file in Appearance ▸ Editor will show it:function custom_script() { ?> <script> (function($){ $('#avia-menu').one('click', function(){ jQuery('.avia-custom-sidebar-widget-area.sidebar.sidebar_right').clone().wrapInner('<div class="sidebar-widget-area"/>').children(0).unwrap().appendTo('#av-burger-menu-ul'); }); })(jQuery); </script> <?php } add_action( 'wp_footer', 'custom_script', 99 );
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeHey Diana,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .avia-timeline-container .av-milestone .av-milestone-indicator, #top .avia-timeline-container .av-milestone .av-milestone-article-footer { background-color: rgba(148, 159, 175, 0.77); }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeHi,
For pages created with the Advanced Layout Builder, switching to the default WP editor and editing will break the ALB layout.
If your page has javascript in the iframe code blocks, this may be tring to load when you edit the backend causing the error, or the iframe itself is trying to load in the backend.
You could try the Avia Layout Builder Debugger to view the page shortcode. But be careful when editing the shortcode directly as it could break the page.Best regards,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.cr-all-reviews-shortcode ol.commentlist li .comment-text .meta .woocommerce-review__author, .cr-all-reviews-shortcode ol.commentlist li .comment-text .cr-rating-product-name .cr-product-name-picture .cr-comment-productname-a, .cr-histogramTable tr.ivole-histogramRow .cr-histogram-a { color: #fff; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeHi,
To hide it on all pages try this instead:@media only screen and (max-width: 767px) { #revolutionslider_1 { display: none; } }
or for certain pages:
@media only screen and (max-width: 767px) { .page-id-3861 #revolutionslider_1, .page-ide-3489 #revolutionslider_1 { display: none; } }
Best regards,
MikeHi,
Try this instead:#top #wrap_all #main .template-page h1.markdown a, #top #wrap_all #main .template-page h2.markdown a, #top #wrap_all #main .template-page h3.markdown a, #top #wrap_all #main .template-page p.markdown ~ h3 a{ text-decoration: none !important; } #top #main .template-page .avia_textblock :not(h1,h2,h3) a:not(.avia-button) { text-decoration: underline !important; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeHey schweg33,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { .page-id-3861 #revolutionslider_1 { display: none; } }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey José Augusto,
Try going to the “screen options” at the top of the menu page and select “Link Target”, then after you add your custom link, open it and change your Link Target for it.Best regards,
MikeHey hwci,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#services { z-index: 0; position: relative; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad Guenni007 & Ismael could help, thank you Guenni007, 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,
MikeJanuary 17, 2025 at 5:06 pm in reply to: Can’t save pages/posts with classic editor and Enfold theme #1475298Hi,
I tested by saving your homepage and then viewed the frontend, then went back to the backend and there was no message that a auto draft was saved, as in your opening post and screenshot.
I’m not sure why you are having this issue.Best regards,
MikeHey edithfrei,
When I check your footer I’m not seeing any issues:
Please include a screenshot of what you see and paste the image URL in your post.Best regards,
MikeHey schweg33,
I’m not sure that I see extra white space on mobile:
Please include a screenshot of what you see and paste the image URL in your post.Best regards,
MikeHey jehi33260,
The error message “Sorry Because of its privacy settings, this video cannot be played here.” seems to be from Vimeo, please check your Vimeo settings in your Vimeo account.
Perhaps you have to whitelist the domain.
Your page also has the error: “Failed to load resource: the server responded with a status of 403 (Forbidden)” from Vimeo, which supports the above believe that you need to check your Vimeo settings in your Vimeo account.Best regards,
MikeHi,
To add a screenshot please try using an Screenshot service and pasting the image URL in your post.Best regards,
Mike -
AuthorPosts