Forum Replies Created

Viewing 30 posts - 3,481 through 3,510 (of 67,565 total)
  • Author
    Posts
  • in reply to: Activate shop banner for product tags #1472899

    Hi,

    Great! Glad to know that you found a working solution. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. Glad to know that the suggestion worked. To remove the background of the caption text, please include the following code inside the css media query:

    .avia-slideshow.av-m3vkqh71-4e1d1fba30600cffcf1218dbcfe528bd .avia-caption .avia-caption-title {
        background: transparent;
    }

    Best regards,
    Ismael

    in reply to: iFrames and lightbox for various views #1472897

    Hi,

    But: Where do I enter “a custom class to the masonry : mixed-contenttype”

    Try adding the custom class in the Advanced > Developer Settings > Custom CSS Class field.

    declare “custom-links to those images ( video or website urls)”?

    When selecting images for the Masonry Gallery in the Media > Library, there should be a Custom Link field, right on top of the Copyright field. Please check the screenshot in the private field.

    Best regards,
    Ismael

    in reply to: meta description vs. excerpt #1472895

    Hey williamslyd,

    Thank you for the inquiry.

    What happens when you add this hook?

    add_action('wp_head', function () {
        remove_action('wp_head', 'wp_no_robots'); 
        remove_action('wp_head', 'wp_generator'); 
        remove_action('wp_head', 'wp_robots'); 
    });
    

    This should disable the default rendering of meta robots tags.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    How can we share screenshots here ?

    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: Changing Icon to Client logo icon #1472885

    Hi,

    For the list in the footer container, please add this at the very bottom:

    #top #main #footer-page ul.avia-icon-list.av-iconlist-small li:before {
        background-image: url(/wp-content/uploads/2024/12/ProfoundPlanning_Stacked_White.png);
    }

    Best regards,
    Ismael

    in reply to: Prev next arrows on post with in same taxonomy #1472883

    Hey tonyiatridis,

    Thank you for the inquiry.

    The post navigation seems to be displaying correctly when checked. If you need the navigation to display only a single category, please add this filter to the functions.php file:

    add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1);
    function avf_post_nav_settings_mod($settings)
    {
        $settings['same_category'] = true;
        return $settings;
    }

    Best regards,
    Ismael

    in reply to: No pages loading on iphone #1472880

    Hey whdsolutions,

    Thank you for the inquiry.

    It seems to be an issue with the animation. Please add this css code to temporarily fix the issue:

    @media only screen and (max-width: 989px) {
    	/* Add your Mobile Styles here */
    	.avia_transform .av-animated-generic {
    		opacity: 1;
    	}
    }
    

    Best regards,
    Ismael

    in reply to: Slider height responsive #1472878

    Hi,

    Thank you for the update.

    The images appear fully visible on our end with a screen resolution of 1920x1080px. What is your monitor’s screen resolution? If you want the image to match the height of the browser, you could try using the Fullscreen Slider.

    Best regards,
    Ismael

    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

Viewing 30 posts - 3,481 through 3,510 (of 67,565 total)