Forum Replies Created
-
AuthorPosts
-
Hi,
You’re welcome! If you have more questions, please feel free to open another thread. Thank you for your patience and have a nice day.
Best regards,
IsmaelHi,
Thank you for the update. You can add this css code to move the categories to the next line:
#top.single-product .main_color .product_meta span.sku_wrapper { clear: both; display: block; }
Best regards,
IsmaelApril 15, 2025 at 5:51 am in reply to: Audiowiedergabe mittels Grafik auslösen/Trigger audio playback via graphic. #1481356Hey kalla77,
Thank you for the inquiry.
Add an image and an audio element, apply the ID “playImage” to the image element and “audioClip” to the embedded audio element, then add this script to trigger playback when the image is clicked.
add_action( 'wp_footer', 'av_image_audio_script' ); function av_image_audio_script() { ?> <script> document.addEventListener("DOMContentLoaded", function () { const image = document.getElementById("playImage"); const audio = document.getElementById("audioClip"); if (image && audio) { image.addEventListener("click", function () { audio.play(); }); } }); </script> <?php }
If you can create a test page, we’ll try to check it further.
Best regards,
IsmaelHi,
An example can be found here: https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/ALB%20core/avf_force_alb_usage.php
Best regards,
IsmaelHey Michael F,
Thank you for the inquiry.
This thread might help: https://kriesi.at/support/topic/email-protection-with-enfold/
Best regards,
IsmaelHey navindesigns,
Thank you for the inquiry.
You can add this css code to disable the default video click overlay.
.av-hide-video-controls .av-click-overlay { pointer-events: none; }
Best regards,
IsmaelApril 15, 2025 at 5:20 am in reply to: How to load / show post on a page with multiple rows and columns #1481351Hey Alan,
Thank you for the inquiry.
Have you tried using the Product Grid element? You can also use the Blog Posts element with the Blog Style set to Grid Layout, but it will require some adjustments to display elements such as the Add to Cart button. Let us know if you need more info.
Best regards,
IsmaelHi,
Yes, that should be possible. Please include this css code:
#top .phone-info .avia-button .avia_iconbox_title { font-size: 12px; }
Best regards,
IsmaelHi,
Thank you for the update. Unfortunately, it’s not possible to disable the fade effect for the testimonial slider because this would also disable the slide transition. You may need to replace it with a content slider instead.
Best regards,
IsmaelHi,
Thank you for the info. Did you change the login URL? We tried using the default login or admin URL but they just redirect to maintenance page. Please include the custom login info in the private field.
Best regards,
IsmaelApril 14, 2025 at 3:28 am in reply to: Displaying 2 different custom built galleries inside Enfold #1481289Hey keeslamper,
Thank you for the inquiry.
How do you retrieve the $woning->fotos? It’s not shown in the provided code. The site is also in maintenance mode, so we’re not able to check the galleries. Please provide the login info in the private field and further elaborate on how the gallery images are being retrieved.
For this kind of modification, we also recommend hiring a freelance developer or try to contact our partner, Codeable.
— https://kriesi.at/contact/customization
Best regards,
IsmaelApril 14, 2025 at 3:23 am in reply to: Adding product grid element to WooCommerce product pages #1481288Hi,
Thank you for the info.
You will need to switch to the Advanced Layout Builder to use the Product Grid element on the product page, or use the element’s shortcode in one of the template hooks.
Example:
add_action( 'woocommerce_after_single_product_tabs', 'av_woocommerce_after_single_product_tabs_mod', 100 ); function av_woocommerce_after_single_product_tabs_mod() { echo do_shortcode("[av_productgrid select_type='' categories='' link='' term_rel='' wc_prod_visible='' wc_prod_hidden='' wc_prod_featured='' wc_prod_sale='' wc_prod_additional_filter='' sort='dropdown' prod_order='' offset='0' page_element_filter='' columns='3' image_size='shop_catalog' items='9' paginate='yes' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' alb_description='' id='' custom_class='' template_class='' element_template='' one_element_template='' show_locked_options_fakeArg='' av_uid='' sc_version='1.0'] "); }
For this type of modification, we recommend hiring a freelance developer or contact Codeable.
— https://kriesi.at/contact/customization
Best regards,
IsmaelHey Sandra,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. The site is also on maintenance mode. Please provide the login info in the private field.
Best regards,
IsmaelHey wesdorman,
Thank you for the inquiry.
There might be a slight difference between the desktop and mobile views due to their aspect ratios, especially with the background image. For the font size, make sure to define a specific size for smaller screens. We tried logging into the site, but it’s asking for .htaccess authentication. Please provide the login info in the private field.
Best regards,
IsmaelHi,
Great! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey djtroymichael,
Thank you for the inquiry.
Would you mind providing a screenshot of the notifications and the list of pages showing 404 errors? Also, please go to Enfold > Theme Options > Custom Error 404 Page and make sure that no page is currently selected.
Best regards,
IsmaelHi,
Glad to know it’s working correctly now. As for the button, it seems to be translated correctly on our end.
Best regards,
IsmaelHi,
Thank you for the update.
To disable the animation of the slider caption, please include this css code:
.avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title, .avia_transform .av_slideshow_full .active-slide .avia-caption-content, .avia_transform .av_fullscreen .active-slide .avia-caption-content { visibility: visible; animation: none; }
Best regards,
IsmaelHey satucker,
Thank you for the inquiry.
Looks like you have already managed to make this work. If not, please edit the button, set the Content > Link Settings or File Download > Button Type to File Download Button, and then Select a File for Download. Let us know how it goes.
Best regards,
IsmaelHi,
That is the default behavior of the pagination, which is why it’s recommended to place all post elements at the very top of the page. If you need the document to scroll to the appropriate section on load, you can try this modification.
Best regards,
IsmaelHi,
We may need access to the dashboard to properly check the issue. Please create a site backup, confirm that a restore point has been created, and then provide the login details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
You can disable the hover animation of the Image element by adjusting the Advanced > Animation > Image Hover Effect settings. You can also add the following css code but it will affect all Image elements in the site.
.avia-image-container .avia_image, .avia-image-container .avia-image-overlay-wrap { transition: none; } .avia-image-container.av-hover-grow .avia-image-overlay-wrap:hover { transform: none; }
Best regards,
IsmaelHey limedrop,
Thank you for the inquiry.
Edit the Grid Row element, go to the Advanced > Developer Settings, then place the value “av-layout-grid-overflow” in the Custom CSS Class field. In the Enfold > General Styling > Quick CSS field, add this css code to put the grid above the layer slider:
#top #wrap_all .av-layout-grid-overflow { z-index: 1000; }
Best regards,
IsmaelApril 11, 2025 at 4:43 am in reply to: Significant Site Slowdown Caused by avia_deep_decode Function in Enfold Theme – #1481167Hey ericdkolb,
Thank you for your inquiry. This has been answered in the previous thread: https://kriesi.at/support/topic/significant-site-slowdown-caused-by-avia_deep_decode-function-in-enfold-theme/#post-1480265
Best regards,
IsmaelApril 11, 2025 at 4:39 am in reply to: Adding product grid element to WooCommerce product pages #1481166Hey AndrewRice71,
Thank you for the inquiry.
It is possible to use the Advanced Layout Builder for the default shop page, but it is not recommended, as it may limit the default functionality and may be incompatible with third-party extensions. If you want to proceed, please refer to the documentation below.
— https://kriesi.at/documentation/enfold/woocommerce-shop/#custom-woocommerce-shop-overview-with-advanced-layout-editor
Best regards,
IsmaelHey jessicaventuri,
Thank you for the inquiry.
The site contains a very old version (5.6.3) of the theme. You have to download the latest version (7.0.1) from your Themeforest account, then update the theme manually via FTP. Please refer to the documentation below.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHi,
Thank you for the info.
The required font files are not loading. Did you modify any template files in the child theme? Please make sure those files are also updated to the latest version. We tried to check but the Appearance > Theme File Editor is missing. If you can provide the FTP details, we’ll check the issue further.
Best regards,
IsmaelHey Marieke Braamskamp,
Thank you for the inquiry.
We can’t reproduce the issue on our end. Would you mind providing a screenshot? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.
Best regards,
Ismael -
AuthorPosts