Forum Replies Created

Viewing 30 posts - 511 through 540 (of 64,588 total)
  • Author
    Posts
  • 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

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

    Hey agenturwendt,

    Thank you for the inquiry.

    I tried targeting .category-kundenstimmen time.slide-meta-time.updated with CSS, but it didn’t work.

    Try to use this css code instead:

    .page-id-167 .slide-meta-time.updated {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Adding Google tag code to website #1472678

    Hey amyncuih,

    Thank you for the inquiry.

    Yes, you can add both embed codes in the Google Analytics field or use hooks such as wp_head if you want to separate the Google Tag embed code.

    Example:

    function ava_add_google_tag_code() {
        ?>
        <!-- Google Tag Embed Code -->
        <script async src="https://www.googletagmanager.com/gtag/js?id=YOUR_TAG_ID"></script>
        <script>
            window.dataLayer = window.dataLayer || [];
            function gtag(){dataLayer.push(arguments);}
            gtag('js', new Date());
            gtag('config', 'YOUR_TAG_ID');
        </script>
        <?php
    }
    add_action('wp_head', 'ava_add_google_tag_code');
    
    

    More info: https://developer.wordpress.org/reference/hooks/wp_head/

    Best regards,
    Ismael

    in reply to: Post Slider: make images clickable #1472563

    Hi,

    Thank you for the inquiry.

    As mentioned by @Guenni007 above, the preview image should be clickable by default. Could you provide a link to the page with the post slider element?

    Best regards,
    Ismael

    in reply to: Redakteur User bringt Fehlermeldung #1472562

    Hi,

    Thank you for the update.

    We may need to access the site using an admin and editor account. Please provide the info in the private field and make sure that the theme is updated to version 6.0.6.

    Best regards,
    Ismael

    in reply to: Reduce space top and bottom of banner #1472560

    Hi,

    Thank you for the inquiry.

    We added this css code to reduce the default padding of the main container and the color section below the image.

    #top #main .avia-section .template-page {
        padding-top: 0;
    }
    
    .template-page.content.av-content-full.alpha.units.av-enable-shadow {
        padding-top: 0;
    }

    Please note that this modification will be applied globally and will impact all color sections.

    Best regards,
    Ismael

    in reply to: Unable to find the White Background setting for Header #1472559

    Hey bambinou1980,

    Thank you for the inquiry.

    You can change this in the Enfold > General Styling > Logo Area tab — adjust the value of the Alternate Background Color option.

    Best regards,
    Ismael

    in reply to: Ultimate member date picker appears under header #1472558

    Hi,

    Thank you for the info.

    Unfortunately, we won’t be able to provide an appropriate solution without inspecting the elements. You may need to adjust the z-index of the parent container where the datepicker is located. Even if the z-index is set to 10,000, it won’t have the desired effect if the element is within a container that has a lower z-index relative to its siblings.

    Best regards,
    Ismael

    in reply to: Mega Menu horizontal view #1472557

    Hi,

    Thank you for the update.

    The second column moved to the bottom because the checkbox labeled “This column should start a new row” was selected. We have now deselected the checkbox.

    Best regards,
    Ismael

Viewing 30 posts - 511 through 540 (of 64,588 total)