Forum Replies Created

Viewing 30 posts - 151 through 180 (of 34,937 total)
  • Author
    Posts
  • in reply to: Easy slider description box #1489215

    Hi,
    The pages that I check show that the testimonials only have two items, I tested the following script by injecting it in the browser and it worked, but with only two items it’s like flipping a coin, you still might get three of the same in a row. Try adding four more testimonials and then test, you should see a better random outcome.

    document.addEventListener("DOMContentLoaded", function () {
      var rows = document.querySelectorAll(".avia-testimonial-row");
    
      rows.forEach(function (row) {
        var testimonials = Array.from(row.querySelectorAll(".avia-testimonial"));
        if (testimonials.length <= 1) return;
    
        for (let i = testimonials.length - 1; i > 0; i--) {
          let j = Math.floor(Math.random() * (i + 1));
          [testimonials[i], testimonials[j]] = [testimonials[j], testimonials[i]];
        }
    
        testimonials.forEach(function (t) {
          row.appendChild(t);
        });
      });
    });
    

    Best regards,
    Mike

    in reply to: Full Width Easy Slider crashes website #1489214

    Hey Swarez,
    I see that you have a modified slideshow.php in your child theme, when I activate the parent Enfold v7.1.1 the test page loads correctly with the slider and all other elements. Try removing your custom slideshow.php from your child theme.

    Best regards,
    Mike

    in reply to: Masonry Gallery 8 categories maximum? #1489196

    Hey aintzerga,
    It looks like you have limited the number of entries shown to 12, so the sort function will only show the categories for those 12 entries. You will so note that if you have only one item within the 12 for a certain category, clicking the sort for that category will only show the one item that was loaded, not all items in that category.
    Your first option is to change the published dates to ensure that at least one item from each category will show.
    Your second option is to increase the number of items shown until at least one item from each category is shown, perhaps 24 instead of 12.

    Best regards,
    Mike

    in reply to: wordpress site and theme update #1489070

    Hey Alejo Rotemberg,
    We expect no issues with updating, but recommend creating a full backup using your webhost backup tool, not a plugin unless you have specific knowledge with it and it has worked for you in the past. Often backup plugins fail when restoring.
    Also note that if you are not using a child theme and the core files such as functions.php were modified those customizations will be lost, so backup any customizations.
    Also note that if you are using a child theme and you have a copy of the header.php or footer.php in the child theme, please remove these as these files have changed and will cause an error.
    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
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    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
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Cancellation Plug-in Pop-up not working #1489069

    Hi,
    It seems that the htaccess password is not working for me, tried many times to ensure that I copied it correctly, please check.

    Best regards,
    Mike

    in reply to: Two Widgets in Header and To Flex them with Logo on Left #1489033

    Hey condonp,
    Thanks for the mockup image:
    mockup
    it looks like you are close to achieving this, but I only see one widget in the header:
    Screen Shot 2025-09-07 at 7.19.10 AM
    to change the color of your widget and move the menu try adding this css:

    .responsive #top #header #header_main .inner-container .widget>div {
        background: rgb(77, 172, 56);
    }
    .topconatiner {
        align-items: center;
    }
    .responsive #top #header #header_main .inner-container .main_menu {
        justify-content: right;
    }
    .responsive #top #header #header_main .inner-container .main_menu {
    	margin-right: 6%;
    }

    for this:
    Screen Shot 2025-09-07 at 7.22.23 AM
    The snippet from the documentation that you are trying to follow looks nothing like your mockup.
    Screen Shot 2025-09-07 at 7.25.29 AM

    Best regards,
    Mike

    in reply to: PreSales Question #1489032

    Hey Steve Webgecko,
    Thank you for your patience, changing the colors on hover can be done with custom css, and a popup can be added via jQuery, but the popup will be in the center of the screen and not over the box that is clicked, like on your page. I recommend copying the bootstrap element HTML with the css & jQuery that makes this popup work and add it to a code block element on your Enfold page to duplicate this.
    Changing your blog images to B&W until hover can be done with a gray scale css filter, a icon could be added on hover but it would also require custom css.
    When you are ready to try this please ensure that you have an active support license and login to the forum and post your question with a admin login to your test page. The pre sales contact form is not appropriate for support.

    Best regards,
    Mike

    in reply to: Cancellation Plug-in Pop-up not working #1489031

    Hey cynkindred,
    Thanks for your patience, sometimes popup plugins have a conflict with the theme’s popup code. You can try disabling the theme popup at Enfold Theme Options ▸ Lightbox Modal Window and see if that helps.
    Otherwise please link to your page so we can examine.

    Best regards,
    Mike

    in reply to: portfolio-grid menu images #1489030

    Hi,
    Glad to hear that you have this sorted out, 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,
    Mike

    in reply to: How to put the image caption below the image #1489029

    Hey oburlin,
    For the image caption, you will note in the element that it’s placement is in the overlay:
    Screen Shot 2025-09-06 at 7.14.36 AM
    To move to the lower part of the image, I see that you have added this custom css:

    .av-image-caption-overlay {
        background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
        bottom: 0px !important;
        color: black !important;
        height: auto !important;
        left: 50% !important;
        transform: translate(-50%) !important;
        width: auto !important;
    }

    Resulting in this:
    Screen Shot 2025-09-06 at 7.18.09 AM
    To make it one line try removing width: auto !important; from your css.
    Then you would see:
    Screen Shot 2025-09-06 at 7.20.28 AM
    If you want the caption below the image, try this css instead:

    #top .av-image-caption-overlay {
        height: auto;
        width: 100%;
        left: 0px;
        bottom: 0px;
        transform: translateY(100%);
    }
    #top .av-overlay-hover-deactivate .avia-image-overlay-wrap:hover .av-caption-image-overlay-bg {
        opacity: 0.4 !important;
    }
    #top .avia-image-container .av-caption-image-overlay-bg {
        opacity: 0.4;
        background-color: transparent;
    }
    #top .avia-image-container .av-image-caption-overlay-center {
        color: #000;
    }

    resulting in this:
    Screen Shot 2025-09-06 at 7.31.39 AM

    Best regards,
    Mike

    in reply to: Major Theme Update #1489028

    Hi,
    It sounds like a server cashing issue such as a object-oriented cache, I’m not sure if you can disable it for just one site. You can try disabling the theme cache at Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and then enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files If you are using a CDN like Cloudflare it may also cause this, I think there is a setting for this in JetPack, if you are using this, or perhaps it is enabled on your server.
    Most all of the sites that I examine update instantly with the theme cache, including my test site. Only twice have I seen something like this and it was related to CDN or object-oriented cache.

    Best regards,
    Mike

    in reply to: new social icon bluesky #1489022

    Hi,
    Glad Ismael & 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,
    Mike

    in reply to: new social icon bluesky #1489021

    Hi,
    Glad Ismael & 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,
    Mike

    in reply to: Major Theme Update #1489020

    Hey mshane,
    Envato (Theme Forest) stopped using the API a few years ago, now they use a Token, but you can not use the Token with your version so you will need to manually update, then set up the Token and next time you can update in the theme panel. We expect no issues with updating, but recommend creating a full backup using your webhost backup tool, not a plugin unless you have specific knowledge with it and it has worked for you in the past. Often backup plugins fail when restoring.
    Also note that if you are not using a child theme and the core files such as functions.php were modified those customizations will be lost, so backup any customizations.
    Also note that if you are using a child theme and you have a copy of the header.php or footer.php in the child theme, please remove these as these files have changed and will cause an error.
    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
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    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
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Enfold updates #1489019

    Hey Judy Curtis,
    Yes you will have lifetime updates in your Theme Forest account, if you have already set up a Token on your site and have received an update in the theme panel then you will also get updates that way.

    Best regards,
    Mike

    in reply to: Enfold creating images larger than the orginal #1488982

    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,
    Mike

    in reply to: Enfold creating images larger than the orginal #1488958

    Hi,
    Thanks for your patience, the theme does not have a built-in setting to directly control the quality or compression of WebP images during the generation process, the avf_jpeg_quality filter is designed for JPEG images and does not apply to WebP. Typically is handled by WordPress and the PHP image extension on your server, ie: ImageMagick or GD, which is more common. If you can switch to ImageMagick on your server you can follow this documentation to adjust it.
    Otherwise, I recommend using a plugin to compress WebP files further such as Imagify or WebP Express. I have not tested these, there may be others.

    Best regards,
    Mike

    in reply to: Sidebar issue with WooCommerce and Enfold #1488957

    Hi,
    Glad to hear that you have this sorted out, 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,
    Mike

    in reply to: How to Edit Footer with enfold #1488839

    Hi,
    To open a new topic go to the forum, login, and click the big blue button at the top of the page.
    Screen Shot 2025-09-01 at 3.11.29 PM
    Or follow this link: https://kriesi.at/support/forum/enfold/#new-post

    Best regards,
    Mike

    Hi,
    Glad Ismael could 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,
    Mike

    in reply to: title should appear centered next to the icon #1488810

    Hi,
    Glad Ismael could 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,
    Mike

    in reply to: Enfold creating images larger than the orginal #1488786

    Hey waveseven,
    This is due to the default image compression settings, Enfold unpacks the original file and generates new thumbnail sizes without applying compression, resulting in larger file sizes, especially for larger dimensions like “featured”, “featured_large”, and “extra_large”. This occurs because the theme sets the default JPEG quality to 100, which is higher than the typical WordPress default of 80, and the generated files are not compressed during the resizing process.
    To change the compression of new thumbnail sizes, add this code to the end of your child theme functions.php file in Appearance ▸ Editor and adjust to suit.

    add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1); 
    add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1); 
    function avf_set_quality_mod($quality) { $quality = 60; return $quality;}

    For thumbnails already created you will need to regenerate the thumbnails

    Best regards,
    Mike

    in reply to: Custom SVG Divider #1488785

    Hi,
    This is correct.

    Best regards,
    Mike

    in reply to: How to Edit Footer with enfold #1488782

    Hey oburlin,
    In the footer the text is in Widgets:
    Screen Shot 2025 08 31 at 6.54.07 AM
    you can edit these from the Widget panel:
    Screen Shot 2025 08 31 at 6.57.00 AM
    Note that the theme has some default demo text that shows if no Widgets are added to the footer columns, so if you don’t see any widgets just add some from the left side of the panel, typically the text widget works well:
    Screen Shot 2025 08 31 at 7.04.23 AM
    These drag and drop into place.
    In the Socket the text “Enfold WordPress Theme by Kriesi” can be removed by adding this shortcode into the Enfold Theme Options ▸ Footer ▸ Copyright field: [nolink] and add whatever text you want to see there.
    Screen Shot 2025 08 31 at 7.10.03 AM
    Here is a link to our footer documentation.

    Best regards,
    Mike

    in reply to: Social media icon sizes and page placement #1488778

    Hi,
    The Social Buttons element (share buttons) can be added to pages and works for me.

    Best regards,
    Mike

    in reply to: Fine tuning CF7 for Iphone – IOS #1488777

    Hi,
    When I check on Android and emulate in the browser the width looks good, I don’t have an iPhone and I think the others also use Android.
    Do you want us to leave this open to see if we can find an iPhone, or shall we close this thread?

    Best regards,
    Mike

    in reply to: Custom SVG Divider #1488776

    Hi,
    In my tests, the name of the array must be in lower case, and the path must be added if you are not using the attachment ID
    for example:

    function custom_avf_custom_svg_shapes( array $custom_shapes )
    {
    	$custom_shapes = array(
    				
    		'mountain-test'	=> array(
    						'key'			=> 'Mountain-Test',
    						'title'			=> __( 'Mountain Test', 'avia_framework' ),
    						'has_flip'		=> true,
    						'has_width'		=> true,
    						'filename'		=> 'Mountain-Test',
    						'path'			=> './wp-content/uploads/avia_custom_shapes/'
    					//	'attachment'	=> '4650'
    									)
    						);
    	
    	return $custom_shapes;
    }
    
    add_filter( 'avf_custom_svg_shapes', 'custom_avf_custom_svg_shapes', 10, 1 );

    Screen Shot 2025 08 30 at 10.23.30 AM

    I would use the media library as Guenni007 suggests, as it would be easier to manage. The documentation also points to this.

    Best regards,
    Mike

    in reply to: Line Breaks in the Contact Form EMAIL #1488775

    Hey tebitron,
    Try adding the “Element: Empty Line” Form Element set to “Print Email Only” where you want a space.
    Ensure that you are using Enfold v7.1.2

    Best regards,
    Mike

    in reply to: Problem with timeline #1488774

    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,
    Mike

    in reply to: Sidebar issue with WooCommerce and Enfold #1488773

    Hey etherrh,
    Your two pages look like they are created differently, the Shop page with the sidebar at the bottom looks like it was created with a woof_products shortcode plugin. While the page with the sidebar uses a column with the theme product slider.
    If you customize the Shop page any full width elements will push the sidebar to the bottom of the page. To achieve a layout like our Shop Demo you don’t need to add any elements or edit the shop page, it is automatic.

    Best regards,
    Mike

Viewing 30 posts - 151 through 180 (of 34,937 total)