Forum Replies Created
-
AuthorPosts
-
April 2, 2023 at 1:59 pm in reply to: How to use lightbox for videos/images as media element in Accordion-toggle? #1403280
Hey MyWin,
To add an image in the accordion toggle that will open in a lightbox, use the add media button above the text field

choose your image and in the ATTACHMENT DISPLAY SETTINGS choose Link to media file

now clicking on the image will open it in a lightbox

To open a video in a lightbox, choose an image as your video thumbnail and in the ATTACHMENT DISPLAY SETTINGS choose Link to Custom URL and add your link, if using YouTube use this format:https://www.youtube.com/watch?v=G0k3kH
now clicking on the image will open the video in a lightbox.Best regards,
MikeHey Monika,
Thanks for your patience and the link to your site please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (min-width: 768px) and (max-width: 989px){ #header_main .logo svg { width: 120px; } }After applying the css, please 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,
MikeHey cambium.digital,
Thank you for your patience, the file to edit to add the categories to the Latest News widget is:
/wp-content/themes/enfold/framework/php/widgets/widget-classes/class-avia-newsbox.php
on line 219 (v5.5) look for:
echo '<strong class="news-headline">' . get_the_title();
below this add:echo '<br />'; $cats = get_the_category(); foreach ( $cats as $cat ) { echo '<span class = "widget_latest_category">'.$cat->cat_name.'</span> '; }

If you don’t want the date to show place two slashes before the lineecho '<span class="news-time">' . get_the_time( $time_format ) . '</span>';like this://echo '<span class="news-time">' . get_the_time( $time_format ) . '</span>';
Typically files in the /framework/ directory can not be added to a child theme and copying the function directly to the child theme functions.php was not successful.Best regards,
MikeHi,
Try changing the di in the function that gets the labeladd_action( 'woocommerce_single_product_summary', 'product_attribute_dimensions', 25 ); function product_attribute_dimensions(){ global $product; $taxonomies = array('pa_authors'); foreach($taxonomies as $taxonomy){ $value = $product->get_attribute( $taxonomy ); if ( $value ) { $label = get_taxonomy( $taxonomy )->labels->singular_name; echo '<p>' di ': ' . $value . '</p>'; } } }Best regards,
MikeHi,
Thanks for the screenshot and the link to your site, please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #main .avia_ajax_form .text_input, #top #main .avia_ajax_form .select, #top #main .avia_ajax_form .text_area { border-radius: 0; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Your developer can examine the file at \enfold\includes\related-posts.php it uses tags to show the related posts.
Another option would be to create your tags specific to the items you want to show.Best regards,
MikeApril 1, 2023 at 9:17 pm in reply to: Problem with Magnific-Popup – Popup links to another popup #1403248Hi,
Thanks for the screenshots please include a link to your page so we can examine, an admin login in the Private Content area may also be helpful.Best regards,
MikeHey envisageiam,
Thank you for the link to your site I see that you are using two sliders and two sections below them, one set for mobile and one set for desktop please try arranging the elements so they are like this:
mobile slider
mobile section
desktop slider
desktop section
I believe this will correct the z-index issue.Best regards,
MikeApril 1, 2023 at 8:52 pm in reply to: Fullwidth Submenu in standard Woocommerce single product page #1403244Hey Illingco,
Thanks for your patience and the link to your site, as I understand your question you would like to add a full-width sub-menu element to all of your single product pages.
First you will need the shortcode for the full-width sub-menu element, to get this Enable the Avia Layout Builder Debugger and on a new page use the Advanced Layout Builder to create your full-width sub-menu element, then in the debugger field below the ABL you will see the shortcode, save this to a plain text editor and discard the page. Then remove any line breaks in the shortcode and add it to this function in your child theme functions.php:add_action('ava_after_main_container', 'ava_after_main_title_mod'); function ava_after_main_title_mod() { if(is_product()) { echo do_shortcode("[your submenu shortcode here]"); } }Best regards,
MikeHey envisageiam,
Thanks for your patience and the link to your site, do you mean the space under “Now Hiring” and before your white footer? How much space do you want there?
Please include an admin login in the Private Content area so we can examine.Best regards,
MikeHey jaimemerz,
Please include a link to your page and an admin login so we can examine.Best regards,
MikeHey forestrygy,
Thank you for the link to your site and the screenshots but I’m not sure which page this is for, please include a direct link to the page.
I tested some random elements on random pages and all seemed to work correctly.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,
MikeHey Oriano,
Thanks for the screenshots, the attribute Autore is set in your WooCommerce ▸ Attributes please see this post

*Note that the screenshot says Author but this is where you added Autore on your site.
so you need to change this to your new text diBest regards,
MikeHey spee65,
Thank you for your patience to change the archive pages to two columns please try going to \wp-content\themes\enfold\archive.php on line 61 look for ‘columns’ => 3; and change to 2 (Enfold v5.5)

To add a heading go to WordPress ▸ Posts ▸ Categories ▸ Edit Category ▸ Description and add your heading, or go to Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs and choose to show the header title.Best regards,
MikeHi,
Thanks for your patience and the link to your site, I see your page includes product slider elements and I assume that you want to show “add to cart” below each item.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_action( 'after_setup_theme', function() { add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_add_to_cart', 12 ); }, 999);Best regards,
MikeApril 1, 2023 at 6:26 pm in reply to: Change From Slight Opacity on Linked Image Hover to Black & White Image #1403227Hey Taber,
Thanks for your patience and the link to your site, please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top a.avia_image:hover img { filter: grayscale(100%); -webkit-filter: grayscale(100%); } #top .avia_transform a:hover .image-overlay { opacity: 0!important; } #top .all_colors .image-overlay { background-color: transparent !important; }After applying the css, please clear your browser cache and check.
If you only want this effect on this page please add the page ID class to the css .page-id-15718Best 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,
MikeHey Monika,
Thank you for your patience, please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top.page-id-883 #av_section_3.hintergrund-05 { z-index: 2; position: relative; margin-top: -200px; background-image: unset; } #top.page-id-883 #av_section_3.hintergrund-05.main_color { background: transparent; } .html_stretched #top.page-id-883 #wrap_all { background-image: url(https://boxstudio-andres.de/wp-content/uploads/2023/02/kachel-1.jpg); background-repeat: repeat; background-position: left top; position: relative; overflow: auto; }Please see the screenshot in the Private Content area.
Best regards,
MikeHi,
Thanks for sharing the code snippet but I don’t see a way to use this with the Enfold elements, I have opened a feature request for this option, but I’m not sure when it may be available, but I will reply back when I hear from the Dev Team, Thank you for your patience.Best regards,
MikeHi,
Thanks for the screenshots, try this css instead:#top #wrap_all #av-burger-menu-ul .current_page_item > a { background-color: #eee; }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.
If this doesn’t help please include the url to your site so we can take a closer look.Best regards,
MikeHi,
Thank you for your patience, I toggled the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and now the buttons sponsors & press jump to the IDs on the homepage quickly, please clear your browser cache and check.Best regards,
MikeApril 1, 2023 at 4:17 pm in reply to: Updated to latest version of enfold and it has Broken my full screen slider #1403217Hi,
I believe that you are referring to the two buttons My A-Wise and Call Us stacking on the mobile version of the test site, but today the test site is not loading please check.
Since the live site is working correctly and it is using Enfold 5.4.1, compare the settings and the custom css to find the difference.Best regards,
MikeHi,
Thanks for the feedback I have submitted this to the Dev Team for their review. Please leave the staging site access active for them to test and reply here, otherwise, I will reply when I hear back. Thank you for your patience.Best regards,
MikeHi,
I see that your post Ein Step-by-Step guide was created with the Block Editor, you can either open the page or post you want to copy, click on the three dots at the top of the post, than then press “Copy all content” in the Tools section. Then create a new post or page, and paste using “Ctrl+V” or right-click on an empty page field and select “Paste.” Or try the Yoast Duplicate Post plugin. As far as I know the Block Editor doesn’t have a built-in option to create templates.
For your news page masonry items, the four items you want to only show in the first masonry add the category “first” to these items and the in the masonry element choose the category “first” then in the second masonry element choose the other categories you want to show but not the category “first”.Best regards,
MikeApril 1, 2023 at 2:58 pm in reply to: Can I load a new Enfold Theme onto WordPress 5.5 on a Server using php 5.6.30 #1403210Hi,
For the pagination your site rayball.co.uk/blog/ the site is using Enfold v3.3.2 with WordPress v5.1.15, this version of Enfold doesn’t support WP v5+ and needs to be updated, thus the cause for the pagination issue.
The four sites you listed above range in versions between v3.3.2 & 4.2.6 all of these will need to be manually updated following the steps I posted earlier.
I see that you have posted that you purchased a new license please register for the support forum here and open a new support thread here.Best regards,
MikeHi,
Thanks for the feedback, I didn’t realize that your footer page is actually a layerslider and it’s style is overriding the WPML style so you will need to use some additional css, as I understand what needs to be changed from the current style, the font needs to be #007ec3 and the border needs to be removed, so in that case Please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#lang_sel_footer .icl_lang_sel_native { color: #007ec3; } #lang_sel_footer.wpml-ls-legacy-list-horizontal { border: none; }After applying the css, please clear your browser cache and check.
Best regards,
Mike -
AuthorPosts


