Forum Replies Created

Viewing 30 posts - 4,351 through 4,380 (of 67,479 total)
  • Author
    Posts
  • in reply to: Import just one single page from a demo #1465469

    Hey Arjan,

    Thank you for the inquiry.

    It’s not possible to import a single page, but we can provide you with the shortcodes used on this particular page. You’ll need to set the builder to debug mode and copy the shortcodes into the shortcodes field.

    This is the shortcode: https://paste.mozilla.org/uqAOUvAz

    To activate the debug mode, please check this documentation: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: “Header Invisible Until User Scrolls” not working #1465467

    Hi,

    Thank you for the update.

    Since the issue only occurs when the child theme is activated, it is definitely due to the modifications in the template files. Please feel free to open another thread if you need further assistance.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: CLS Issue #1465466

    Hi,

    Thank you for the update. We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: change the timing of the shrinking header #1465465

    Hey James,

    Thank you for the inquiry.

    That is possible, but it will require significant modifications to the script. If you want to try, you can edit the enfold/js/avia-snippet-sticky-header.js file. This block shrinks the header:

    if( shrinking && ! isMobile )
    				{
    					if( st < shrink_val )
    					{
    						newH = el_height - st;
    						if( st <= 0 )
    						{
    							newH = el_height;
    						}
    
    						av_change_class( header, 'remove', 'header-scrolled' );
    						//header.removeClass('header-scrolled');
    					}
    					else
    					{
    						newH = el_shrinked;
    						//header.addClass('header-scrolled');
    						av_change_class( header, 'add', 'header-scrolled' );
    					}
    
    					if( st - 30 < el_height )
    					{
    						av_change_class( header, 'remove', 'header-scrolled-full' );
    					}
    					else
    					{
    						av_change_class( header, 'add', 'header-scrolled-full' );
    					}
    
    					elements.css({'height': newH + 'px', 'lineHeight': newH + 'px'});
    					logo.css({'maxHeight': newH + 'px'});
    				}

    Best regards,
    Ismael

    in reply to: Have sub menu replace header #1465464

    Hey James,

    Thank you for the inquiry.

    Would you like to completely disable the header? If yes, try editing the page and set the Layout > Header visibility and transparency option to the last option, Hide header on this page.

    Best regards,
    Ismael

    in reply to: Author pages beyond first page are set to “noindex”. #1465463

    Hey menainfosec,

    Thank you for the inquiry.

    WordPress author pages are sometimes set to noindex to prevent duplicate content issues, as most of the content on the author page can also be seen on the blog overview page. If you’d like to change this and you’re using Yoast, you can set the Show Author Archives in Search Results? option in the SEO > Search Appearance > Archives > Author Archives section to Yes.

    Best regards,
    Ismael

    in reply to: Modifying the breadcrumbs #1465462

    Hey menainfosec,

    Thank you for the inquiry.

    What do you mean by “focuses on the main blog URL”? Could you please elaborate or provide an example of the breadcrumb trail you wish to implement? If you want to customize the breadcrumb trail, you can use the avia_breadcrumbs_trail filter as shown in the following threads:

    // https://kriesi.at/support/topic/breadcrumb-not-to-display-single-product-titles/#post-1464337
    // https://kriesi.at/support/topic/breadcrumb-not-to-display-single-product-titles/#post-1464096

    Best regards,
    Ismael

    in reply to: Logo Centered Menu Split breaking at 4k resolution #1465461

    Hey i9design,

    Thank you for the inquiry.

    We are not yet sure what’s causing the issue, but you can temporarily fix it by adding this css code:

    @media only screen and (min-width: 3840px) {
        li#menu-item-3585 .avia_mega_div {
            right: -1024px !important;
        }
    }
    

    Best regards,
    Ismael

    Hi,

    Content> Captions> Display Neither.

    We can’t reproduce the issue on our end. When the Element Title and Excerpt is set to Display Neither, they don’t display. Please make sure that the theme is updated to version 6.0.2, then provide a link once the site is available online.

    Best regards,
    Ismael

    in reply to: Avie elements are displayed as deactivated #1465459

    Hi,

    Thank you for the info.

    We adjusted the Disabling of Template Builder Elements settings, created a test page, and added all elements from the builder, but we were not able to reproduce the issue. Can you provide a link to the page where we can see the problem? Please check the link in the private field.

    Best regards,
    Ismael

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

    Hi,

    Thank you for the info.

    Looks like the issue occurs because of this css rule in the enfold/config-templatebuilder/avia-shortcodes/icon/icon.css file:

    /*	backwards comp. default behaviour prior 4.8.4 with white shadow only	*/
    .av_font_icon.av-icon-style-border:not(.avia-sonar-shadow) a.av-icon-char:hover:after {
    	animation: sonarEffect 1s ease-out ;
    }

    We’ll forward the issue to our channel.

    Best regards,
    Ismael

    in reply to: Video visuals not showing on home page #1465457

    Hi,

    Thank you for the info.

    The video seems to be displaying correctly on the homepage now. Could you provide a screenshot of how it looks on your end?

    Best regards,
    Ismael

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

    Hey Michael,

    Thank you for the inquiry.

    Please try to add this hook in the functions.php file:

    function ava_woocommerce_pagination_actions() {
        add_action( 'woocommerce_pagination', 'woocommerce_pagination', 10 );
        add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
        remove_action( 'woocommerce_after_shop_loop', 'avia_woocommerce_after_shop_loop', 10 );
    }
    add_action( 'init', 'ava_woocommerce_pagination_actions' );
    

    Then use this css code to adjust the style of the pagination.

    .template-shop .products {
      overflow: auto;
    }
    
    .woocommerce-pagination ul li {
      display: inline;
    }

    Best regards,
    Ismael

    in reply to: Video widget only showing on home page #1465455

    Hi,

    Thank you for the update.

    We temporarily disabled the File Compression settings and set Enfold > Performance > Self Hosted Videos and Audio Features (WP-Mediaelement Scripts) to the third option. This seems to have fixed the issue. Please make sure to purge the cache before checking.

    Best regards,
    Ismael

    Hi,

    Are you using the Portfolio Grid or the Masonry element? If you’re using the Masonry element, try setting the Content > Captions > Element Title and Excerpt display settings to the first option (Always hide). Please provide a link to the page so we can check the element.

    Best regards,
    Ismael

    in reply to: Video widget only showing on home page #1465395

    Hey James,

    Thank you for the inquiry.

    We are not yet sure what’s causing this issue. Have you tried embedding a different video? What happens when you directly use the video’s embed code in an HTML or Text widget?

    Best regards,
    Ismael

    in reply to: Sidebar navigation – some guidance please #1465394

    Hey!

    Thank you for the inquiry.

    You can use the avf_sidebar_menu_filter filter to adjust the output of the page sidebar navigation. The following example shows how to append a custom menu item at the very end of the list:

    function append_custom_menu_item($sidebar_menu, $args, $post) {
        $custom_menu_item = '<li class="page_item"><a href="your-custom-url">Your Custom Menu Item</a></li>';
        $sidebar_menu = str_replace('</ul>', $custom_menu_item . '</ul>', $sidebar_menu);
    
        return $sidebar_menu;
    }
    
    add_filter('avf_sidebar_menu_filter', 'append_custom_menu_item', 10, 3);
    

    Cheers!
    Ismael

    in reply to: Unable to upload theme #1465393

    Hey tcampaner,

    Thank you for the inquiry.

    Did you extract the actual enfold.zip file from the downloaded package? If you still encounter issues, please try reaching out to your hosting provider for more info.

    Best regards,
    Ismael

    in reply to: SVG Size in Admin Broken #1465392

    Hi,

    Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the screenshot.

    That is the default tooltip (or title popover) provided by the browser, and unfortunately, it cannot be directly modified or customized. Browsers generate this tooltip automatically from the title attribute of an element, and its appearance and behavior are controlled by the browser itself.

    Best regards,
    Ismael

    in reply to: related products changed text translation #1465390

    Hey Munford,

    Thank you for the inquiry.

    We edited the filter a bit:

    // Change WooCommerce "Related products" text for different languages
    
    add_filter('gettext', 'change_rp_text', 10, 3);
    add_filter('ngettext', 'change_rp_text', 10, 3);
    
    function change_rp_text($translated, $text, $domain)
    {
        if ($text === 'Related products' && $domain === 'woocommerce') {
            $locale = get_locale();
    
            if ($locale === 'da_DK') {
                $translated = esc_html__('ANDRE MEDLEMSKABER', $domain);
            } elseif ($locale === 'en_US') {
                $translated = esc_html__('OTHER MEMBERSHIPS', $domain);
            }
        }
    
        return $translated;
    }
    
    

    Best regards,
    Ismael

    in reply to: Video visuals not showing on home page #1465388

    Hi,

    Thank you for the info.

    Did you change the login URL? The link above leads to a 404 page. We tried using the default login URL, but it’s the same.

    Best regards,
    Ismael

    in reply to: Accordian Slider – Custom Formating and Allignment #1465387

    Hi,

    Thank you for the update.

    1.) To align the captions to the top, please try this css code:

    #top .aviaccordion-preview-title {
        display: table-cell;
        vertical-align: top;
    }

    3.) Unfortunately, this is not possible without significant modification in the enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js file.

    Best regards,
    Ismael

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

    Hey Thomas,

    Thank you for the inquiry.

    We can’t reproduce the same issue on our end. Please create a test page and provide the link in the private field.

    Best regards,
    Ismael

    Hey pnamroud,

    Thank you for the inquiry.

    It looks like you’ve asked this before here: https://kriesi.at/support/topic/using-the-universal-wp-lead-tracking-plugin-with-enfold-contact-form/#post-1413109.

    Please let us know if this works.

    Best regards,
    Ismael

    in reply to: Seite kann nicht bearbeitet werden wegen HTMNL Tag #1465384

    Hi,

    Would you mind providing a screenshot of the issue and post the login details in the private field? 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: Padding full screen slide show #1465383

    Hey Peter,

    Thank you for the inquiry.

    You can use this css code to adjust the padding of the caption frame.

    .caption_framed .slideshow_caption .avia-caption-content p, .caption_framed .slideshow_caption .avia-caption-title, .avia-caption .avia-caption-content p, .avia-caption .avia-caption-title {
        padding: 20px 30px;
    }

    Best regards,
    Ismael

    in reply to: Images not loading over Live Links when using Local App #1465382

    Hey sparkyj,

    Thank you for the inquiry.

    Have you tried temporarily disabling the Enfold > Performance > File Compression settings? Please share the live link so that we can check the issue further.

    Best regards,
    Ismael

    in reply to: Accordian Slider – Custom Formating and Allignment #1465204

    Hey edgeofcinema,

    Thank you for the inquiry.

    1-3.) Could you provide a screenshot of the changes you’d like to implement? We can’t find the Accordion element on the home page. Please provide a direct link to the page with the element.

    2.) You can create new lines by adding a br tag to the title. Example:

    Two <br class="permanent-br"/> Words
    

    Best regards,
    Ismael

    in reply to: strange text in top left corner #1465203

    Hi,

    it is that green bar with text on the left

    Thanks. I thought the green part was part of the layout. Anyway, it looks like the text was added along with the Google Tag Manager code. Please check the content of the Enfold > Google Services > Google Analytics Tracking Code field, or check the functions.php and header.php files as mentioned above.

    Add this to the  section:
    <!--– Google Tag Manager (noscript) –-->
    

    Best regards,
    Ismael

Viewing 30 posts - 4,351 through 4,380 (of 67,479 total)