Forum Replies Created

Viewing 30 posts - 241 through 270 (of 65,998 total)
  • Author
    Posts
  • in reply to: Tab Section height problem, part 2 #1484552

    Hey Bryan,

    Thank you for the inquiry.

    Did you remove the code? Please create a test page, then add the script again so we can inspect the issue.

    Best regards,
    Ismael

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

    Hey NicomIT,

    Thank you for the inquiry.

    You can replace the av_icon_string function with:

    avia_font_manager::frontend_icon( $avia_config['font_icons'][ 'search' ]['icon'], $avia_config['font_icons'][ 'search']['font'], 'string', true ); 
    

    For av_icon_char, simply replace the “string” argument with false and remove the third parameter.

    avia_font_manager::frontend_icon( $avia_config['font_icons'][ 'search' ]['icon'], $avia_config['font_icons'][ 'search']['font'], false );
    

    You may also need to set the WP_DEBUG to false.

    https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/

    Best regards,
    Ismael

    in reply to: BigCommerce Plugin Conflict with Enfold #1484550

    Hey panoptic2012,

    Thank you for the inquiry.

    Based on the errors, it appears to be an issue with the avia_wc_clear_catalog_ordering_args_filters function in the Masonry element. Did you also enable Woocommerce? What happens when you remove the Masonry element from the home page?

    Best regards,
    Ismael

    in reply to: header on this page inot appearing right on mobile #1484517

    Hi,

    Great! Glad to know this has been resolved. Have a nice day.

    Best regards,
    Ismael

    Hi,

    The images are smaller because they are constrained within the section area using the css rule “background-size: contain !important;”. You can try changing it back to “cover”, but this may cause the “zoomed-in” issue to return.

    Try this css code in place of the recent one, then make sure to purge the cache or clear your browser history.

    @media only screen and (max-width: 1366px) {
      /* Add your Mobile Styles here */
      .avia-full-stretch, .avia-bg-style-fixed  {
          background-attachment: scroll !important;
          background-size: cover !important;
      }
    }

    Best regards,
    Ismael

    in reply to: Increase font size for Tabs titles #1484515

    Hi,

    Thank you for the update. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings. If it’s still not working, please provide the login details in the private field so we can inspect the elements.

    Best regards,
    Ismael

    in reply to: Show caption in iframe lightbox #1484514

    Hi,

    Thank you for the update. We deleted the URL from the previous post.

    Try to replace the html with:

    <a 
        alt="CUSTOM ALT HERE" 
        title="CUSTOM TITLE HERE" 
        class="content1 inline_popup" 
        href="IFRAME URL HERE"
    >
        <span class="dashicons dashicons-playlist-video"></span>
    </a>
    

    Add this code in the functions.php file:

    function av_inline_popup_enabler() { ?>
        <script>
        (function($){
            $(document).ready(function() {
                $('.inline_popup').magnificPopup({
                    type: 'iframe',
                    midClick: true,
                    callbacks: {
                        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);

    Then insert this css code in the Quick CSS field:

    div .mfp-title {
      z-index: 9999;
      position: relative;
      color: #ffffff;
      bottom: -50px;
    }
    

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Timeline widget issue #1484513

    Hi,

    Thank you for the short clip. We are still unable to reproduce the issue on our end. Please see the screenshot below.

    View post on imgur.com

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    In enfold/config-templatebuilder/avia-template-builder/php/class-save-buildertemplate.php file, the aviaSaveBuilderTemplate methods have a permission check that only allows users with the edit_posts capability to interact with the builder templates.

    if( ! current_user_can( 'edit_posts' ) )
    			{
    				die();
    			}

    Please make sure that the Editor role has the capability to “edit_posts”.

    https://wordpress.org/documentation/article/roles-and-capabilities/#edit_posts

    If the issue persists, post the login details for an admin and editor account in the private field so we can check the issue further.

    Best regards,
    Ismael

    in reply to: SVG icons missing #1484511

    Hi,


    @spooniverse
    : Try using “header_replacement_logo”.

    $logo_url = avia_get_option( 'header_replacement_logo' );
    

    If this doesn’t work or if you need more help, please feel free to open another thread.

    Best regards,
    Ismael

    Hey H.O. GmbH,

    Thank you for the inquiry.

    Please note that when you switch to the Advanced Layout Builder (ALB), all default product elements will be removed and you’ll need to start from scratch. This will also limit functionality to only the elements available in the builder. We do not recommend switching to ALB, especially for variable products because variation switching will no longer work properly, particularly in the gallery and price display. You may need to switch back to the default editor for your variable products.

    Best regards,
    Ismael

    in reply to: Question on Masonry #1484509

    Hi,

    You’re quite welcome! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    Hey andreasb68,

    Thank you for the inquiry.

    You can add this code in the functions.php file to completely remove the post title:

    remove_filter( 'post-format-standard', 'avia_default_title_filter', 10, 1 );
    add_filter( 'post-format-standard', 'avia_default_title_filter_mod', 10, 1 );
    
    function avia_default_title_filter_mod( $current_post ) {
        $current_post['title'] = '';
        return $current_post;
    }

    Best regards,
    Ismael

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

    Hey connect4consulting,

    Thank you for the inquiry.

    You can add this css code to adjust the mobile menu breakpoint.

    @media only screen and (max-width: 1366px) {
      .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
        display: none;
      }
    
      .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
        display: block;
      }
    }

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    in reply to: Horizontal gallery on mobile #1484506

    Hey es.design.ma,

    Thank you for the inquiry.

    We will need to inspect the site and the gallery to better understand the issue. Please create a test page and provide the site URL along with the login credentials in the private field.

    Best regards,
    Ismael

    in reply to: z index or scroll issue? #1484479

    Hey BrendaSarg,

    Thank you for the inquiry.

    Looks like we need to log in to access the club bemberships tab. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider Video Transitions #1484478

    Hey timstonis,

    Thank you for the inquiry.

    You may need to use a different slider such as LayerSlider, or create a custom script to create seamless transitions for your videos. Unfortunately, adjusting the default behavior of the slider will require significant modification to the theme. If you really need to use the default sliders, we recommend hiring a freelance developer or contact Codeable for additional assistance with the changes.

    https://kriesi.at/contact/customization

    Thank you for your understanding.

    Best regards,
    Ismael

    Hey Daniel,

    Thank you for the inquiry.

    Did you try the modified code or ava_enable_alb_for_editor function from the previous thread?

    function ava_enable_alb_for_editor() {
    	remove_filter('avf_allow_drag_drop', 'avia_disable_alb_drag_drop', 30, 1);
    	add_filter('avf_allow_drag_drop', 'avia_disable_alb_drag_drop_mod', 40, 1);
    }
    add_action('init', 'ava_enable_alb_for_editor');
    

    Best regards,
    Ismael

    in reply to: Show caption in iframe lightbox #1484476

    Hey Daniel,

    Thank you for opening another thread.

    Have you tried directly adding the alt or title attribute to the element with the ?iframe=true link?

    <a class="content1 mfp-iframe lightbox-added" href="https://ipg-messe.noops.de/wp-content/uploads/2025/05/01_experience_overview_screen_01-scaled.jpg?iframe=true">
          <span class="dashicons dashicons-playlist-video"></span>
    </a>
    

    Replace it with:

    <a alt="CUSTOM ALT HERE" title="CUSTOM TITLE HERE" class="content1 mfp-iframe lightbox-added" href="https://xxxxxx.de/wp-content/uploads/xxx/xxxxx/xxxxxjpg?iframe=true">
    
          <span class="dashicons dashicons-playlist-video"></span>
    
        </a>

    Best regards,
    Ismael

    in reply to: Timeline widget issue #1484475

    Hey flaviese,

    Thank you for the inquiry.

    We can’t seem to reproduce the issue on our end. This is how the site displays on load.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Increase font size for Tabs titles #1484474

    Hey Antonio,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the tab titles:

    #top div .tabcontainer .tab {
        font-size: 20px;
        padding: 12px 24px 14px 24px;
    }

    Best regards,
    Ismael

    in reply to: Lightbox settings #1484473

    Hi,

    Feel free to keep the css if it works on your end. Let us know if you need anything else.

    Best regards,
    Ismael

    in reply to: Page is jumping section on page #1484472

    Hey BrendaSarg,

    Thank you for the inquiry.

    We can’t reproduce the issue on either of the sites. Did you figure out the issue?

    Best regards,
    Ismael

    Hey NMDahl,

    Thank you for the inquiry.

    The site is not using the Enfold theme. We also tried logging in, but the account information provided in the private field is invalid. Did you switch to a different theme?

    Best regards,
    Ismael

    Hi,


    @spooniverse
    : Have you tried adding the alt or title attribute to the element with the ?iframe=true link? If this is not working, please create a test page, then open another thread. We’ll close this one for now.

    Best regards,
    Ismael

    Hi,

    As mentioned above, this will require modifications that are outside the scope of support. Please forward the files mentioned above to the developers. So far, we haven’t encountered another thread with the same issue or request.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Hi,

    We couldn’t reproduce the issue using a Safari emulator. Another workaround we recommend is to duplicate the color section, set the background attachment to “scroll”, then control the visibility of each section under Advanced > Responsive > Element Visibility settings. The idea is show one color section on desktop and another on mobile or smaller screens with a different background configuration.

    Best regards,
    Ismael

    in reply to: Help with some shop elements #1484431

    Hi,

    1.) We can’t reproduce the issue on our end. Have you tried using a difference device?

    2.) Unfortunately, this will require modifications that are beyond the scope of support.

    3.) You can replace the previous woocommerce_sale_flash filter with the following code to automatically calculate and display the percentage discount:

    add_filter('woocommerce_sale_flash', 'avf_woocommerce_sale_badge', 10, 3);
    function avf_woocommerce_sale_badge($badge, $post, $product) {
        if ($product->is_on_sale()) {
            $regular_price = floatval($product->get_regular_price());
            $sale_price    = floatval($product->get_sale_price());
    
            if ($regular_price > 0 && $sale_price > 0) {
                $percentage = round((($regular_price - $sale_price) / $regular_price) * 100);
                return '<span class="av-custom-sale-badge">-' . $percentage . '%</span>';
            }
        }
        return $badge;
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

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

    Hi,

    Have you tried using the default Navigation Menu widget? Please check the link below for more info.

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

    Best regards,
    Ismael

    in reply to: Remove Video Image Overlay #1484428

    Hey a_edemirci,

    Thank you for the inquiry.

    You can add this css code to hide the default image overlay.

    #top .image-overlay {
        display: none !important;
    }

    Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

Viewing 30 posts - 241 through 270 (of 65,998 total)