Forum Replies Created

Viewing 30 posts - 211 through 240 (of 64,578 total)
  • Author
    Posts
  • in reply to: Icon List Element is not working on mobile #1474696

    Hi,

    Sorry for the confusion. There are no padding settings for the element, but you can add the css code in the Enfold > General Styling > Quick CSS field or the child theme’s style.css file. If you need further assistance, you can share the login details in the private field and we’ll add it for you.

    Best regards,
    Ismael

    in reply to: Auto start horizontal gallery #1474695

    Hey mikeb254,

    Thank you for the inquiry.

    You can enable the Gallery Image Rotation in the Advanced > Animation panel. Please make sure to clear the cache after making any adjustments to the settings.

    Best regards,
    Ismael

    in reply to: Enfold and editing #1474693

    Hey Gareth Ramsden,

    Thank you for the inquiry.

    The theme is compatible with Elementor, but we recommend using Enfold’s built-in Advanced Layout Builder (ALB) instead. ALB serves as the default layout and template creator for the Enfold theme. For more info, you can refer to the documentation.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/

    Best regards,
    Ismael

    in reply to: Icon List Element is not working on mobile #1474692

    Hey vancestone,

    Thank you for the inquiry.

    It seems there is an issue with the padding. Please edit the element to adjust the padding values for mobile view, or add the following css code:

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      #top .flex_column.av-m4wep313-3e980d8dcd4f559ad7b43a97ffcbf586 {
        padding: 0;
      }
    }

    Please make sure to purge the cache and toggle the compression settings before testing.

    Best regards,
    Ismael

    in reply to: SKU field #1474509

    Hi,

    Try to update the ava_shortcode_sku_and_ean function with this:

    function ava_shortcode_sku_and_ean( $atts ) {
        $atts = shortcode_atts(
            array(
                'id' => '',
            ),
            $atts
        );
    
        $product_id = !empty( $atts['id'] ) ? intval( $atts['id'] ) : get_the_ID();
        if ( !$product_id ) {
            return '';
        }
    
        $product = wc_get_product( $product_id );
        if ( !$product ) {
            return '';
        }
    
        $sku = $product->get_sku();
        $ean = get_post_meta( $product->get_id(), 'EAN1', true );
    
        $output = '';
        if ( $ean || $sku ) {
            $output .= '<div class="av-product-meta av-product-meta-sku av-product-meta-ean">';
            if ( $ean ) {
                $output .= '<span><strong>EAN:</strong> ' . esc_html( $ean ) . '</span>';
            }
            if ( $sku ) {
                $output .= '<span><strong>SKU:</strong> ' . esc_html( $sku ) . '</span>';
            }
            $output .= '</div>';
        }
    
        return $output;
    }
    add_shortcode( 'av_sku_ean', 'ava_shortcode_sku_and_ean' );

    If you need to apply more space between them, add this css code:

    .av-product-meta-sku.av-product-meta-ean span {
       margin-right: 20px;
    }
    

    Best regards,
    Ismael

    in reply to: Demo content doesn’t install #1474508

    Hi,

    Thank you for the update.

    Have you tried installing a different local server, such as Local by Flywheel, DevKinsta, or DesktopServer? You can also test it on InstaWP or TasteWP. It’s possible that there are missing configurations in your current local server. Please try testing it with a different server.

    Best regards,
    Ismael

    in reply to: Unexpected Redirects Referencing Avia-Elements #1474507

    Hey Jurre Robertus,

    Thank you for the inquiry.

    Those are probably paginated pages with proper canonical tags to avoid duplicate content. Please check this thread: https://kriesi.at/support/topic/google-search-console-avia-element-entries/#post-1474267

    Best regards,
    Ismael

    in reply to: Color Section Glitch? #1474506

    Hi,

    Thank you for the update.

    The Code Blok element containing the map embed doesn’t load on our end either. We tried saving the content of the footer page as a template, but it failed. Have you tried deleting the Code Block element?

    Best regards,
    Ismael

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

    Hey bemodesign,

    Thank you for the inquiry.

    You can add this template hook in the functions.php file:

    add_action('woocommerce_single_product_summary', 'av_show_product_sales', 6);
    
    function av_show_product_sales() {
        global $product;
    
        if (!$product instanceof WC_Product) {
            return;
        }
    
        $product_id = $product->get_id();
        $start_date = date('Y-m-01', strtotime('first day of last month'));
        $end_date = date('Y-m-d', strtotime('tomorrow'));
    
        $args = [
            'status' => ['wc-completed', 'wc-processing'],
            'limit' => -1,
            'date_created' => $start_date . '...' . $end_date,
        ];
    
        $orders = wc_get_orders($args);
        $sales_count = 0;
    
        foreach ($orders as $order) {
            foreach ($order->get_items() as $item) {
                if ($item->get_product_id() == $product_id) {
                    $sales_count += $item->get_quantity();
                }
            }
        }
    
        if ($sales_count > 0) {
            echo '<p class="product-sales-count">' . esc_html($sales_count) . '+ bought in the past month</p>';
        }
    }
    

    Best regards,
    Ismael

    in reply to: Extra large white spaces #1474504

    Hi,

    Thank you for the update.

    It seems to be an issue with the image overlay. Please try to add this css code:

    #top .image-overlay.overlay-type-image {
        position: absolute !important;
    }

    Best regards,
    Ismael

    in reply to: Custom Menu-bar Shape – Part 2 #1474503

    Hi,

    Thank you for the info.

    Try to add this css code to adjust the position and size of the logo, and also make sure that it can overflow outside the header container.

    div .avia-svg-logo, div .avia-svg-logo a {
        overflow: visible;
    }
    
    div .avia-svg-logo {
        float: left;
        position: absolute;
        left: 200px;
        top: 0;
        z-index: 1;
    }
    
    div .avia-svg-logo svg {
        height: 140px !important;
    }

    Best regards,
    Ismael

    in reply to: transparent table #1474502

    Hi,

    You have to replace #av_section_1 with #av_section_2, or as suggested above, apply a custom css class name or ID to the color section element.

    .home #av_section_2.main_color .av_textblock_section .avia_textblock table,
    .home #av_section_2.main_color .av_textblock_section .avia_textblock div,
    .home #av_section_2.main_color .av_textblock_section .avia_textblock td {
        border-color: transparent;
        background-color: transparent;
    }
    
    .home #av_section_2.main_color .av_textblock_section .avia_textblock tr:nth-child(odd) {
        background-color: transparent;
    }
    

    Please check this link: https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    in reply to: Enfold Licence Renewal #1474501

    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: transparent table #1474468

    Hi,

    Thank you for the update.

    The dots are caused by this css code:

    #top .av_inherit_color a { text-decoration: underline; }
    

    Did you add this somewhere? You can override it with this css:

    #top .av_inherit_color a { text-decoration: none; }
    

    Best regards,
    Ismael

    in reply to: Need support #1474466

    Hey Claudia,

    Thank you for the inquiry.

    You can renew your support license through your ThemeForest account. For more info, please refer to this documentation: https://help.market.envato.com/hc/en-us/articles/207886473-Extend-or-renew-Item-Support

    Best regards,
    Ismael

    in reply to: Demo content doesn’t install #1474465

    Hey milongal,

    Thank you for the inquiry.

    Where is the site hosted? The import sometimes doesn’t work on certain hosts due to security restrictions or configurations. Have you tried manually importing the demo using the XML files? You could also test this on a local installation first, then transfer the result to the live site. For more info, please check this link: https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo

    Best regards,
    Ismael

    in reply to: SKU field #1474464

    Hi,

    You have to insert the custom shortcode ava_shortcode_sku_and_ean in the functions.php file and the actual shortcode in a Text or Code Block element.

    Best regards,
    Ismael

    in reply to: Ticker left and right aligned #1474463

    Hey schweg33,

    Thank you for the inquiry.

    Are you trying to adjust the width of the sliding text below the first section? Try to apply a custom css class or ID to the color section containing the ticker, then adjust the width of the container using css. For more info, please check this documentation: https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width.

    Best regards,
    Ismael

    in reply to: kriesi.at site crashes when attempting a search #1474462

    Hey zimbo,

    Thank you for the inquiry.

    Where can we check the issue? Please provide the site URL in the private field. As for the search error, this can sometimes occur due to invalid markup or code in the returned items. Try to adjust the time limit or use a slightly different keyword.

    Best regards,
    Ismael

    in reply to: Header Menu #1474461

    Hey Andreotti,

    Thank you for the inquiry.

    You can adjust the font size in Enfold > General Styling > Typography, and for additional configurations, you can edit the Main Menu elements in Enfold > Advanced Styling. Let us know if you need further assistance.

    Best regards,
    Ismael

    in reply to: Custom Menu-bar Shape – Part 2 #1474460

    Hi,

    Thank you for the update.

    Where can we check the site? Please provide the site URL in the private field.

    Best regards,
    Ismael

    in reply to: Video Media Element Does Not Loop #1474453

    Hi,

    Thank you for the update.

    We already edited the page and changed the URL previously — looping works after the update. Did you edit it again? Please make sure to purge the cache before testing or try using another browser.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    It’s not recommended to enable both the theme’s compression and the plugin’s, as they essentially perform the same function and could potentially create conflicts. You need to choose which compression option to use — the theme’s or the plugin’ — whichever works best for the site setup.

    The same can be said about this thread https://kriesi.at/support/topic/mega-menu-goes-left-off-screen-with-css-js-merge-compress-enabled/

    Best regards,
    Ismael

    in reply to: transparent table #1474450

    Hi,

    Thank you for the info.

    Try to replace the selector #av_section_1 with #av_section_2, or as suggested above, you can apply a custom css class name or ID to the color section element.

    .home #av_section_2.main_color .av_textblock_section .avia_textblock table,
    .home #av_section_2.main_color .av_textblock_section .avia_textblock div,
    .home #av_section_2.main_color .av_textblock_section .avia_textblock td {
        border-color: transparent;
        background-color: transparent;
    }
    
    .home #av_section_2.main_color .av_textblock_section .avia_textblock tr:nth-child(odd) {
        background-color: transparent;
    }
    

    Best regards,
    Ismael

    in reply to: SKU field #1474449

    Hi,

    Looks like you’re using the Advanced Layout Builder (ALB) for the products. Please note that the template hook (ava_display_sku_and_ean) above will not work if ALB is active. To use it, you’ll need to switch to the default editor.

    You can also create a custom shortcode:

    function ava_shortcode_sku_and_ean( $atts ) {
        $atts = shortcode_atts(
            array(
                'id' => '',
            ),
            $atts
        );
    
        $product_id = !empty( $atts['id'] ) ? intval( $atts['id'] ) : get_the_ID();
        if ( !$product_id ) {
            return '';
        }
    
        $product = wc_get_product( $product_id );
        if ( !$product ) {
            return '';
        }
    
        $sku = $product->get_sku();
        $ean = get_post_meta( $product->get_id(), 'EAN1', true );
    
        $output = '';
        if ( $ean || $sku ) {
            $output .= '<div class="product-meta">';
            if ( $ean ) {
                $output .= '<p><strong>EAN:</strong> ' . esc_html( $ean ) . '</p>';
            }
            if ( $sku ) {
                $output .= '<p><strong>SKU:</strong> ' . esc_html( $sku ) . '</p>';
            }
            $output .= '</div>';
        }
    
        return $output;
    }
    add_shortcode( 'av_sku_ean', 'ava_shortcode_sku_and_ean' );
    

    In a Text or Code Block, insert this shortcode:

    [av_sku_ean]
    

    Best regards,
    Ismael

    in reply to: transparent table #1474427

    Hey Gianluca,

    Thank you for the inquiry.

    We didn’t find any table element in the home page. Where did you add it? You may need to replace or update the selector “#av_section_1.main_color” depending on the position of the color section containing the table element. You could also apply a custom css class name or ID to the color section element and use that instead. Please check this documentation for more info.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    in reply to: Custom Menu-bar Shape – Part 2 #1474426

    Hey tribaleye13,

    Thank you for the inquiry.

    Try to use this SVG code:

    <svg width="100%" height="100%" viewBox="0 0 1000 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
        <g transform="matrix(1.1286,0,0,0.87034,0,0)">
            <path d="M886.053,0L886.053,57.449C886.053,57.449 416.455,49.793 160.672,68.931C64.438,76.132 0,107.545 0,114.898L0,0L886.053,0Z" style="fill:rgb(133,133,133);"/>
        </g>
    </svg>
    
    

    Then add this css code to adjust the position of the logo:

    .responsive .logo {
        position: absolute;
        left: -50px;
        right: auto;
    }

    Best regards,
    Ismael

    in reply to: Translatepress plugin, accordion problem #1474425

    Hi,

    Thank you for the info.

    Unfortunately, the data-title attribute is required for the toggle element to function correctly. You may need to replace the toggle element with another in order to use the translation plugin.

    Best regards,
    Ismael

    in reply to: Video Media Element Does Not Loop #1474424

    Hey Ryan,

    Thank you for the inquiry.

    We adjusted the YouTube URL a bit and used the other format (see private field). Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

Viewing 30 posts - 211 through 240 (of 64,578 total)