Forum Replies Created

Viewing 30 posts - 3,181 through 3,210 (of 66,206 total)
  • Author
    Posts
  • in reply to: Order Notes in checkout page is hidden by default #1464509

    Hi,

    Thank you for the update.

    The checkbox “Utilitzeu la mateixa adreça per a la facturació” is checked whenever we view the checkout page, so the script seems to be working as expected. Could you please provide a screenshot of the issue? You can use platforms such as Savvyify, Imgur, or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: Content column cut off Mobile version #1464508

    Hey Diana,

    Thank you for the inquiry.

    The content is cut off because the column has a -170px bottom margin.

    #top .flex_column_table.av-equal-height-column-flextable.av-wu3tsa-2f8288ffd7b4a522ef607878953863b5 {
        margin-top: 0px;
        margin-bottom: -170px;
    }
    

    You can override this by adding this css code:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      #top .flex_column_table.av-equal-height-column-flextable.av-wu3tsa-2f8288ffd7b4a522ef607878953863b5 {
        margin-top: 0px;
        margin-bottom: 0 !important;
      }
    }

    Best regards,
    Ismael

    in reply to: Uncropped woocommerce image doesn’t work #1464507

    Hi,

    Thank you for the update.

    We can’t access the new site, which may be due to the security plugin:

    Your access to this site has been limited by the site owner
    Your access to this service has been limited. (HTTP response code 503)
    If you think you have been blocked in error, contact the owner of this site for assistance.

    Have you tried regenerating the thumbnails? Please make sure to create a restore point before doing so.

    // https://wordpress.org/plugins/regenerate-thumbnails-advanced/
    // https://wordpress.org/plugins/force-regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Demo Pages Not Showing Up #1464506

    Hi,

    Thank you for the update.

    Looks like the site is in maintenance mode. You may need to access your server via S/FTP and manually delete the .maintenance file from the root directory. Please check this article for more info:

    // https://kinsta.com/knowledgebase/wordpress-stuck-in-maintenance-mode/

    Best regards,
    Ismael

    in reply to: Flux checkout plugin styling issue #1464505

    Hi,

    Great! 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

    in reply to: Images from smartphone to gallery – APP #1464504

    Hey Alan,

    Thank you for the inquiry.

    Unfortunately, we won’t be able to help you with this part as it is beyond the scope of our support. You may need to hire a freelance developer or tester to assist you with testing.

    Best regards,
    Ismael

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

    Hi,


    @pelgrimrat
    : Please try @Guenni007’s suggestion above and let us know if it works.

    Best regards,
    Ismael

    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

Viewing 30 posts - 3,181 through 3,210 (of 66,206 total)