Forum Replies Created

Viewing 30 posts - 2,041 through 2,070 (of 66,126 total)
  • Author
    Posts
  • in reply to: Enabling reCAPTCHA #1472877

    Hi,

    Thank you for the inquiry.

    You have the option to automatically refresh the page once the user accept the cookies. Please go to Enfold > Privacy & Cookies > Cookie Handling > Advanced Options section, then adjust the Auto Reload Page settings accordingly. Another option is to add a note instructing users to refresh the page after accepting the cookies.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We adjusted the css a bit — please try it again. The icon is inside the content property

    content: '';
    

    In order to extract an icon or symbol, you will need to inspect the element (button, icon list etc) with the icon and copy the value of the data-av_icon attribute. Please refer to the documentation below to learn more about inspecting elements in the browser.

    // https://kriesi.at/documentation/enfold/add-custom-css/#how-to-inspect-an-element-on-the-page

    Best regards,
    Ismael

    in reply to: No pagination on author’s blog #1472872

    Hi,

    It hides buttons but still divides content to pages

    If you want to display all posts, adjust the value of the Blog pages show at most field in the Settings > Reading panel. If the Advanced Layout Builder is active for the blog page, make sure that the posts element’s (Blog Posts, Magazine, Masonry, etc.) Styling > Pagination > Post Number is set to All.

    Best regards,
    Ismael

    in reply to: Problems with images not showing up and more #1472870

    Hi,

    Thank you for the login token.

    Notice the second set of images. These are not the same height.

    Which set are you referring to? The logo images seem to be displaying correctly, and the image Nyheter-Komplett-Taksering.jpg seems to have the same height as the image beside it. Please provide a screenshot of the issue using platforms like Savvyify, Imgur, or Dropbox.

    Best regards,
    Ismael

    in reply to: Deep link and open tab #1472868

    Hi!

    Thank you for the update.

    We adjusted the script a bit — please try it again. If it’s still not working, please provide the login details in the private field so that we can test it.

    function ava_custom_script_tab_section_scroll() {
        ?>
        <script type="text/javascript">
            (function($) {
                function avScrollToTab(hash) {
                    if (!hash) return;
    
                    var anchorElement = $('[href="' + hash + '"]');
                    var parentTab = anchorElement.closest('.av-layout-tab');
                    var tabSectionId = parentTab.data('tab-section-id');
    
                    if (tabSectionId) {
                        var targetTab = $('.av-section-tab-title[href="#' + tabSectionId + '"]');
                        if (targetTab.length) {
                            var position = targetTab.offset().top;
    
                            targetTab.trigger('click');
    
                            setTimeout(function() {
                                $('html, body').animate({ scrollTop: position - 100 }, 500);
                            }, 300);
                        }
                    }
                }
    
                $(document).ready(function() {
                    $(window).on('load', function() {
                        avScrollToTab(window.location.hash);
                    });
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_tab_section_scroll', 9999);
    
    

    Best regards,
    Ismael

    in reply to: Google Fonts Locally #1472866

    Hi,

    Will it work with google fonts too

    Yes, you can download the Google font and then add the @font-face rule to manually load it.

    Example:

    @font-face {
        font-family: 'Open Sans';
        src: url('https://cdn.example.com/fonts/OpenSans-Regular.woff2') format('woff2'),
             url('https://cdn.example.com/fonts/OpenSans-Regular.woff') format('woff');
        font-weight: 400; /* Regular */
        font-style: normal;
    }
    
    @font-face {
        font-family: 'Open Sans';
        src: url('https://cdn.example.com/fonts/OpenSans-Bold.woff2') format('woff2'),
             url('https://cdn.example.com/fonts/OpenSans-Bold.woff') format('woff');
        font-weight: 700; /* Bold */
        font-style: normal;
    }
    

    Best regards,
    Ismael

    in reply to: Embedded Google maps aren’t rendering #1472864

    Hi,

    Thank you for the update.

    The map seems to be displaying correctly on the contact page, as shown in the screenshot below (see private field). Did you manage to resolve the issue? If not, please provide the login details in the private field so we can investigate further.

    Best regards,
    Ismael

    in reply to: Deep link and open tab #1472771

    Hi,

    Thank you for the update.

    Please try this script instead:

    function ava_custom_script_tab_section_scroll() {
        ?>
        <script type="text/javascript">
            (function($) {
                function avGetHashFromEvent(event, target) {
                    if (event === 'load') {
                        return window.location.hash;
                    }
                    var locationHash = $(target).attr('href');
                    return locationHash ? locationHash.substring(locationHash.indexOf('#')) : '';
                }
    
                function avScrollToTab(hash) {
                    if (!hash) return;
    
                    var tab = $('.av-section-tab-title[href="' + hash + '"]');
                    var parentContainer = tab.closest('.av-tab-section-outer-container');
    
                    if (tab.length && parentContainer.length) {
                        var position = parentContainer.offset().top;
    
                        tab.trigger('click');
    
                        setTimeout(function() {
                            $('html, body').animate({ scrollTop: position - 100 }, 500);
                        }, 300);
                    }
                }
    
                function avTriggerScrollToTab(selector, event) {
                    $(selector).on(event, function(e) {
                        var hash = avGetHashFromEvent(event, this);
                        avScrollToTab(hash);
                    });
                }
    
                $(document).ready(function() {
                    var tabs = $('.av-tab-section-container');
                    if (tabs.length === 0) return;
    
                    avTriggerScrollToTab('.menu-item a', 'click');
    
                    $(window).on('load', function() {
                        avScrollToTab(window.location.hash);
                    });
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_tab_section_scroll', 9999);
    
    

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    The _avia_builder_shortcode_tree is created using the build_shortcode_tree function, which can be found in the enfold\config-templatebuilder\avia-template-builder\php\class-shortcode-helper.php file. It retrieves the shortcodes, parses the content, and builds a structured tree of shortcodes, including their attributes and content. Unfortunately, the internal workings of the template builder are not documented.

    The _av_alb_posts_elements_state is an array containing all the shortcodes or elements in the page.

    Best regards,
    Ismael

    in reply to: Remove featured image expand in posts #1472769

    Hi!

    I want exactly that, but using the featured image instead of having to insert it in the content and hide the featured one, which I am doing now.

    You will need to make the modifications we suggested above. This will move the featured image below the title.

    Best regards,
    Ismael

    Hey Uli,

    Thank you for the inquiry.

    We cannot reproduce the issue on our local installation, so it is likely a plugin conflict or an issue with a custom script. Please temporarily disable all plugins and try exporting one of the slides. Let us know the result.

    Best regards,
    Ismael

    in reply to: Modify mega menu to be full screen width #1472767

    Hi,

    We’ll keep the thread open. Let us know if you need more assistance.

    Best regards,
    Ismael

    in reply to: Changing Icon to Client logo icon #1472766

    Hi,

    Thank you for the update.

    We added Guenni’s code in the Quick CSS field and updated the image URL. Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: Text after TAX field, or after tax calcualtion #1472765

    Hi,

    This text pops up when filling in the fields.

    Suspicious activity has been detected. If you believe this to be an error, please contact  (Email address hidden if logged out) .
    

    Please disable it temporarily.

    We adjusted the script a bit and added the updated_checkout event. Please try it again:

    function av_custom_script_tax_exempt() { ?>
      <script>
        window.addEventListener('DOMContentLoaded', function() {
          (function($) {
            $(function() {
              function updateTaxLabel() {
                $('.cart_totals .tax-total th, #order_review .tax-total th').each(function() {
                  var text = $(this).text();
                  if (text.includes('Tax')) {
                    $(this).html(text.replace('Tax', 'Tax (<a href="https://example.com/tax-exempt-info" target="_blank">Tax Exempt?</a>)'));
                  }
                });
              }
    
              setTimeout(updateTaxLabel, 2000);
    
              $(document.body).on('updated_checkout', function() {
                updateTaxLabel();
              });
            });
          })(jQuery);
        });
      </script>
    <?php
    }
    add_action('wp_footer', 'av_custom_script_tax_exempt', 99);
    

    Best regards,
    Ismael

    in reply to: INSERT WIDGET YITH REQUEST A QUOTE IN HEADER #1472764

    Hi,

    Thank you for the update.

    You can use this css code to adjust the position of the header widget:

    #top #header .widget_ywraq_mini_list_quote {
        position: absolute;
        right: 20px;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We removed this code from the functions.php file:

     add_filter('use_block_editor_for_post', '__return_false', 10);
    

    Then adjusted the Enfold > Theme Options > Select Your Editor settings to activate the classic editor.

    Best regards,
    Ismael

    in reply to: Hide Post Date for Specific Category in Blog Posts #1472762

    Hi,

    UPDATE: Looks like Günter has already read this thread. Please wait for his response

    Best regards,
    Ismael

    in reply to: Hide Post Date for Specific Category in Blog Posts #1472760

    Hi,

    Thank you for the modification @Guenni007. We’ll forward the info to our channel.

    These checks seem to be incorrect:

    if($post_type = 'post'){
    
     if($post_type = 'portfolio'){
    

    Best regards,
    Ismael

    Hey JoStudioDeRijp,

    Thank you for the inquiry.

    There is no option for this by default but you can try this css code to insert an icon in the slider button.

    #top .av-slideshow-caption.av-jqqjz4n5-fe3605ba570a187c18a9e721a6eef45d__0 .avia-slideshow-button:before {
        display: block;
        width: 10px;
        height: 10px;
        position: absolute;
        left: 12px;
        top: 15px;
        content: '';
        font-family: 'entypo-fontello';
    }
    
    #top .av-slideshow-caption.av-jqqjz4n5-fe3605ba570a187c18a9e721a6eef45d__0 .avia-slideshow-button {
        padding-left: 30px;
    }
    

    Best regards,
    Ismael

    in reply to: Google Fonts Locally #1472757

    Hey ibuzaev,

    Thank you for the inquiry.

    You can upload Google Fonts using the Custom Font Manager and load them locally, but we’re not sure if they will be compatible with your CDN. If this is not possible, you may need to rely on third-party plugins to load the fonts. Please check the link below for more info.

    // https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts

    Best regards,
    Ismael

    in reply to: Enabling reCAPTCHA #1472756

    Hey ashleyknow,

    Thank you for the inquiry.

    Did you enable Privacy and Cookies > Cookie Handling > Enable cookie consent messages? Please note that when the cookie consent form is enabled, all external services, including reCAPTCHA, will be disabled by default until the user gives their consent. You can change this behavior by adjusting the Default Cookie Behaviour to the first or second option.

    Best regards,
    Ismael

    in reply to: No pagination on author’s blog #1472755

    Hey ibuzaev,

    Thank you for the inquiry.

    There is no option for this by default but you can use this css code to hide the pagination.

    #top .pagination .current, #top .pagination a, #top .fullsize .template-blog .pagination a {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Slider height responsive #1472754

    Hi,

    Thank you for the update.

    The slider images were fully visible above the fold when we checked. Did you figure it out?

    Best regards,
    Ismael

    in reply to: Remove featured image expand in posts #1472753

    Hi,

    If you need to move the featured image below the post title, edit the includes > loop-index.php file and replace its contents with the following code: https://pastebin.com/CABttvQL

    Best regards,
    Ismael

    in reply to: Filled section bug #1472752

    Hi,

    Glad to know the suggestions helped. The tambourine dancing probably made the biggest difference! Let us know if you have any more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Do you have some information about the expected values of each of these meta fields ?

    In your database, you can examine one of the pages built with the Advanced Layout Builder and search for the associated fields to understand the content each field holds. You can use the following query:

    SELECT meta_key, meta_value
    FROM wp_postmeta
    WHERE post_id = <your_post_id>
      AND meta_key IN (
        '_aviaLayoutBuilder_active',
        '_aviaLayoutBuilderCleanData',
        '_avia_builder_shortcode_tree',
        '_alb_shortcode_status_content',
        '_alb_shortcode_status_clean_data',
        '_alb_shortcode_status_preview',
        '_avia_sc_parser_state',
        '_av_alb_posts_elements_state',
        '_av_el_mgr_version'
      );
    

    Replace with the ID of the page. Make sure to create a database backup before proceeding.

    Best regards,
    Ismael

    in reply to: Changing Icon to Client logo icon #1472684

    Hey Maggie,

    Thank you for the inquiry.

    Try to use this css code to replace the icon with a custom image:

    .avia-icon-list-container.av-m3t1foql-7e88455370655a2aff70020b470afc59 .iconlist-char:after {
        content: '';
        display: block; 
        width: 50px; 
        height: 50px;
        background: url('IMAGE URL HERE') no-repeat center center;
        background-size: contain; 
    }
    
    .avia-icon-list-container.av-m3t1foql-7e88455370655a2aff70020b470afc59 .iconlist-char:before {
        display: none;
    }

    Make sure to adjust the image URL.

    Best regards,
    Ismael

    in reply to: Filled section bug #1472682

    Hey ibuzaev,

    Thank you for the inquiry.

    Looks like the post css file is missing. Please try to temporarily disable the Enfold > Performance > File Compression settings and purge the cache. Let us know of the result.

    Best regards,
    Ismael

    Hey icarogioiosi,

    Thank you for the inquiry.

    Where can we check the issue? Please provide the live URL in the private field so we can review the grid. In the meantime, make sure that the items in the grid are an even number if you are unsatisfied with the current layout.

    Best regards,
    Ismael

    in reply to: ajax portfolio grid equal height 2 #1472680

    Hey icarogioiosi,

    Thank you for the inquiry.

    Have you tried adjusting the selector to “.av-portfolio-grid-sorting-container”? Let us know once the site is live so that we can inspect the element directly.

    Best regards,
    Ismael

Viewing 30 posts - 2,041 through 2,070 (of 66,126 total)