Forum Replies Created

Viewing 30 posts - 2,971 through 3,000 (of 66,194 total)
  • Author
    Posts
  • in reply to: Sometime the page just not right #1466180

    Hi,

    Thank you for the update.

    As mentioned above, this might be a feature of a plugin or your hosting provider. Please try temporarily deactivating the plugins, or provide the login details in the private field so we can check the settings.

    Best regards,
    Ismael

    in reply to: Remove the fade effect on fold/unfold element #1466179

    Hey Konrad,

    Thank you for the inquiry.

    Please add this css code to disable the fold/unfold fade transition:

    .avia-fold-unfold-section .av-fold-unfold-container,
    .avia-fold-unfold-section .av-fold-unfold-container::after {
      transition: none !important;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.

    Best regards,
    Ismael

    in reply to: Icon Circle settings and responsive #1466178

    Hey joguitar,

    Thank you for the inquiry.

    To fix the alignment, please replace the css with the following code:

    .responsive #top .avia-icon-circles-icon {
        height: 120px;
        width: 120px;
        line-height: 120px;
        font-size: 75px;
        margin: -60px;
    }

    Best regards,
    Ismael

    in reply to: Update from enfold theme #1466177

    Hey Tiziano,

    Thank you for the inquiry.

    If you don’t have access to the old account or token, you may need to purchase another license using a different ThemeForest account and generate a new token. However, please note that automatic updates will no longer work with the current version (4.7.5) because it’s quite old. You’ll need to update the theme manually via FTP. Please check the link below for more info.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: comment box missing in single post created by ALB #1466176

    Hi,

    Thank you for the update.

    The theme uses a different template when the Advanced Layout Builder is active, which is essentially a blank canvas. You’ll need to manually add every element to the page. If you want the Comments section or any default post elements to display automatically, you’ll need to switch to the default editor. The Comments element can be found under the ALB > Content Elements tab.

    Best regards,
    Ismael

    in reply to: Widget dissapearing in mobile #1466175

    Hey dweddell,

    Thank you for the inquiry.

    The search and social icons are hidden in mobile view by default due to the lack of space in the header. If you want to display them again, you can try this css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #header .social_bookmarks {
        display: block !important;
      }
    
      #top #header .av-main-nav>#menu-item-search {
        display: block !important;
      }
    }

    Best regards,
    Ismael

    in reply to: Google Analytics Cookies Loading Before User Consent #1466173

    Hi,

    Unfortunately, we haven’t used the plugin before, so we’re not sure if there is a privacy plugin that can cover or control the scripts it loads. Please contact the plugin authors for more info.

    Best regards,
    Ismael

    Hey Bruno,

    Thank you for the inquiry.

    When translating the page, you should not check the “Duplicate” option (https://imgbb.com/kyWJbCX) and instead use WPML Translation Editor. Have you tried translating without duplicating the page?

    Best regards,
    Ismael

    in reply to: all portfolio’s on one page #1466171

    Hi,

    Mouse over on the images, Title and introduction text. Can this be done within Enfold??

    This is possible but it will require a bit of modifications such as assigning custom fields to the portfolio items. If you want to continue, please follow these steps:

    1.) Add this code in the functions.php file to register a new attribute the portfolio image which uses the value of the av_portfolio_hover_image custom field.

    function avf_add_custom_field_as_hover_image($attrs, $entry) {
        $hover_image_url = get_post_meta($entry->ID, 'av_portfolio_hover_image', true);
    
        if (!empty($hover_image_url)) {
            $attrs['data-hover-image'] = esc_url($hover_image_url);
        }
    
        return $attrs;
    }
    add_filter('avf_portfolio_image_attrs', 'avf_add_custom_field_as_hover_image', 10, 2);
    

    2.) Then add this script to create the hover effect:

    function ava_custom_script_hover_image() {
        ?>
        <script>
            (function ($) {
                function hoverImageChange() {
                    $('.grid-sort-container .grid-entry img').each(function () {
                        var $img = $(this);
                        var originalSrc = $img.attr('src');
                        var hoverImage = $img.data('hover-image');
    
                        if (hoverImage) {
                            $img.hover(
                                function () {
                                    $img.stop().fadeOut(200, function () {
                                        $img.attr('src', hoverImage).fadeIn(200);
                                    });
                                },
                                function () {
                                    $img.stop().fadeOut(200, function () {
                                        $img.attr('src', originalSrc).fadeIn(200);
                                    });
                                }
                            );
                        }
                    });
                }
    
                $(document).ready(function () {
                    hoverImageChange();
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_hover_image');
    

    3.) Edit any portfolio items, apply the av_portfolio_hover_image custom field and place the URL of the hover image.

    4.) Add this css code to disable the default image overlay

    .grid-entry a .image-overlay {
      display: none !important;
    }
    

    Best regards,
    Ismael

    in reply to: Randomize testimonials #1466170

    Hi,

    You’re welcome! Please let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Randomize testimonials #1466121

    Hi,

    Thank you for the update.

    We edited the functions.php file and adjusted the script a bit. Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: Enfold como actualizar el thema #1466120

    Hey josepons,

    Thank you for the inquiry.

    What is the current version of the theme? Since it has been 8 years since the last update, you may need to download the latest version of the theme from your ThemeForest account and update it manually via S/FTP. We recommend performing the update on a staging environment first before applying it to the live site. And make sure to create a restore point or a backup. For more info about updating via FTP, please check the documentation below.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    Hey lucybb2,

    Thank you for the inquiry.

    We are currently investigating the issue and will likely release a fix in the next patch. Please note that this vulnerability is categorized as low severity, so there’s no immediate cause for concern. Rest assured, we will address it as soon as possible.

    Best regards,
    Ismael

    in reply to: Some issues with ajax portfolio #1466118

    Hi,

    Could you create a test page and reproduce the issue on a dummy portfolio item with a unique category? Add the Portfolio Grid to the test page, then select the new category. Please make sure to include the shortcode videos in the dummy item.

    Best regards,
    Ismael

    in reply to: Bug: Cannot turn off sonar animation on ALB icon element #1466117

    Hi,

    Hope everything is going well there! We’re glad to hear that the solution resolved the issue and that the new features are helping with your projects. If you have any more questions, please feel free to ask.

    Have a nice day.

    Best regards,
    Ismael

    Hey boboroshi,

    Thank you for the inquiry.

    The link redirects to a 404 page. Is it supposed to redirect to an actual post? Are you using a plugin for this?

    Best regards,
    Ismael

    in reply to: Google Analytics Cookies Loading Before User Consent #1466114

    Hi,

    Thank you for the update.

    Looks like you’ve installed the GTM4WP – A Google Tag Manager (GTM) plugin for WordPress. Please note that the tracking script added by this plugin is not covered by the theme’s privacy options. You may need to use an additional plugin or create a custom script.

    Best regards,
    Ismael

    in reply to: WooCommerce Shortcode does not work correctly #1466113

    Hi,

    Anyway, your CSS code does not change anything,

    Have you tried toggling or temporarily disabling the Enfold > Performance > File Compression settings?

    To hide the sorting dropdown, please add this css code:

    ul.sort-param.sort-param-count {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Some issues with ajax portfolio #1466112

    Hi,

    Thank you for the update.

    Looks like the page is now displaying correctly, and there are still two videos in the Icaros portfolio item. Did you figure out the issue?

    Best regards,
    Ismael

    Hi,

    Would you mind providing a screenshot of the effect that you’d like to copy? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: comment box missing in single post created by ALB #1466110

    Hi,

    Thank you for the inquiry.

    When the Advanced Layout Builder is active, make sure to add the comments section using the Comments element. Please let us know if this resolves the issue.

    Best regards,
    Ismael

    in reply to: Some issues with ajax portfolio #1466083

    Hi,

    So it seems that the only problem is the Enfold video shortcode within the ajax portfolio.

    We are not yet sure why it causes the layout to break. In the meantime, please try embedding the video using the iframe or the actual embed code. You can also set the video URL in the portfolio item’s Additional Portfolio Settings > Overwrite Portfolio Link setting > Link portfolio item to external URL field. This should open the video in a lightbox when the portfolio item is clicked.

    Best regards,
    Ismael

    in reply to: Google Analytics Cookies Loading Before User Consent #1466082

    Hi,

    Thank you for the inquiry.

    The Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behaviour is set to the second option, so all external services, including the tracking script, will still load even without user consent. To block it, you need to set the Default Cookie Behaviour to the third or fourth option. Please make sure to purge the cache and empty the local storage after adjusting the settings.

    Best regards,
    Ismael

    in reply to: Divs in textblock module breaks #1466081

    Hi,

    There are nested < strong > tags in the html, and there might be other invalid tags as well.

    < strong >Klima und Heizung< strong >< strong >< strong >
    < / strong >< / strong>< / strong >< / strong >
    

    We edited the html a bit and removed the invalid tags: https://pastebin.com/UkWBzJhS

    Best regards,
    Ismael

    in reply to: Randomize testimonials #1466080

    Hey Chris,

    Thank you for the inquiry.

    Are you using the slider format of the Testimonial element? If yes, then you can try this script in the functions.php file:

    function ava_custom_script_randomize_testi()
    {
        ?>
        <script>
            (function ($)
            {
                function g()
                {
                    var $testimonialRow = $('.avia-testimonial-row');
                    var $testimonials = $testimonialRow.find('.avia-testimonial');
                    $testimonials.sort(function () {
                        return 0.5 - Math.random();
                    });
                    $testimonialRow.empty().append($testimonials);
                }
    
                $(document).ready(function ()
                {
                    g();
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_randomize_testi');

    Best regards,
    Ismael

    in reply to: Order Notes in checkout page is hidden by default #1466079

    Hi,

    Thank you for the clarification.

    We adjusted the edited the functions.php file and adjusted the script a bit. Please make sure to purge the cache before checking.

    function auto_click_order_notes_checkbox() {
        ?>
        <script type="text/javascript">
            jQuery(window).on('load', function() {
                var orderNoteCheckbox = jQuery('.woocommerce-checkout .wc-block-checkout__add-note #checkbox-control-1');
                if (orderNoteCheckbox.length && !orderNoteCheckbox.is(':checked')) {
                    orderNoteCheckbox.click();
                }
            });
        </script>
        <?php
    }
    add_action('wp_footer', 'auto_click_order_notes_checkbox');
    

    Best regards,
    Ismael

    Hey meganp46,

    Thank you for the poem.

    If the script is meant to automatically click a specific sort button, then it’s perfectly fine. Let us know if you need further assistance.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Please add this filter in the functions.php file:

    function avf_add_category_class_to_cart_link($link, $product) {
        $categories = get_the_terms($product->get_id(), 'product_cat');
    
        $category_class = '';
        if ($categories && !is_wp_error($categories)) {
            $category_class = ' product_cat-' . esc_attr($categories[0]->slug);
        }
    
        $link = str_replace('class="av-catalogue-item', 'class="av-catalogue-item' . $category_class, $link);
    
        return $link;
    }
    add_filter('woocommerce_loop_add_to_cart_link', 'avf_add_category_class_to_cart_link', 10, 2);
    

    Best regards,
    Ismael

    in reply to: blog posts – pagination at top of page #1466023

    Hey Jason,

    Thank you for the inquiry.

    You can add this script to the functions.php file to move the pagination above the posts:

    function ava_custom_script_here()
    {
        ?>
        <script>
            (function ($)
            {
                function g()
                {
                    var pagination = $('.pagination-wrap.pagination-slider');
                    var contentSlider = $('.avia-content-slider-inner');
                    
                    if (pagination.length && contentSlider.length) {
                        pagination.insertBefore(contentSlider);
                    }
                }
    
                $(document).ready(function ()
                {
                    g();
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_here');
    

    Best regards,
    Ismael

    in reply to: Portfolio Grid | Custom Hover Effect #1466020

    Hey Peter,

    Thank you for the inquiry.

    The Portfolio Grid element doesn’t have this option by default, but you can try using the Masonry element. You can set the hover effects in the Advanced > Animation > Image Hover Effect settings. Also, you can adjust the Element Title and Excerpt display settings in the Content > Caption toggle.

    Best regards,
    Ismael

Viewing 30 posts - 2,971 through 3,000 (of 66,194 total)