Forum Replies Created

Viewing 30 posts - 1,651 through 1,680 (of 66,092 total)
  • Author
    Posts
  • in reply to: Logo Centered Menu Right #1475124

    Hi,

    I added that code but the header height looks the same. I even tried to adjust the padding number with no success.

    Where did you add the css code? Please try to toggle or temporarily disable the Enfold > Performance > File Compression settings or post the login details in the private field so that we can check the theme options.

    Best regards,
    Ismael

    in reply to: Console Error: Refused to apply style #1475123

    Hey MysticMimi,

    Thank you for the inquiry.

    The front page seems to be loading correctly on our end. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider Not Showing Images #1475121

    Hey roconnor2,

    Thank you for the inquiry.

    We’ve found a few script errors caused by the anchor link in one of the submenu items called “Home Hardening”. This issue might be preventing the slider from displaying correctly. Please edit the menu item and replace “#home%20hardening” with “#homehardening” (removing the space). Let us know if this resolves the issue.

    Best regards,
    Ismael

    Hey Tia,

    Thank you for the inquiry.

    The theme only includes basic privacy and cookie options. For this additional option, you may need to use a third-party consent template, such as the extensions listed below:

    // https://tagmanager.google.com/gallery/#/?filter=consent&page=1

    Unfortunately, this is beyond the scope of support. For additional assistance, consider hiring a freelance developer. Please check this link: https://kriesi.at/contact/customization

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The Merienda font is not loading due to the privacy and cookie settings. We set Cookie Handling > Default Cookie Behavior to the first option to allow the font to load without user consent. If you prefer to use the default cookie behavior, you must enable the Modal Window Custom Content and allow users to toggle the privacy options as they wish.

    Best regards,
    Ismael

    in reply to: Issue with alb_custom_layout and comments zone #1475078

    Hi,

    Thank you for the update.

    Please try to include this filter in the functions.php file:

    function av_remove_parent_filters() {
    	remove_filter('comments_open', 'av_comments_on_builder_posts_required');
    }
    add_action( 'after_setup_theme', 'av_remove_parent_filters' );
    
    add_filter('comments_open', '__return_true', 9999);

    If the issue persists, you may need to temporarily avoid using the custom layout for the comments section.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Unfortunately, we cannot check anything because the account provided is not an administrator. Please adjust the user role accordingly so we can review the site settings.

    Best regards,
    Ismael

    in reply to: Remove Featured Image from RSS Feed #1475076

    Hi,

    That is not possible, unfortunately. You can try this modification but we can’t guarantee that it will work:

    add_action('template_redirect', function() {
        if (is_single(123)) {
            remove_filter('the_content', 'featureimage_for_feeds');
        }
    });
    

    Make sure the is_single argument (123) is set to the actual ID or slug of the post.

    Best regards,
    Ismael

    in reply to: Change size of background image #1475075

    Hi,

    Thank you for the update.

    Looks like you have selected a smaller version (300x199px) of the image. Please re-select the background image and make sure that the full size version is selected. (see private field)

    Best regards,
    Ismael

    in reply to: Blog – share buttons aren’t working #1475074

    Hi,

    Thank you for the update.

    You can manually create a social icon list using the Icon element, or add this custom shortcode in the functions.php file:

    function av_social_bookmarks_shortcode() {
       $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
       $social = avia_social_media_icons($social_args, false);
       return $social;
    }
    add_shortcode('av_social_bookmarks', 'av_social_bookmarks_shortcode');

    In a Text or Code Block element, add this shortcode:

    [av_social_bookmarks]
    

    Best regards,
    Ismael

    in reply to: Logo Centered Menu Right #1475073

    Hi,

    Thank you for the update.

    You can adjust the top padding of the #main container to decrease the space under the logo. Please add this css code:

    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 120px;
    }

    Best regards,
    Ismael

    Hey ramonolivencia,

    Thank you for the inquiry.

    The category page seems to be loading correctly on our end. Please check the screenshot in the private field. Have you tried checking it on a different browser?

    Best regards,
    Ismael

    Hey dp-beheer,

    Thank you for the inquiry.

    You may need to use the Color Section instead of the Tab Section element. This issue occurs because there is no function or script to resize the Tab Section when an event, such as displaying the error notification, occurs on the contact form.

    Best regards,
    Ismael

    in reply to: Negative margin block on content-section #1475050

    Hi,

    Thank you for the inquiry.

    This is possible but you’ll have to disable the parallax effect, then add this css code:

    .responsive #top #wrap_all #fullwidth .flex_column.av-m5qno1kn-3285d6e6d8214f631d1cbe90cc83b280 {
    	margin-top: -200px;
    }
    
    #fullwidth {
    	overflow: visible;
    }

    You can also move the column in another color section, above the current one, then adjust its bottom margin.

    Best regards,
    Ismael

    Hey H.O. GmbH,

    Thank you for the inquiry.

    1.) Unfortunately, it’s not possible to display the slider video on mobile devices using the Fullscreen Slider, which is why a fallback image option is added. If you really need this, you can try using the Layer Slider element.

    2.) We can’t reproduce the issue on our end. Would you mind providing a screenshot?

    Best regards,
    Ismael

    in reply to: Issue with alb_custom_layout and comments zone #1475048

    Hey Octopus4444,

    Thank you for the inquiry.

    The alb_custom_layout post type does not support comments by default. Adding this filter to the functions.php file might help:

    
    add_filter('avf_custom_layout_cpt_args', 'avf_custom_layout_cpt_args_mod');
    
    /**
     * Callback function to modify arguments of Custom Layout CPT.
     *
     * @param array $args Arguments for the custom post type.
     * @return array Modified arguments with comments support.
     */
    function avf_custom_layout_cpt_args_mod($args) {
        if (isset($args['supports']) && is_array($args['supports'])) {
            $args['supports'][] = 'comments';
        }
    
        return $args;
    }
    

    Best regards,
    Ismael

    in reply to: theme subtil color #1475047

    Hi,

    Thank you for the screenshot.

    You can adjust the color values of the Alternate Background Color and Main Content Font Color in the Enfold > General Styling > Main Content tab. Let us know if this works for you.

    Best regards,
    Ismael

    Hi,

    Thank you for the screenshot.

    Please provide the login details in the private field so that we can check the issue further. In the meantime, try to toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache. Let us know the result.

    Best regards,
    Ismael

    in reply to: Contact form colors #1475045

    Hey jccardaillac,

    Thank you for the inquiry.

    The site is not loading our end. To adjust the style of the contact form fields, please add this code in the Enfold > General Styling > Quick CSS field.

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
        border-color: #000000;
        color: #000000;
        font-family: inherit;
        background: #eeeeee;
    }

    Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Terms and Conditions button not clickable on checkout #1475044

    Hi,

    Thank you for the update.

    If the latest version does not appear on the dashboard, you may need to update it manually via FTP. The site is currently using a very outdated version of the theme, which is probably why the dashboard update is not available. Please upgrade to version 6.0.8. For more info, refer to the documentation: https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp.

    Best regards,
    Ismael

    in reply to: Blog – share buttons aren’t working #1475043

    Hi,

    Thank you for the update.

    You can use the Social Buttons element from the Content Elements tab of the Advance Layout Builder (ALB). Let us know of the result.

    Best regards,
    Ismael

    in reply to: Add line of text under Reviews on Products pages #1474920

    Hi,

    You can use this css code to adjust the product price:

    #top .price, #top .price span, #top del, #top ins {
    	display: inline;
    	text-decoration: none;
    	font-size: 30px;
    	line-height: 24px;
    	font-weight: 600;
    }

    If you have any further questions, we kindly ask that you open a new thread. As threads become longer in the forum, they can become harder to manage, tend to drift off-topic, and make it more difficult for users to search for solutions. Keeping threads focused on the original topic helps us track resolutions more effectively and allows users to more easily find answers to similar issues.

    Thank you!

    Best regards,
    Ismael

    in reply to: Add line of text under Reviews on Products pages #1474918

    Hi,

    We added this script to move the sales count under the ratings

    function ava_custom_script_move_product_sales_count()
    {
        ?>
        <script type="text/javascript">
            (function ($)
            {
                $(document).ready(function () {
                    var salesCount = $('.product-sales-count');
                    var productRating = $('.woocommerce-product-rating');
    
                    salesCount.insertAfter(productRating);
                });
            })(jQuery);
        </script>
        <?php
    }
    
    add_action('wp_footer', 'ava_custom_script_move_product_sales_count', 9999);
    
    

    And added this code in the Quick CSS field to adjust the style a bit.

    .product-sales-count {
    	font-size: 0.8em;
    	margin-top: 0;
    	top: -10px;
    	position: relative;
    }

    Best regards,
    Ismael

    in reply to: Background video in colour section has no sound? #1474917

    Hey Jak73,

    Thank you for the inquiry.

    The video is muted by default because browsers don’t allow videos to autoplay unless they are muted. Please check this article for more details: https://developer.chrome.com/blog/autoplay

    Chrome’s autoplay policies are simple:

    Muted autoplay is always allowed.
    Autoplay with sound is allowed if:
    The user has interacted with the domain (click, tap, etc.).
    On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously played video with sound.
    The user has added the site to their home screen on mobile or installed the PWA on desktop.
    Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.

    You may need to use the Video element if the video needs to include audio.

    Best regards,
    Ismael

    in reply to: Kontaktformular #1474916

    Hey dsignoWerbung,

    Thank you for the inquiry.

    If you need to use Gmail email addresses, you may need to install an SMTP plugin. Please refer to this documentation for more info on troubleshooting issues with the contact form: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Best regards,
    Ismael

    in reply to: How do I place a photo next to text #1474915

    Hi,

    Would you mind providing a screenshot of where you need the button to be located? 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: Icon List Element is not working on mobile #1474914

    Hi,

    You’re welcome! Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Great! Glad to know that this has been resolved. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Add line of text under Reviews on Products pages #1474909

    Hi,

    If you want to add a custom text with random sales numbers, just edit the value of the sales_text_last_month custom field and then adjust the filter a bit.

    add_action('woocommerce_single_product_summary', 'av_show_product_sales', 6);
    
    function av_show_product_sales() {
        global $product;
    
        if (!($product instanceof WC_Product)) {
            return;
        }
    
        $custom_message = get_post_meta($product->get_id(), '_sales_text_last_month', true);
    
        if (!empty($custom_message)) {
            printf('<p class="product-sales-count">%s</p>', esc_html($custom_message));
        }
    }

    Again, you can refer to this documentation on how to add or update custom fields: https://woocommerce.com/document/custom-product-fields/

    Best regards,
    Ismael

    in reply to: Adding 3rd Party Cookies #1474908

    Hey SikoraEDV,

    Thank you for the inquiry.

    As stated in the Additional Cookies description, it may not be possible to remove all cookies using JavaScript or PHP due to browser security limitations. You may need to look for another privacy cookie extension or make sure to include the Google Analytics embed code in the Enfold > Google Services > Google Analytics Tracking Code field in order to use the default privacy toggle.

    Define additional custom cookies set by plugins. <strong>There are browser security limitations and it might not be possible to remove them using JavaScript or PHP</strong>. Cookies must be in the same domain and you need to specify the name and the path (case sensitive) that is shown in the developer tools of your browser. Please see Additional Custom Cookies on our documentation.

    Best regards,
    Ismael

Viewing 30 posts - 1,651 through 1,680 (of 66,092 total)