Forum Replies Created
-
AuthorPosts
-
Hi,
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,
It looks like you accidentally converted the pages to the WordPress Block Editor instead of the Enfold Advanced Layout Builder, I corrected it for you please check.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,
MikeHi,
Thank you for the link to your site, try adding this code to the end of your functions.php file in Appearance ▸ Editor:function custom_limit_words_script() { ?> <script> (function($){ $('#top.post-type-archive-product .template-shop .products.columns-3 .product .inner_product').contents().filter(function() { return this.nodeType == 3 }).each(function(){ var length=30 this.textContent = this.textContent.split(" ",length).join(" "); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_limit_words_script');feel free to adjust the word length to suit, currently it is 30.
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,
Thank you for the link to your site, I see that you are using Equal Height columns, when you do the inner columns are wrapped in a flex_column_table and a av-flex-placeholder is added between the columns.
If you use Individual Height columns your width issue would be corrected, but I assume that you wish to continue using Equal Height columns, so try changing the color section ID to eh-center-align-columns for Equal Height columns, and ih-center-align-columns for Individual Height columns.
Then use this css:#ih-center-align-columns .entry-content-wrapper, #eh-center-align-columns .entry-content-wrapper .flex_column_table { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; justify-content: center; } #eh-center-align-columns .av-flex-placeholder { display: none; }After applying the css, please clear your browser cache and check.
expected results:

Best regards,
MikeHey HulaSlim,
Thank you for your patience, I added this css for you:#main .container_wrap { border-top-style: none; border-top-width: 0; }Please clear your browser cache and check.
Best regards,
MikeHi,
Thanks for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.av-catalogue-price.av-cart-update-price > ins > .woocommerce-Price-amount { position: absolute; top: 30px; left: 0; } #top #wrap_all .av-catalogue-price.av-cart-update-price > ins:before { display: none; } .av-catalogue-price.av-cart-update-price > ins > .woocommerce-Price-amount .woocommerce-Price-currencySymbol:before { content: "\2219"; text-decoration: none; display: inline-block; padding: 0 4px 0 3px; font-size: 20px; line-height: 12px; }After applying the css, please clear your browser cache and check.
If you don’t want the star before the sale price the use this instead:
.av-catalogue-price.av-cart-update-price > ins > .woocommerce-Price-amount { position: absolute; top: 30px; left: 0; } #top #wrap_all .av-catalogue-price.av-cart-update-price > ins:before { display: none; }Best regards,
MikeJune 18, 2022 at 9:27 pm in reply to: Color section video background not staying constrained #1355716Hey Christie,
Thanks for the link to your site, I tried to create a copy of it on a multisite network but couldn’t reproduce your error, please see the link below.
Check to see if you have disabled Self Hosted Videos or any elements.Best regards,
MikeHi,
The Dev Team has replied that at the moment this is not integrated in Enfold, but has been added as a feature issue to our dev repo.
Thank you for your patience.Best regards,
MikeHi,
The Dev Team has replied that at the moment not integrated in Enfold, but has been added as a feature issue to our dev repo.
Thank you for your patience.Best regards,
MikeHi,
Thank you for your patience, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.avia_transform .av-animated-generic { opacity: 0; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thank you for your patience and for the screenshots, I don’t have an iPhone but by examing with Chrome DevTools at 320px screen width, which is the typically small iPhone width I found that the x-large buttons have a min-width of 320px and the page has a max-width of 85%

But once you look at the larger screen phones like 425px this issue doesn’t show.
I recommend this css to correct for the smaller phones:@media only screen and (max-width: 430px) { .avia-button.avia-size-x-large { min-width: 100% !important; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Sorry, we don’t have a timeframe for added features, the Dev Team is working on a lot of features right now, so we will need to wait and see, thank you for your patience and understanding.Best regards,
MikeHi,
Thank you for your patience, yes the code goes in your child theme functions.php, you placed it in the correct place.
Your page /monuments-historiques/ doesn’t seem to exist anymore so I checked /moutier-grandval/ and found that the script was looking for a specific element ID, I adjusted it to look for the general ID full_slider_1 and it is now working on that page and should work on all of your pages, if you find one that it is not working on please link to it so we can examine.For future users the working script is now:
function add_scrolldown_link() { ?> <script> var slider = document.getElementById("full_slider_1"); console.log(slider); if (slider) { var anchor = document.createElement("a"); anchor.href="#next-section"; anchor.classList.add('scroll-down-link'); anchor.classList.add('av-control-default'); anchor.setAttribute("aria-hidden", "true"); anchor.setAttribute("data-av_icon", ""); anchor.setAttribute("data-av_iconfont", "entypo-fontello"); console.log(anchor); slider.appendChild(anchor); } </script> <?php } add_action('wp_footer', 'add_scrolldown_link');Best regards,
MikeHi,
Thanks for your patience on your page /moutier-grandval/ you have the footer setings at Use selected page to display as footer (no socket)

this option on any page will override the theme options

so to use the default theme options you need to change the page setting to Default layout – set Enfold Child > Footer

I did this for you on this one page, please check.Best regards,
MikeJune 18, 2022 at 6:12 pm in reply to: Enfold 5.0 – Layerslider Background Video Safari Browser #1355700Hey mediaformers,
Thanks for your patience and the link to your site, but I’m not seeing this in Safari v15.4 on Mac Monterey v12.3.1
What version are you using?Best regards,
MikeHi,
Glad to hear that Guenni007 has helped you, shall we close this 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,
MikeJune 18, 2022 at 5:44 pm in reply to: Font-size in search result list pages, editing of search-result pages, e #1355695Hey Murmeltier,
Thank you for your patience and the link to your site, I see the search results content is 13px and the meta info is 11px.
But the font-family on your site is set to ‘glacial-indifference’ in your use any font plugin, do you want to use open sans for only your search results?
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#top.search-results #main p, #top.search-results #main .post-meta-infos * { font-size: 14px; font-family: 'open sans'!important; }To add a sidebar on the search results page, enable the Sidebar Settings > Sidebar on Pages option and use the “Displayed Everywhere” widget area in the Appearance > Widgets panel.
There is not an option to add a graphic in the search results page header, but if you link to the image and a mockup we may be able to assist with some custom code.
To add a screenshot please try using an Screenshot service and pasting the image URL in your post.For the 300 pages that you imported, do you only want to match the font size, or is it a drastic layout change?
Please link to one of the imported pages and one of the new pages that you want it to look like so we can examine.Best regards,
MikeHi,
Thanks for your patience and the link to your site and screenshots, for your slideshow caption “4-Zimmer Wohnung Nbg. – St. Johannis” I recommend add ing css:@media only screen and (max-width: 430px) { #top.home #main h2.avia-caption-title a { font-size: 18px; } }feel free to adjust, perhaps 16px or 14px
After applying the css, please clear your browser cache and check.
For your other items try this css:@media only screen and (max-width: 767px) { #top.home #main #av_section_6 { margin-top: 0; } #top.home #main #av_section_6.avia-section-large .content { padding-top: 0; padding-bottom: 0; } #top.home #main #av_section_5.avia-section-large { margin-bottom: 0; } #top.home #main #av_section_5.avia-section-large .content { padding-bottom: 0; } #top.home #main #av_section_2.avia-section-huge .content { padding-top: 0; padding-bottom: 0; } #top.home #main .avia-builder-el-38 { padding: 0; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thank you for your patience, but third-party plugins such as your Easy PayPal Buy Now Button will not show in the Advanced Layout Builder, and this plugin only works in the WordPress Classic Editor, not the WordPress Block Editor
As I recall your site is not actually a “multisite” it is 5 different sub-domain WordPress installs, each act independent of the others, so you would add your products to each webshop.Best regards,
MikeHi,
Thank you for your patience, the Dev Team replies that this was added only to slideshows, not for lightbox.Best regards,
MikeHi,
Thank you for your patience, the Font Awesome icon fa-comments-question is a Pro Icon so to use it you will need a license, the free version you are using in your functions.php maxcdn.bootstrapcdn.com/font-awesome will not show it.

I updated your Font Awesome function to this to use v6:add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' ); function enqueue_font_awesome() { wp_enqueue_style( 'font-awesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css' ); }This is a link to the free icons you can use, such as
<i class="fa-solid fa-comment"></i>which I tested on your page and it is working:

Please check.
For your custom menu, do you want this to be just the menu (code block) or the whole “actionbar”?

If you want the same placement and layout as your page now has, I would recommend adding a header widget area and see our documentation on Header widget position ▸ Flexbox Usage to apply Widget at the bottom, this is below your logo and menu.Best regards,
MikeJune 18, 2022 at 2:44 pm in reply to: Inconsistent loading times for portfolio pages and blog posts #1355688Hi,
Thank you for your patience, there is not an option to set the preloader on a page-by-page basis, but you could enable the preloader for the site and add this css to hide it on all single posts and all single portfolio items:#top.single-portfolio .avia_loading_icon .av-siteloader, #top.single-post .avia_loading_icon .av-siteloader { display: none !important; visibility: hidden !important; } #top.single-portfolio .avia_loading_icon, #top.single-post .avia_loading_icon { background: rgba(0,0,0,0) !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey virtualbis,
Thanks for the question, the button you link seems to be out contact form button, the other two seem to be from plugins.
To make them all the same, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#top .main_color .button, #top #wp-submit0, #top .frm_button_submit.frm_final_submit { background-color: #faa41a; color: #ffffff; border-color: #d88208; padding: 16px 20px; border-radius: 2px; border-bottom-width: 1px; border-bottom-style: solid; font-weight: normal; font-size: 0.92em; min-width: 142px; outline: none; -webkit-box-shadow: 0 0px 0px #eeeeee; box-shadow: 0 0px 0px #eeeeee; } #top .main_color .button:hover, #top #wp-submit0:hover, #top .frm_button_submit.frm_final_submit:hover { background-color: #afceee; color: #ffffff; border-color: #8daccc; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey ac1977,
For the cart, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#top .main_color tr:nth-child(odd), #top .main_color .pricing-table>li:nth-child(odd), #top .main_color .pricing-extra, #top .main_color .quantity input.plus, #top .main_color .quantity input.minus { background: #141414; }
For the contact form try this css:#top .main_color input[type='text'], #top .main_color textarea { background: #141414; color: #fff; }
After applying the css, please clear your browser cache and check.Best regards,
Mike -
AuthorPosts
