Hi,
Thanks! I added following code to Quick CSS field in Enfold theme options > General Styling tab which would fix the issue however I still believe there is some sort of server side caching as this change has not applied yet
avia-buttonrow-wrap {
clear: both !important;
}
If you are able to clear server cache, could you please do so, so we can confirm? :)
Regards,
Yigit
Hey Steve,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
#top #wrap_all #header .av-menu-button > a {
-webkit-transform: skew(-20deg);
-moz-transform: skew(-20deg);
-o-transform: skew(-20deg);
transform: skew(-20deg);
}
If that does not help, please post a screenshot and show the changes you would like to make. You can upload your screenshots on imgur.com and post the links here :)
Regards,
Yigit
Hi,
I have just purchased Enfold theme and when I create new pages the ‘Advanced Layout Editor’ button doesn’t work.
Nothing happens when I click it. All I have on the screen is the default WordPress title and body sections.
I have imported pages from a previous Enfold install with pages with the Avia layout showing, however if I click the ‘default editor’ button on those pages and then click the ‘advanced layout editor’ button the Avia layout section will not appear anymore.
I have the latest WordPress and enfold theme installed with no other plugins installed.
Hi,
We added a slightly modified filter to our docu:
Best regards,
Günter
Hey davidscandroli,
Here are the docs for you:
If you need further assistance please let us know.
Best regards,
Victoria
Hey Andreas,
Here are the docs for you:
Do you want the same color on hover for all icons?
Best regards,
Victoria
but nevertheless – i resetted one of my testpages – with enfold avia_reset button.
i emptied my child-theme functions.php – when i insert a new gallery – even make the setting of “Lightbox image description text” before inserting the images to the gallery – the lightbox shows the title. It seems that the lightbox images still take the title from the img and not from the anchor-tag. (and that is normal behavior on magnific popup titleSrc.
Again : i would have expected that there is no text in the lightbox.
_____________
@rob:
div .mfp-title { display: none !important;}
is working on that testinstall ( WP5.7/Enfold4.8.1) – and – yes you had to refresh all merging and browser cache etc. pp. if there are other caching tools too.
btw. rob an error like this in your konsole : Uncaught TypeError: e.indexOf is not a function

often comes if the new jQuery 3.5.1 is confrontrated with script like $(window).load(function(){
– that is deprecated code
replace instead : $(window).on('load', function(){
.click(function() with .on('click', function()
you got it in:
jQuery(window).load(function(){
jQuery('#wrap_all a').removeAttr('title');
jQuery('#wrap_all img').removeAttr('title');
jQuery('.av-masonry-image-container').removeAttr('title');
});
have a look if there are other places you use the mentioned above.
Hi Mike,
Thanks for looking into this. I respect your conclusions, but I know what I saw on my site. Don’t worry so much about the tone, we’re all adults and can handle a little friction at times :-)
If I test with the latest theme version on a clean slate, indeed the CSS trick works on created masonry galleries like it should. But on my live site it did not (not even with div or #top specificity added). Could it be that the merge of CSS and JS played a role in the difference of behaviour before and after I saved those settings again?
Like you said, after the event it’s always difficult to assess an issue. There could indeed have many customizations in play, or even a certain version of the theme (with galleries created before the lightbox text options and lazy loading were added) behaving a certain way after the update.Btw, I used the Perfect Grid ones, don’t know if that plays a role.
I resorted to the manual fix of the galleries because I did not want the site to have the filenames below the lightbox images on all galleries. So now I have no way of going back to the original issue.
I’m sure the dev team takes great care in preparing and testing updates, and I’m always very content with Enfold. But there are just too many possible scenarios in people’s customized sites (and version update skips) for the team to cover all in advance, so that’s not a critique.
My remark about the “default action” was about the “image caption or image title if empty” and the “image description or image title if empty”. My choice would have been “or no text if empty” in those two cases.
So let’s just say I ran into an unfortunate collision of circumstances. And thanks again for looking into it.
Rob
P.S.
Guenni007, thank you also for looking into it.
Added remark:
There is an important distinction here which is of note. Normal portfolio galleries, when re-saved with the new options, do add the lightbox_text='no_text' field in the code. BUT…when a gallery has been previously added to a Blog Post (through the Insert Theme Shortcode button), before the option existed, then the only way in which this field can get added to the code later is by inserting it manually. Which is what I had to do.
-
This reply was modified 5 years ago by
rob2701. Reason: Added remark about masonry galleries in blog posts
Hi David,
I see, I apologize I misunderstood your first post.
This is not a bug but how pagebuilder works, when you enable pagebuilders like Enfold’s Advanced Layout Builder, the content area is emptied and everything is manually added.
If you want to place Comments and Social Share Buttons, you’ll need to add them (you should see them under Content Elements).
Best regards,
Nikko
Hello,
I have an issue with a button that invokes a video modal popup.
When I click the button, the the modal pops up with the video embedded successfully, but it does not start playing automatically.
These are the different URLs I have tried for the button:
https://www.youtube.com/embed/RD01nHuYIks?autoplay=1&iframe=true
https://www.youtube.com/embed/RD01nHuYIks?autoplay=1&iframe=1
https://www.youtube.com/embed/RD01nHuYIks?autoplay=true&iframe=true
https://www.youtube.com/embed/RD01nHuYIks?autoplay=true&iframe=1
There are no javascript errors either.
Looking at the embed code from Enfold, it doesn’t follow the embed code that YouTube expects for autostart, in particular I don’t see the ‘allow’ attribute in the code with the various values it expects.
Here is what I am seeing with the Enfold theme code:
<iframe class="mfp-iframe" src="https://www.youtube.com/embed/RD01nHuYIks?autoplay=true&iframe=true" frameborder="0" allowfullscreen=""></iframe>
Here is what YouTube expects:
<iframe width="560" height="315" src="https://www.youtube.com/embed/RD01nHuYIks" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
Please advise how to get my video to play automatically.
Thanks.
-
This topic was modified 5 years ago by
Michael.
Hi,
I added the following code in my theme childs function.php
//WooCommerce Frage zum Produkt
function wc_produktfrage() {
echo 'TESTMAX!';
}
//add_action( 'woocommerce_after_shop_loop_item', 'wc_frage_produkt_button', 20 );
add_action( 'woocommerce_before_add_to_cart_form', 'wc_produktfrage', 30 );
However I don’t find my teststring anywhere in the products page.
die(); is resulting in an empty page. Anything wrong with the default hook in enfold?
EDIT: Sorry another plugin interferred.
-
This topic was modified 5 years ago by
maxh_muc.
Hey,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
#top .sidebar .widget_shopping_cart .button {
width: 100%;
display: block;
margin-bottom: 5px;
text-align: center;
}
Best regards,
Yigit
Hi Hafiz,
Thanks for contacting us and for your kind words. Glad you like Enfold :)
How can we help? If you would like to share your message privately, please feel free to share it in private content field or check ” Set as private reply” above Submit button.
Best regards,
Yigit
Hi Holly Chervnsik,
Thanks for giving us admin access.
I was able to update your site successfully and it seems to work properly (I have removed jQuery Migrate Helper).
Please review your site.
If all is good you can do the following to your live site:
First make a backup:
– Site Backup: https://kriesi.at/documentation/enfold/backup-wordpress-site/
– Theme Settings Backup: https://kriesi.at/documentation/enfold/backup-theme-settings/
Then do the following steps:
1. Login to ThemeForest and download the Enfold theme, right-click over the downloaded zip file and extract/unzip it.
2. It should generate a new folder, open it and look for the enfold folder
3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
4. Log in to WordPress as and Admin.
5. Install and activate a maintenance plugin and put your site in Maintenance mode.
6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
7. Click on the ADD NEW button.
8. Click on the UPLOAD THEME button.
9. Click BROWSE and choose enfold.zip file
10. Click the INSTALL NOW button and switch to Enfold or your child theme.
11. Remove the maintenance mode then deactivate and remove the maintenance plugin.
Register the theme by following the instructions in https://kriesi.at/documentation/enfold/theme-registration/
Once this is done, the next time you update, you’ll only need to go to Enfold > Theme Updates and click on the Update button.
Best regards,
Nikko
Hi Rikard,
of course, you find the details in the private area.
I think that the codes do not have any problem I just don’t know how to activate the pop-up modal whether immediately when loading the page nor by clicking a button. I guess that every newsletter pop up works with java script codes… I just don’t how and where to add them in enfold child theme in order to make them work.
I added already a code in function php and Yigit helped me by changing the footer to header. But then something didn’t work out and I don’t know what.
Thank for your help and the review of my site
Regards, Verena
Hi,
The “media” button in tinyMCE is standard WP. Actually a WP bug I would say.
When you switch from visual to text mode you see the generated HTML by WP containing the alt but not the title. Enfold does not hook in this.
Only way I see is try to add the image shortcode manually – but keep an eye on the layout, that it gets not broken.
Best regards,
Günter
Hi Kathy,
Thanks a lot!
I received the copy you sent and tried reproducing NaN issue however I could not. I referred to your documentation but I am not sure what I missed. Could you please let me know the steps to reproduce the issue? :)
I sent you a copy of Enfold with quantity button fix as well.
Best regards,
Yigit
Hi Martin,
Thanks, I have updated the staging site and I didn’t see any issue.
Please review the staging site first if you can see any issue (WP_DEBUG is turned on).
If all is good, please try to update your site again but please backup your site first:
– Site Backup: https://kriesi.at/documentation/enfold/backup-wordpress-site/
– Theme Settings Backup: https://kriesi.at/documentation/enfold/backup-theme-settings/
If it still show issues, then please do the following steps instead:
1. Login to ThemeForest and download the Enfold theme, right-click over the downloaded zip file and extract/unzip it.
2. It should generate a new folder, open it and look for the enfold folder
3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
4. Log in to WordPress as and Admin.
5. Install and activate a maintenance plugin and put your site in Maintenance mode.
6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
7. Click on the ADD NEW button.
8. Click on the UPLOAD THEME button.
9. Click BROWSE and choose enfold.zip file
10. Click the INSTALL NOW button and switch to Enfold or your child theme.
11. Remove the maintenance mode then deactivate and remove the maintenance plugin.
Best regards,
Nikko
Hi karel,
Go to Appearance > Menus > create your top menu, once done, check Enfold Secondary Menu and save.
Then go to Enfold > Header > Extra Elements (tab) > Header Secondary Menu set this to either show in left or right side.
Next go to Enfold > Advanced Styling > (Select an element to customize) select Small bar above main menu then click Edit Element button, and change the Font Color.
Hope this helps.
Best regards,
Nikko
Hello,
I’m building a website with a frontend publisher. I chose, for various reasons, Frontend Publisher Pro (on code canyon). Everything works fine, apart from the insert media object button, that doesn’t do anything when clicked. It is only when changing theme that the button works. Any idea what could cause the problem ? It seems it is something that’s happening for others too (see https://kriesi.at/support/topic/enfold-blocks-the-insert-media-objects-button-for-edits-from-the-frontend/).
I’ll give you in private the necessary info to access the website.
Hi,
@poplin thank you for your question, I will try to help you here but as this is not your thread you will not see what we write in the Private Content area, and if you include login details to the Private Content area it will also be seen by the thread owner, so this is not recommended. I also see that you are using Enfold v4.7.6.4, and we are currently using v4.8.1
I tested the above solution and it still works for v4.8, try adding this code to the end of your functions.php file in Appearance > Editor:
add_filter('avf_template_builder_content', 'avf_template_builder_content_mod', 10, 1);
function avf_template_builder_content_mod($content = "")
{
if(is_page() ) {
$addendum = do_shortcode("[av_social_share title='Share this entry' buttons='' yelp_link='https://www.yelp.com' style='' alb_description='' id='' custom_class='' template_class='' element_template='' one_element_template='' av_uid='av-km64rgtq' sc_version='1.0' admin_preview_bg='']");
$content = $content . $addendum ;
}
return $content;
}
This adds the social share buttons shortcode to the bottom of each page built with the Advanced Layout Builder, after the builder content, but before the footer, so the social share buttons will use the page as the url.
Please use this and remove any social share buttons from your “Footer Page”.
If you have trouble with this then please create a new thread and include a recap, and WordPress admin access in the Private Content area, of that thread (not this one).
Best regards,
Mike
Hi,
i inserted a “download” button in my website with the “Easy Media download” plugin.
I did any tests: when i click on the button, the download does not start with Google Chrome Browser, but, for example, testing with Mozilla Firefox, it is ok and the download starts correctly.
I also tried with the Enfold button, i used the link with my .zip file i want to be downloaded (http://my-website.it/wp-content/uploads/My-file-.zip” but the button did not work and the download did non start.
Using Enfold button, is there a way to let the download starts automatically when the button is pressed?
Thanks for the support!
Kathy DarlingGuest
Hi there,
I’m the author of the WooCommerce Mix and Match Products plugin. I regularly get support tickets from mutual users who are using your theme but the plus/minus quantity buttons aren’t working with my plugin.
There is this issue in your forums: https://kriesi.at/support/topic/mix-and-match-does-not-count-with-enfold-theme
Which recommends using an alternative to the theme’s script compression. Now, It’s hard for me to read the un-minified scripts, but I think there may also be an issue in the plus/minus buttons’ quantity calculations:
I think this is the subtraction behavior
var t = parseInt(e.val(), 10) – d;
and the addition behavior:
var t = parseInt(e.val(), 10) + d;
The issue that I think I see is that Mix and Match’s quantity inputs start out empty. This would result in a NaN error for parseInt(e.val()) since you can’t parse a null into an integer. What I would propose here is the you verify there is a value in the input. If not, you can probably assume 0 and calculate from there.
I think that might help resolve the cross-compatibility issue between our products.
Please let me know if you have any questions about Mix and Match! Or if I can help in some way to get this resolved.
Hi,
I am marking this thread as resolved as this was resolved in another thread – https://kriesi.at/support/topic/number-in-the-bubble-above-the-jobs-menu-button-on-the-enfold-site/ :)
Best regards,
Yigit
Hi karel,
Please go to Enfold > Advanced Styling > (Select an element to customize) select Main Menu Links then click Edit Element button.
It should open up an option box below for Main Menu Links, change the font size.
Hope this helps.
Best regards,
Nikko
Hi, my site is running Enfold Child theme, and suddenly many of the site elements are not displaying correctly. Text is missing, buttons are missing, images are missing, and some of the images are appearing but sized incorrectly. I’ve tried deactivating all plugins, emptying the cache, updating PHP, etc. Any help would be much appreciated.
WP Version 5.6.2
Enfold Version 4.8.1
Dear Kriesi Team,
we decided to once again use your enfold theme for our new and first e-commerce homepage.
Since this will be our first shopping homepage, we are not really experienced regarding woocommerce.
There is couple of things we can not get going.
Hopefully, you can support.
1.) Total Price At Product Page
By clicking on the menue “Players”, that leads to our current single product page, it only shows the price per unit.
By adding more units and before clicking on “Warenkorb aktualisieren”, the price stays the same.
Is it possible to get a big button that shows the total value before actually clicking on “Warenkorb aktualisieren”?
2.) Different price by certain amount
We currently do have a discount by ordering 3 or more units. However, is there any chance to add a label that represents that discount before entering an amount? Customers probably don’t know the existence of this discount and they actually have to put 3 or more units into the shopping card and clicking “update shopping card”. Probably not a good selling solution.
Thanks in advance and best regards.
Hi Jonah,
1- Yes, it is possible. You can simply edit the Audio Player element and choose to start manually – https://imgur.com/a/F8jCWau
2- YouTube and Instagram icons are available out of the box and Spotify icon can be added by referring to this post – https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options. If you decide to purchase Enfold and would like us to add it, we can gladly add it for you. We would just need temporary admin logins :)
Best regards,
Yigit
Dear ENFOLD support
How do I get the captions in the Fullscreen Slider (top) to the right side?
I tried to put an image into the caption as a link, which is not possible. Is there a solution?
Submenu’s of ‘Bestellung’ are in red (Wolt, Lieferando & Pickup), how do I get them normal when not hovered?
Best regards
-
This topic was modified 5 years ago by
Jaispirit.
Hi all!
I’ve spend two days trying to fix a problem, maybe is a plugin problem, but I’ve disable all plugins, change theme, etc, and problem persists.
In SITE 1 between main slider and first button should be appear 3 posts from a different WP installation using “getpostsviarestapi” plugin, and adding code to functions.php under enfold-child.
As you can see in SITE 2 (test), the same is working perfectly.
What can be happening?
TIA.
-
This topic was modified 5 years ago by
backfolder.