Forum Replies Created

Viewing 30 posts - 211 through 240 (of 65,998 total)
  • Author
    Posts
  • Hey SMA,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to disable the SVG icon sets.

    add_filter('avf_default_iconfont', function($icon_font) {
        $icon_font['svg_entypo-fontello'] = array(
            'append'     => '',
            'include'    => '',
            'folder'     => '',
            'config'     => '',
            'json'       => '',
            'full_path'  => false
        );
    
        return $icon_font;
    }, 10, 1);
    

    Best regards,
    Ismael

    in reply to: Show caption in iframe lightbox #1484810

    Hi,

    That’s great news! Glad to know you managed to resolve the issue. Please don’t hesitate to start a new thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Fold/Unfold doesn’t work in child theme #1484809

    Hi,

    Thank you for the update.

    The fold/unfold feature works correctly when the plugins are deactivated. Please try activating them one at a time to identify which plugin is conflicting with the feature.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Cookie Consent: Setting before consent or rejection #1484808

    Hey ebenanders,

    Thank you for the inquiry.

    This mostly depends on the option selected under Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior. The first and second options are more permissive in how they block or limit certain cookies or features, so even without user consent, elements such as Google Maps, fonts, or contact forms using reCAPTCHA and other features that rely on cookies will still work on page load when these options are selected.

    The third and last options are more strict, completely blocking all third-party cookies or preventing native features from functioning until user consent is given.

    Hope this clear things up a bit.

    Best regards,
    Ismael

    Hey krisknap,

    Thank you for the inquiry.

    Have you tried to toggle or temporarily disable the Enfold > Performance > File Compression settings?
    Please provide the site URL and login details in the private field so we can check the issue further.

    The script below is responsible for the cookie consent behavior and functions.

    — enfold/js/avia-snippet-cookieconsent.min.js
    — enfold/js/avia-snippet-cookieconsent.js

    Best regards,
    Ismael

    Hey John Yates,

    Thanks for reaching out.

    We were able to check one of the sites, and the “Sort By: and “Display:” links seem to be working as expected. After refreshing the page, Wordfence locked us out, so we couldn’t inspect the site further. Is this issue still occurring in version 7.1.1?

    Best regards,
    Ismael

    Hey Chris,

    Thank you for the inquiry.

    The contact form seems to be displaying correctly when we checked, as shown in the screenshot below. Did you figure out the issue?

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Read more in 7.1.1 question #1484804

    Hey goldengate415,

    Thank you for the inquiry.

    1-2.) The “read more” buttons allow users to expand or collapse option descriptions in the theme options panel. Please see the screenshot below.

    View post on imgur.com

    3.) As described, checkboxes have been replaced with toggles but they work the same way.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Fold/Unfold doesn’t work in child theme #1484683

    Hi,

    Thank you for creating the test server. We noticed that the site is using an older version (6.0.8) of the theme, which might be why the fold/unfold option is not working properly. Please update the theme to the latest version, 7.0.1, and let us know the result.

    Best regards,
    Ismael

    in reply to: Show caption in iframe lightbox #1484682

    Hi,

    Looks like it’s not possible to display a title when displaying an iframe or video in the magnific popup or lightbox. We tried the solution in the following thread, but it is still not working.

    https://stackoverflow.com/questions/17612258/title-for-iframe-video-in-magnific-popup

    Best regards,
    Ismael

    in reply to: How to build webstore with template #1484600

    Hey photoshopuzr,

    Thank you for the inquiry.

    Users typically activate Woocommerce when they need to sell products or open an online shop using Enfold. You can check out the links below for more info on how to get started.

    https://kriesi.at/documentation/enfold/woocommerce-shop/#quickstart-with-woocommerce
    — https://woocommerce.com/documentation/woocommerce/getting-started/

    Best regards,
    Ismael

    in reply to: difference on 2 pages #1484599

    Hey schweg33,

    Thank you for the inquiry.

    The word “Batliner” or “Bat” appears on both pages — 34 times. Did you figure out the issue?

    Best regards,
    Ismael

    in reply to: Remove all image titles on tool tip #1484598

    Hey Anne,

    Thank you for the inquiry.

    Please check the links below for possible solutions:

    https://kriesi.at/support/topic/frontend-how-to-hide-image-title-on-hover/#post-1469760
    https://kriesi.at/support/topic/disable-image-title-tooltip-on-hover/#post-1467149

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: BigCommerce Plugin Conflict with Enfold #1484597

    Hi!

    Great! We’ll forward the issue to our channel.

    Cheers!
    Ismael

    in reply to: Timeline widget issue #1484596

    Hi,

    The timeline element seems to be loading properly now. It’s possible that the script responsible for rendering the timeline and other related scripts is delayed, causing the display issue. You might need to optimize the site’s loading speed to help with the delay. Please check the articles below.

    https://gtmetrix.com/wordpress-optimization-guide.html
    https://wpengine.com/resources/improve-wordpress-site-speed/
    https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: Show caption in iframe lightbox #1484595

    Hi,

    Please replace the script with this:

    function av_inline_popup_enabler() { ?>
        <script>
        (function($){
            $(document).ready(function() {
                $('[class*="group-"]').each(function() {
                    $(this).magnificPopup({
                        delegate: 'a.inline_popup',
                        type: 'image',
                        gallery: { enabled: true },
                        midClick: true,
                        callbacks: {
                            elementParse: function(item) {
                                var href = item.el.attr('href');
                                if (href.match(/\.(jpg|jpeg|png|gif|webp)(\?.*)?$/i)) {
                                    item.type = 'image';
                                } else {
                                    item.type = 'iframe';
                                }
                            },
                            open: function() {
                                var title = this.st.el.attr('title') || this.st.el.attr('alt') || '';
                                if (title) {
                                    var $caption = $('<div class="mfp-title" style="text-align:center; padding:10px 0;">' + title + '</div>');
                                    this.contentContainer.append($caption);
                                }
                            }
                        }
                    });
                });
            });
        })(jQuery);
        </script>
    <?php }
    add_action('wp_footer', 'av_inline_popup_enabler', 9999);

    This will group the items based on the parent container (group-1, group-2) and also parse the element format and return the correct type, so you don’t need to add the iframe parameter to images.

    
    <div class="group-1">
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="inline_popup" href="image.jpeg" title="Image 1">Image 1</a>
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="inline_popup" href="video.mp4?iframe=true" title="Video 1">Image 2</a></div>
    <div class="group-2">
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="inline_popup" href="image.png" title="Image">Image</a></div>
    

    Best regards,
    Ismael

    in reply to: Deprecation warnings clogging up my error_log file. #1484594

    Hi,

    Thank you for the update.

    There is no replacement for the av_icon_class, but you can create your own utility function by using this code.

    global $avia_config;
    return 'avia-font-' . $avia_config['font_icons'][ $char ]['font'];
    

    This is the current av_icon_class function for reference.

    /**
     * pass a string that matches one of the key of the global font_icons array to get the font class
     *
     * @since ????
     * @deprecated since 7.0
     * @param string $char
     * @return string
     */
    function av_icon_class( $char )
    {
    	global $avia_config;
    
    	_deprecated_function( 'av_icon_class', '7.0', 'No longer used by Enfold' );
    
    	return 'avia-font-' . $avia_config['font_icons'][ $char ]['font'];
    }
    

    Best regards,
    Ismael

    in reply to: BigCommerce Plugin Conflict with Enfold #1484569

    Hi,

    For now, you will have to add the modifications directly to the parent theme. We may include it in the next patch if it works.

    Best regards,
    Ismael

    Hey AffiliateAmit100,

    Thank you for the inquiry.

    Looks like the mega menu option is active. Try editing the menu items in the Appearance > Menus panel and make sure that the Use as Mega Menu checkbox is not enabled.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: BigCommerce Plugin Conflict with Enfold #1484565

    Hi,

    Will that happen wherever Masonry appears?

    Yes, for some reason, it executes a function intended for Woocommerce. Try editing the file at enfold/config-templatebuilder/avia-shortcode-legacy/av-helper-masonry.php and look for the following code around line 1273:

    if ( function_exists( 'WC' ) ) {
    	avia_wc_clear_catalog_ordering_args_filters();
    	$avia_config['woocommerce']['disable_sorting_options'] = false;
    }

    Replace it with:

    if ( function_exists( 'WC' ) && ! class_exists( 'BigCommerce' ) ) {
    	avia_wc_clear_catalog_ordering_args_filters();
    	$avia_config['woocommerce']['disable_sorting_options'] = false;
    }

    Let us know if the issue persists.

    Best regards,
    Ismael

    Hi,

    Good to know! Glad it’s working. We’ll keep the thread open.

    Best regards,
    Ismael

    in reply to: Timeline widget issue #1484562

    Hi,

    Thank you for the update.

    We tried capturing a short video of the page and only then we are able to reproduce the issue. What happens if you temporarily disable the Enfold > Performance > File Compression settings and the cache plugin? Did you install compression plugin or any performance-related extensions?

    Best regards,
    Ismael

    in reply to: Portfolioseiten mit Anzeigeverlusten #1484560

    Hey solid353,

    Thank you for the inquiry.

    The builder content of the portfolio items seems to be broken when we checked. In the “shelfi-long” portfolio item, the slider element doesn’t contain any slides. Did you add any html tags to the portfolio items? Please try recreating the items from scratch and make sure that there are no invalid html tags.

    Best regards,
    Ismael

    in reply to: Main menu overlapping in Tablet display. #1484559

    Hi,

    Great! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Horizontal gallery on mobile #1484558

    Hi,

    Thank you for the info. The test page requires a password, but we couldn’t find any password settings in the page editor. We tried creating a new page and setting its status to “Private”, but it still requires a password. Where is this set?

    Best regards,
    Ismael

    in reply to: Darstellung komplett zerpflügt – durcheinander #1484557

    Hey NBSGMBH,

    Thank you for the inquiry.

    The site seems to be displaying fine on our end. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Show caption in iframe lightbox #1484556

    Hi,

    We just noticed that you’re trying to load jpg images. What happens when you remove the iframe=true parameter completely? Make sure that link contains the “lightbox” class name.

    
    <div class="isotope">
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="lightbox" href="xxx.jpg"> 01 </a>
      <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="lightbox" href="xxx.jpg"> 02 </a></div>
    

    The title or alt attribute should automatically display without the custom script.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: WooCommerce Single Product Image size #1484555

    Hey Bob,

    Thank you for the inquiry.

    If you want the default configuration (Appearance > Customize > WooCommerce) to apply to product images, you can add the following code to the functions.php file:

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Widget “Enfold Table of Contents” & “Sites” #1484554

    Hi,

    You can choose which menu to display using the Navigation Menu widget. Go to Appearance > Menus, create a new menu, and then select it in the Navigation Menu widget. Please refer to this documentation below for more info.

    https://wordpress.com/support/widgets/navigation-menu-widget/

    Unfortunately, adding an expandable submenu in the footer requires custom modifications that fall outside the scope of our support. You may need to hire a freelance developer or contact Codeable for assistance.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    Hi,

    Looks like you’ve replaced the logo with a smaller image. Let us know if you need more assistance.

    Best regards,
    Ismael

Viewing 30 posts - 211 through 240 (of 65,998 total)