Forum Replies Created

Viewing 30 posts - 3,211 through 3,240 (of 66,229 total)
  • Author
    Posts
  • in reply to: add_filter only if class exists on html tag #1464502

    Hi,

    This seems to work:

    function avf_mod_avia_header_setting($header)
    {
        if ($header['header_transparency']) {
            add_filter('avf_logo', 'avf_mod_logo');
        }
        return $header;
    }
    add_filter('avf_header_setting_filter', 'avf_mod_avia_header_setting');
    
    function avf_mod_logo($logo)
    {
        $logo = "https://kriesi.at/themes/enfold-business-flat/wp-content/uploads/sites/43/2014/08/logo_flat_portfolio.png";
        return $logo;
    }

    Best regards,
    Ismael

    in reply to: Breadcrumb not to display single product titles? #1464501

    Hi,

    Is there any way to remove the category or product title of the page the user is on?

    Previously, you asked if it was possible to remove or hide the category. The snippet we suggested earlier should remove both the category and the post title.

    Best regards,
    Ismael

    in reply to: Add a Print to PDF icon to Social Icons on blog posts #1464500

    Hi,

    is that where I can add the ava_after_content code?

    Yes, you can place the hook in the functions.php file. If you want to override the enfold/includes/loop-index.php, you can create a copy of it in the child theme folder. Please check the documentation below for more info:

    // https://developer.wordpress.org/themes/advanced-topics/child-themes/#templates-parts-and-patterns

    Best regards,
    Ismael

    in reply to: Tooltip with copy #1464499

    Hey peterolle,

    Thank you for the inquiry.

    If I understand correctly, you wanted to copy the value of the data-copy attribute when the button is clicked? If so, you can try this html:

    <button 
        type="button" 
        class="btn btn-default btn-copy js-tooltip js-copy pull-right" 
        data-toggle="tooltip" 
        data-placement="bottom" 
        data-copy="https://urltocopy.com/test/" 
        title="Copy URL" 
        onclick="var tempInput = document.createElement('textarea'); tempInput.value = this.getAttribute('data-copy'); document.body.appendChild(tempInput); tempInput.select(); document.execCommand('copy'); document.body.removeChild(tempInput); alert('URL copied to clipboard: ' + tempInput.value);">
        Copy URL
    </button>
    
    

    If you want to remove the notification, just delete this line:

     alert('URL copied to clipboard: ' + tempInput.value);
    

    Best regards,
    Ismael

    in reply to: Issues with iframe, Vimeo video link to open in a pop up #1464498

    Hi,

    Thank you for the update.

    It seems that the video only redirects when you’re not logged in. We also noticed that the site is running an older version of the theme, 5.6.10. Please upgrade the theme to version 6.0.2 and then update the template files (e.g., header.php, footer.php, etc.) in the child theme folder. Let us know if this resolves the issue.

    Best regards,
    Ismael

    in reply to: Slow loading product into cart #1464444

    Hey roberto123montoya,

    Thank you for the inquiry.

    checking the developer option of chrome I see several admin-ajax.php libraries running…

    The AJAX requests originate from the booking calendar form and seem to be triggered when hovering over the date picker. Please contact the plugin developers for more information about these requests.

    This is an example of the request and where it is generated:

    _mwb_nonce: 7f702da1d4
    _wp_http_referer: /producto/entrada-general/
    wps_booking_single_calendar_form:
    mwb_mbfw_booking_product_id: 663
    quantity: 1
    action: mbfw_retrieve_booking_total_single_page
    nonce: 0cdc88af97
    function: wp-content/plugins/mwb-bookings-for-woocommerce/common/js/mwb-common.js?ver=3.1.10 > retrieve_booking_total_ajax

    Best regards,
    Ismael

    in reply to: Lightbox Modal Conflict With Essential Grid Plugin #1464443

    Hi,

    As suggested above, please upgrade the theme to the latest version, 6.0.2. Then, contact the plugin developers regarding the following error, which is generated from the esg.min.js?ver=3.1.1 file located at /wp-content/plugins/essential-grid/public/assets/js/ folder.

    esg.min.js?ver=3.1.1:12 Uncaught TypeError: jQuery(...).find(...)[0].trigger is not a function
        at HTMLDivElement.<anonymous> (esg.min.js?ver=3.1.1:12:42483)
        at HTMLDivElement.dispatch (jquery.min.js?ver=3.7.1:2:40035)
        at v.handle (jquery.min.js?ver=3.7.1:2:38006)
    

    Best regards,
    Ismael

    in reply to: Code Korrekturen #1464442

    Hey RSTAC,

    Thank you for the inquiry.

    Where can we check the issue? Please provide screenshots using platforms like Savvyify, Imgur or Dropbox. 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: Add Cookie Settings Link to Socket #1464440

    Hey Steve,

    Please continue here: https://kriesi.at/support/topic/cookie-settings-link-to-socket/

    Best regards,
    Ismael

    in reply to: Cookie Settings Link to Socket #1464439

    Hey Steve,

    Thank you for the inquiry.

    There is no option for this by default, but you can try using this filter in the functions.php file to append a link that opens the privacy modal window.

    function avf_wp_nav_menu_items_mod($items, $args) {
        if ($args->theme_location == 'avia3') { 
            $new_item = '<li class="menu-item">'. do_shortcode('[av_privacy_modal_popup_button wrapper_class="" id="" class=""]Privacy Modal[/av_privacy_modal_popup_button]') . '</li>';
            $items .= $new_item; 
        }
    
        return $items;
    }
    add_filter('wp_nav_menu_items', 'avf_wp_nav_menu_items_mod', 10, 2);
    

    And regarding the close button, the user can either accept or hide the notification by clicking the available buttons, which will also close the window.

    Best regards,
    Ismael

    in reply to: Logo Overlapping Menu #1464437

    Hey Steve,

    Thank you for the inquiry.

    Have you tried selecting the second option (Activate for smartphones and tablets) in the Enfold > Main Menu > General > Menu Items For Mobile settings? Let us know if this works for you.

    Best regards,
    Ismael

    in reply to: How to load custom logo into icon box #1464436

    Hey hostworks,

    Thank you for the inquiry.

    You will need to upload the logo or SVG image as a font icon in order to use it in the Iconbox element. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    Best regards,
    Ismael

    in reply to: Issues with iframe, Vimeo video link to open in a pop up #1464435

    Hi,

    Thank you for the info.

    The site is not redirecting to a new page or window when we checked the button again. Did you figure out the issue? Please try testing it on a different browser or device.

    Best regards,
    Ismael

    Hey unclericky1,

    Thank you for the inquiry.

    What is the current version of the theme? Please make sure that the theme is updated to version 6.0.2, and try temporarily disabling the plugins. If the issue persists, please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Where to add html for easy slider? #1464211

    Hey Jak73,

    Thank you for the inquiry.

    i would like to customize the layer slider, with a back button and own navigation-icons.

    You cannot use the Easy Slider shortcode within the Layer Slider element. You may need to extract the actual html of the Easy Slider and add it to the Layer Slider using the HTML layer. However, we are not sure if the Easy Slider will initialize correctly when placed inside the Layer Slider. Why do you need to insert an Easy Slider inside a Layer Slider?

    Best regards,
    Ismael

    Hey fingarE,

    Thank you for the inquiry.

    The latest version of the theme is 6.0.2. Please update the theme to the latest version, then toggle or temporarily disable the Enfold > Performance > File Compression settings. Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: Text Fold/Unfold Defect-Smartphones #1464209

    Hi,

    Thank you for the info.

    Please try to add this css code:

    .avia-fold-unfold-section .av-fold-unfold-container .avia_textblock {
        display: block;
    }

    Let us know of the result.

    Best regards,
    Ismael

    in reply to: Space between lines and paragraphs for H3 #1464208

    Hey bemodesign,

    Thank you for the inquiry.

    You can adjust the style of the H4 element in the Enfold > Advanced Styling panel. To adjust the vertical spacing, try adjusting the Line Height property.

    Best regards,
    Ismael

    in reply to: Zoom #1464207

    Hey Aubin,

    Thank you for the inquiry.

    What do you mean by “zoom my menu”? Please provide a screenshot of the changes that you’d like to implement using platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: Text-Block – Text in Frontend is broken #1464206

    Hi,

    Have you tried temporarily removing the symbols to see if it works? You can also use the plugin we recommended above.

    Best regards,
    Ismael

    in reply to: Gravatar Not Displaying #1464205

    Hi,

    Thank you for the inquiry.

    Also The – “You might also Like” Also not displaying.

    Are you using the Advanced Layout Builder for the posts? If so, the related posts will not display automatically. You’ll need to manually insert a posts element, such as Masonry, Blog Posts, or Magazine, into the page.

    We can’t find the blog page on the site. Please provide a direct link to the page.

    Best regards,
    Ismael

    in reply to: Flux checkout plugin styling issue #1464204

    Hi,

    thanks! Its much much better. Now it fits well to all tested resolutions. But little detail.

    To prevent scrolling, please update the previous modification with this code:

    body.woocommerce-checkout {
        max-width: 100vw;
        overflow-x: hidden;
    }
    

    Best regards,
    Ismael

    in reply to: Different logo and footer on different page Id’s #1464203

    Hey lobstahhhhhhh,

    Thank you for the inquiry.

    To display different logo for a specific page, you can use this filter in the functions.php file:

    add_filter('avf_logo','avf_change_logo');
    function avf_change_logo($logo)
    {
        if(is_page(123) ) {
           $logo = "http://site.at/wp-content/themes/kriesi/images/logo.png";
        }
        return $logo;
    }
    

    Unfortunately, there is no option or filter for custom footer.

    Best regards,
    Ismael

    in reply to: Add a Print to PDF icon to Social Icons on blog posts #1464202

    Hey amyncuih,

    Thank you for the inquiry.

    You may need to edit the enfold/includes/loop-index.php file and add the button below this code, around line 547:

    //share links on single post
    avia_social_share_links_single_post();
    

    Or use the ava_after_content hook in the functions.php file:

    add_action('ava_after_content', function() {
        // add button here
    }, 10);
    

    Best regards,
    Ismael

    in reply to: Transition between logo and logo after scroll #1464201

    Hey pelgrimrat,

    Thank you for the inquiry.

    When you start scrolling, the logo changes into a different, slimmer logo (text only).

    This is only visible when you intentionally scroll down a few pixels (10-20px) from the top. The transition you’re describing won’t be noticeable to most users, as they will likely scroll well beyond the fold after viewing the top content. If you’d like to adjust it, you can add this css code to completely hide the initial logo on scroll.

    .header-scrolled .logo .subtext > img {
        opacity: 0;
        display: none;
    }
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    It works correctly on our end when we use the other URL format without the iframe parameter. Please try it again or provide the login details in the private field so that we can test it.

    Best regards,
    Ismael

    in reply to: Breadcrumb not to display single product titles? #1464199

    Hi,

    Thank you for the update.

    If you want to remove the category trail, just add this code:

    unset($trail[3]);
    

    .. under this line:

    unset($trail['trail_end']);
    

    And to change the color of the breadcrumb trail on hover, add this css code:

    .breadcrumb-trail :hover {
        color: blue !important;
    }
    

    Best regards,
    Ismael

    in reply to: New Custom Layout + Dynamic Content Feature #1464198

    Hey i9design,

    Thank you for the inquiry.

    You will still need to insert the Custom Layout element into each post. However, when you need to make changes to the layout, you can simply update the custom layout, and the changes will be applied globally. This can be combined with the dynamic content feature to create different layouts for custom post types.

    Best regards,
    Ismael

    in reply to: NO REPLY Notification in Contact Form #1464103

    Hey HUHU7777,

    Thank you for the inquiry.

    You can set this up in the Autoresponder settings of the contact form element. Please edit the contact form and look for the Autoresponder section in the Content > Backend panel. Let us know if this works for you.

    Best regards,
    Ismael

    in reply to: Text-Block – Text in Frontend is broken #1464102

    Hey kevinsiml,

    Thank you for the inquiry.

    The issue probably occurs because of the angle brackets (< or >), which may be mistaken for opening and closing html tags. You might need to use the Special Character Translation plugin for this. Please check the documentation for more information: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#using-special-characters

    Best regards,
    Ismael

Viewing 30 posts - 3,211 through 3,240 (of 66,229 total)