Forum Replies Created
-
AuthorPosts
-
Hi,
Did you write “check” to mean that you understand and agree, or that you want me to check the site?
I will need a FTP login to check, a login to your site will not help.
If I make the change and it also disable the swipe for mobile are you ok with that?Best regards,
MikeHi,
Please login to the support forum and use this link to start a new thread
I looked at your two sites and in both cases you will need to first manually update the theme because they are using old versions on the theme.
To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New

after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue

then you will see the Theme updated successfully message.

Then after you update you can create a Envato Token in your Theme Forest account so that future updates can be done easily.
If you still have trouble after manually updating the theme as above then please start a new thread so we can help.Best regards,
MikeHi,
Glad Guenni007 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,
MikeHi,
If you add customizations to the parent theme function it will be lost on updates, but with a child theme they will not be lost.
To add the Microsoft Team logo, I assume that this is not available as a icon so you can add it like we do for TikTok, try following these steps and adjust for your logo.
If you are not using a child theme I recommend the WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets and allows you to export and import your custom code snippets to other sites that you may have or as a backup.Best regards,
MikeHi,
Ok, first you will need to change the width: calc(50%); to 43% or less as above so the two columns will be side-by-side and then you could add this css for text-align: right;@media only screen and (max-width: 767px){ #footer .flex_column:nth-child(1) #text-4 { text-align: right; margin-right: 0; margin-left: 20px; } }Please see the screenshot in the Private Content area of the expected results.
Best regards,
MikeHi,
Thank you, what I was tring to say is that the inline forms and the popups seem to be added by the same code snippet from getresponse, if there was a way to have two code snippets, one for the inline forms that we could add to the header for all pages, and one snippet for the popups that we could use in the “exclude_certain_pages_from_getresponse_popup” function above to only show on some pages, I believe this would work.Best regards,
MikeHi,
Glad that this helped, I removed the top border because I thought it didn’t look good once the slider was added, try removing this css from the Quick CSS:#top.single-product .container_wrap_first.container_wrap { border-top-style: none; }and clear your browser cache to see what you think.
Best regards,
MikeHi,
Please include FTP login so we can take a look, but this solution may also disable the swipe for mobile which I don’t think you will be pleased with so the best solution may be to leave this alone.Best regards,
MikeHi,
Glad we were able to help, sorry for the late repliy there are lots of people with lots of questions we are trying 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,
To add the social icons to your burger menu to your burger menu try this solution.Best regards,
MikeHey Sievers,
Thanks for the link to your page, if you disable your plugins the color section then shows correctly at full width?
Please include an admin login in the Private Content area so we can try to investigate.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,
Try using a plugin like Search RegexBest regards,
MikeHi,
Thanks for your patience, to add your Revolution Slider to the top of your shop, products, and woocommerce pages I added this code to your child theme functions.php:add_action('ava_after_main_container', 'ava_after_main_title_mod'); function ava_after_main_title_mod() { if(is_woocommerce()) { echo do_shortcode("[rev_slider alias=\"titel-vorstand\"][/rev_slider]"); } }Then I added this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top.single-product .container_wrap_first.container_wrap { border-top-style: none; }and now it is showing, please clear your browser cache and check.
Best regards,
MikeHi,
According to our documentation you would sync files before updating, then After syncing files, you are ready to update language files So once you have synced then update language files, then don’t sync again.Best regards,
MikeHey WriterTom,
Please include an admin login in the Private Content area so we can see your site and be of more assistance.Best regards,
MikeHey janbornemann44,
Thanks for your question, to hide the menu on every page except the homepage, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top:not(.home) #avia-menu { display: none; }After applying the css, please clear your browser cache and check.
If this doesn’t help please include the url to your site so we can take a closer look.Best regards,
MikeHi,
To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New

after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue

then you will see the Theme updated successfully message.

Then after you update you can create a Envato Token in your Theme Forest account so that future updates can be done easily, but your current version will not work with the Envato TokenBest 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 4, 2023 at 8:50 pm in reply to: Image opening in Lightbox singly without arrows to scroll through all images #1409566Hi,
Thanks for sharing your findings, I found this stackoverflow thread and added the lightbox-added class as a trigger:(function($){ var $imgs = []; $('img').each(function(idx) { var obj = { src: $(this).attr('src') } $imgs.push(obj); var elem = $(this); elem.click(function() { console.log('clicked on img', idx); $('.lightbox-added').magnificPopup('open', idx); }); }); console.log($imgs); $('.lightbox-added').magnificPopup({ items: $imgs, type: 'image', gallery: { enabled: true }, }); })(jQuery);When I test it by injecting it via the browser to your page it lists 21 of your images on the page as an arrayin the console, see: console.log($imgs); so this is promising, but they are not passing to the lightbox via items: $imgs,
Unfortunately here it says there is a bug in magnificPopup that prevent the index.
Here is a link to the Magnific Popup Documentation if it is helpful, give the script a try and perhaps you will be able to open the image array.Best regards,
MikeHey mischael1,
Thanks for your patience, can you explain further about this code and what it does, perhaps link to where you found it and is it for javascript or PHP?Best regards,
MikeJune 4, 2023 at 6:31 pm in reply to: Different amount of columns per row in a masonry gallery #1409557Hey DanielDM,
Thanks for your patience, you would need to use a separate element for each row with a different number of columns selected.Best regards,
MikeHey BeeCee,
Thanks for your patience but we don’t have a way to exclude pages from the maintenance mode feature, if you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.Best regards,
MikeJune 4, 2023 at 6:13 pm in reply to: Category display, show products, but show categories for a particular category #1409554Hey MotiveAgency,
Thank you for your patience, the setting at Appearance ▸ Customise ▸ WooCommerce ▸ Product Catalogue ▸ Category display are global and you are not able to select specifically for each category.
Instead go to Products ▸ Categories and edit each category under Display type

Best regards,
MikeHi,
Thank you for your patience, to make the accordion slider not clickable, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.aviaccordion-slide a { pointer-events: none; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad to help, we will leave this thread open and report any ideas the team has about using lottie with the LayerSlider.Best regards,
MikeHi,
Thanks Guenni007 I took a look at this and at lzevon’s site and I found that it works for this site even though it is not using a transparent header.
lzevon thanks for the login I see that are are using a page ID to your homepage for the css and script so it will only work on your homepage and this page is not transparent and uses the Shrinking Header & Sticky Header, I checked the code from Guenni007 and added a svg image all-for-you-no-cloud.svg in the placeholder path_to_your_alternative_svg_logo in the code.
So now the logo with the cloud shows at the top of the page and before scroll, then after scroll the logo with no cloud shows.
Please see the screenshots in the Private Content area and clear your browser cache and 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,
To make the single product page images link to the full size images in lightbox, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function change_lightbox_size() { return "full"; } add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);This also changes the linked lightbox image for image elements
Best regards,
Mike -
AuthorPosts

