Forum Replies Created

Viewing 30 posts - 31 through 60 (of 67,145 total)
  • Author
    Posts
  • in reply to: enfold icon circles element accessibility #1494079

    Hi,

    It’s possible, but you’ll need to modify the enfold/config-templatebuilder/avia-shortcodes/icon_circles/icon_circles.js file. Unfortunately, this is beyond the scope of our support. Let us know if you have any other questions.

    Best regards,
    Ismael

    Hi,

    Thank you for your patience. We’ll keep the thread open.

    Best regards,
    Ismael

    in reply to: Search icon missing on smaller screens? #1494060

    Hi,

    Great! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Different font colour for logged in and out users #1494059

    Hi,

    Glad to know this has been resolved! Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: enfold icon circles element accessibility #1494058

    Hey sky19er,

    Thank you for the inquiry.

    You can set each item’s Advanced > Link Settings > Icon Link to Set Manually, then add arbitrary anchor links to make the circles tabbable. Let us know the result.

    fgBdrIs.md.png

    Best regards,
    Ismael

    Hey dlambers,

    Thank you for the inquiry.

    We copied the html into a test page and it seems to be working as expected (see private field). Please create a test page so we can check the issue properly.

    Best regards,
    Ismael

    in reply to: Contact Form not sending emails #1494010

    Hi,

    Thank you for the update.

    Have you tried the steps provided in the following link? https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Try to configure a plugin like WP Mail SMTP using your domain email (eg. (Email address hidden if logged out) ) to make sure messages are sent via an authenticated mail server, set the form’s From email to match your domain (avoid gmail, yahoo or outlook), and make sure SPF/DKIM/DMARC records are correct — please contact your hosting or email provider. If the issues persist, consider using Contact Form 7, Gravity Forms or WPForms.

    Best regards,
    Ismael

    in reply to: CPT Sticky Posts in Masonry #1494009

    Hi,

    What is the format of the termin_datum date field? Have you tried setting the format to Ymd or Y-m-d? WordPress meta_query with the type “DATE” expects the value in YYYY-MM-DD format or YYYYMMDD, so adjusting the date field format might help.

    https://developer.wordpress.org/reference/classes/wp_meta_query/

    The ‘type’ DATE works with the ‘compare’ value BETWEEN only if the date is stored at the format YYYY-MM-DD and tested with this format.

    Best regards,
    Ismael

    in reply to: Use of, AVIA editor in popup maker plugin #1494008

    Hi!

    Looks like this is no longer possible based on our previous reply: https://kriesi.at/support/topic/use-of-avia-editor-in-popup-maker-plugin/#post-1467843

    Please continue in this thread: https://kriesi.at/support/topic/pop-up-maker/

    Cheers!
    Ismael

    in reply to: Missing eye icon on login page #1494007

    Hi,

    Thank you for the clarification.

    You can try this css code to apply your own toggle password icon to the password input field.

    .show-password-input {
      width: 24px;
      height: 24px;
      border: 0;
      background-color: transparent;
      background-repeat: no-repeat;
      background-position: center;
      cursor: pointer;
      position: absolute;
      top: 4px;
      right; 9px;
    }
    
    .show-password-input[aria-label="Show password"] {
      background-image: url("eye-closed.svg");
    }
    
    .show-password-input[aria-label="Hide password"] {
      background-image: url("eye-open.svg");
    }

    Make sure to replace eye-closed.svg and eye-open.svg images with your own images.

    Best regards,
    Ismael

    in reply to: Logo Text appearing under logo on mobile only #1494006

    Hi,

    Thank you for the clarification.

    Yes, you can disable the background video of the Color Section on mobile view. Please make sure to purge the cache before checking the page on your mobile device.

    fSkGTnn.md.png

    Best regards,
    Ismael

    in reply to: Pop Up Maker #1494005

    Hey condonp,

    Thank you for the inquiry.

    Do you want to enable the ALB for the popup maker? We are not sure if this is possible and we may need to check the element to properly understand the issue. Please create a test page, then include the URL in the private field.

    Best regards,
    Ismael

    in reply to: Easy slider with lightbox #1494004

    Hi,

    Thank you for the inquiry.

    Edit the slides in the Easy Slider, then configure the options in the Advanced > Link Settings panel, as shown in the screenshot below.

    fSknMEg.md.png
    Best regards,
    Ismael

    in reply to: add description to video elements for accessibility #1494003

    Hey sky19er,

    Thank you for the inquiry.

    We recommend using an embed code so you don’t need to modify the video templates in the theme.
    You can use the Text or Code Block element to add the embed code.

    If you do want to proceed with the modification, you can find the video element template in the
    config-templatebuilder/avia-shortcodes/video/video.php file.

    Let us know if you need more info.

    Best regards,
    Ismael

    Hi,

    Great! Glad to know that this has been resolved. Please don’t hesitate to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the link.

    We adjusted the script a bit, added change detection to the .av-masonry-container, then apply the target attribute to its child elements or entries. It should work correctly now.

    add_action('wp_footer', function () {
        ?>
        <script>
        jQuery(function ($) {
            function applyTargetBlank(container) {
                container.find('a').each(function () {
                    if (!$(this).attr('target') || $(this).attr('target') !== '_blank') {
                        $(this).attr('target', '_blank');
                    }
                });
            }
    
            var masonryContainer = $('.av-masonry-container');
    
            applyTargetBlank(masonryContainer);
    
            var observer = new MutationObserver(function (mutationsList) {
                mutationsList.forEach(function (mutation) {
                    if (mutation.addedNodes.length) {
                        $(mutation.addedNodes).each(function () {
                            if ($(this).hasClass('av-masonry-entry') || $(this).find('.av-masonry-entry').length) {
                                applyTargetBlank($(this));
                            }
                        });
                    }
                });
            });
    
            if (masonryContainer.length) {
                observer.observe(masonryContainer[0], {
                    childList: true,
                    subtree: true
                });
            }
    
            $(window).on('debouncedresize', function () {
                setTimeout(function () {
                    applyTargetBlank(masonryContainer);
                }, 2000);
            });
    
            $(document).on('click', '.av-masonry-load-more', function () {
                setTimeout(function () {
                    applyTargetBlank(masonryContainer);
                }, 2000);
            });
    
        });
        </script>
        <?php
    }, 9999);
    

    Best regards,
    Ismael

    in reply to: Search icon missing on smaller screens? #1493944

    Hi,

    Thank you for the clarification.

    The search icon is not visible due to these css modifications.

    fSfVBHX.md.png

    Make sure to place the css code that we suggested below the css rules shown in the screenshot.

    Best regards,
    Ismael

    in reply to: How to get more space between Portfolio Grid pictures? #1493943

    Hi,

    Thank you for the update.

    Try to use this css code instead:

    #top .grid-sort-container .no_margin.av_one_third.grid-entry {
        width: 30%;
        margin-right: 3%;
    }

    Result:

    fSfEpg1.md.png

    Best regards,
    Ismael

    in reply to: portfolio grid styling #1493941

    Hi,

    Thank you for the update.

    You can add this css code to make the grid items transparent and add spaces between them.

    #top .grid-entry.av_one_fourth {
        width: 20%;
        margin-right: 5%;
    }
    
    #top .grid-entry .inner-entry {
        background-color: transparent;
    }
    
    #top .grid-entry .grid-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Contact Form not sending emails #1493939

    Hi,

    Thank you for the inquiry.

    The contact form seems to be sending messages properly when we tested it, as shown in the screenshot below. Is this still an issue?

    fSfYlDB.md.png

    Best regards,
    Ismael

    in reply to: WooCommerce Features not working #1493938

    Hi,

    WooCommerce filter to our home page.

    Please note that the default Woocommerce filters or widgets will only display on standard product pages or templates, such as product category pages or the base shop page. They will not display on custom pages, such as your homepage. This behavior is determined by the widget function, which we don’t have control over. You may need to look for a custom solution if you want to display filters on the homepage.

    For the single product page, please try to follow these steps: https://kriesi.at/support/topic/enfold-sidebar-on-single-product-pages/#post-1162484

    Best regards,
    Ismael

    in reply to: Search icon missing on smaller screens? #1493937

    Hi,

    Thank you for the update.

    The search icon is visible even when we are not logged in as shown in the screenshot below.

    fSfI914.md.png

    Please try to clear the browser cache or check the site in incognito mode.

    Best regards,
    Ismael

    in reply to: Contact form has stopped working on several websites #1493936

    Hey Andrew,

    Thank you for the inquiry.

    Have you tried setting a From address or activating an SMTP plugin? You should also try using a different email address to test whether the issue is related to the email provider. Please check the link below for more information on how to troubleshoot contact form issues:

    We would like to check this further, but it looks like you may have forgotten to include the site URL in the private field. Please provide this information so we can investigate the issue further.

    Best regards,
    Ismael

    in reply to: Portfolio Navigation #1493935

    Hi,

    Thank you for the update.

    that if not using a fullscreen Slider the portfolio navigation disappears completely

    The post navigation should not be affected by the slider — it should actually not display when a slider is added to a page, not the other way around. Please create a test page and post the URL in the private field so we can check the issue properly.

    To bring back the post navigation on mobile view, please add this css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .avia-post-nav {
        display: block;
      }
    }

    Best regards,
    Ismael

    in reply to: Footer #1493934

    Hi,

    Thank you for the update.

    Do you have a site backup or restore point? Please create one if you haven’t already. Try to deactivate all plugins, then check the Widgets panel to see if anything changes. After that, reactivate the plugins one at a time until the custom widget editor returns. This should help you identify the plugin responsible for the custom widget panel.

    Best regards,
    Ismael

    in reply to: Text over Fullscreen slider #1493933

    Hey Sonno,

    Thank you for the inquiry.

    Add a Fullscreen Slider, then add a Color Section below it with a unique ID or Custom CSS Class. You can then apply some css modifications to move the Color Section over the slider and set its background to transparent. If you can create a test page, we’ll try to check it further.

    https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: ALB is not working on all Facets #1493932

    Hi,

    Unfortunately, we don’t provide support for third-party plugins as stated in our support policy. You may need to contact the plugin developers and ask them to inspect the site.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    (removing the custom code and using only the Enfold Theme Options field with a 512x512px PNG)

    Have you tried using an actual favicon or .ico file instead of a png? Again, we checked the site on a favicon validator and it can properly detect the icon. It’s also visible in the browser tabs.

    We found these markups, which might be conflicting with the default favicon. These are not generated by the theme.

    fSKy1Cg.md.png

    Best regards,
    Ismael

    in reply to: Missing eye icon on login page #1493930

    Hey SurigliaStudio,

    Thank you for the inquiry.

    The input fields on the login and registration pages don’t have that feature or option by default. It’s a custom icon implemented on custom login pages and it’s not a default browser feature. Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Logo Text appearing under logo on mobile only #1493929

    Hey Tia,

    Thank you for the inquiry.

    The text is actually part of the youtube video. Please edit the slider and make sure the video is muted so it can play automatically without displaying the video title. Let us know the result.

    fSKtvDu.md.png

    Best regards,
    Ismael

Viewing 30 posts - 31 through 60 (of 67,145 total)