Forum Replies Created

Viewing 30 posts - 1 through 30 (of 66,804 total)
  • Author
    Posts
  • in reply to: Image and Image Alt Attributes #1491322

    Hi,

    We didn’t change anything aside from creating a test page. For now, you may need to manually add images to the default editor if you want to comply with the SEO checker, or you can ignore it since the featured image will be properly indexed on the frontend. This won’t affect your SEO in any way.

    Best regards,
    Ismael

    in reply to: Anfrage #1491321

    Hey Peter Hojczyk,

    Thank you for the inquiry.

    There is an existing demo called Enfold Hotel with online booking using the Woocommerce plugin and the Woocommerce Bookings extension. You can check it out here: https://kriesi.at/themes/enfold-hotel.

    The Woocommerce plugin is free, but the extension costs around $249 per year or $398.40 for a 2-year plan. Please check the extension page below.

    — https://woocommerce.com/products/woocommerce-bookings/?aff=84

    You can also try the Booking Calendar (https://wordpress.org/plugins/booking/), which is free, but it’s not natively integrated with the theme, or the Events Calendar plugin but it is mostly used for events: https://theeventscalendar.com/

    Best regards,
    Ismael

    in reply to: CSS files are always deleted #1491320

    Hi,

    Thank you for the update.

    We created a test page with an element that has custom styling, so it has its own post css file. When we resave the theme options, the old css file is removed but then regenerated with a new timestamp. The custom styling of the elements is preserved as expected. Do you notice any changes on the page, such as missing element styling, when you resave the theme options? (see private field)


    @earthchilde
    : Please open a new thread, create a test page and provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Masonry Gallery image order not saving #1491319

    Hi,

    Thank you for the update.

    The edit link above leads to a 404 page. Please include the login details in the private field.

    Best regards,
    Ismael

    in reply to: Modify filter to alter srcset #1491318

    Hi,

    Yes, if the thumbnail size is disabled, the default thumbnail with that dimension will no longer be generated and all images will be regenerated without it. It’s IMPORTANT to create a full site backup or restore point before proceeding with any of these steps.

    If you’re comfortable with scripting, you can also remove specific thumbnails in batch if the regeneration process fails to remove them.

    Best regards,
    Ismael

    in reply to: instagram icon beside navigation in normal colours #1491317

    Hey rixi,

    Thank you for the inquiry.

    You can try this code in the Enfold > General Styling > Quick CSS field:

    #top #wrap_all .social_bookmarks .social_bookmarks_instagram a {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    Result:

    Screenshot-2025-11-14-at-12-27-32-PM

    Best regards,
    Ismael

    in reply to: Home Page of Template EnfoldBand can not saved #1491316

    Hi,

    Thank you for the inquiry.

    We checked the Advanced Layout Builder and found an error being generated from this file: ://ppcp-paylater-wc-blocks/resources/js/CartPayLaterMessagesBlock/cart-paylater-block-inserter.js.

    You may need to temporarily disable this plugin and contact the plugin developers for additional assistance.

    Screenshot-2025-11-14-at-12-16-04-PM

    Best regards,
    Ismael

    in reply to: Anzeige von Beiträge auf Kategorien #1491315

    Hey AndreasWinkler,

    Thank you for the inquiry.

    You can add this code to the functions.php file to apply the same grid layout to the category pages:

    add_filter('avf_blog_style','avf_blog_style_mod', 10, 2); 
    function avf_blog_style_mod($layout, $context){
       if($context == 'archive') $layout = 'blog-grid';
       return $layout;
    }

    Best regards,
    Ismael

    in reply to: Image gallery with multiple conditional thumbnails #1491314

    Hey finchkelsey,

    Thank you for the inquiry.

    The slider looks complex, but it should be possible with the Layer Slider plugin or a custom template and script. You may need to explore and use the Layer Slider API in order to create something like that.

    https://layerslider.com/documentation/#advanced-customization

    If you need additional help, we recommend reaching out to Codeable.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: TABS #1491313

    Hey jimmiemoreland,

    Thank you for the inquiry.

    Yes, you can create a Custom Layout and apply it to the pages where you want the layout to display. When you update the Custom Layout, all instances of the template will update automatically. Please check this link for more info.

    https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/

    Best regards,
    Ismael

    in reply to: Enfold not saving or loading Advanced Editor #1491311

    Hi,

    Thank you for the update.

    Let us know once the staging site and a test page are ready so we can review them. Please include the login details in the private field.

    Best regards,
    Ismael

    in reply to: price span not showing #1491275

    Hi,

    We have adjusted the code a bit. You may notice a short delay before the price range displays because we needed to override the default variation switching behavior. Once the page is fully loaded, the price range should display correctly and selecting variations will switch the price as normal.

    add_action( 'wp', function() {
        if ( is_product() ) {
            $product = wc_get_product( get_the_ID() );
            if ( $product && $product->is_type( 'variable' ) ) {
                remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
                add_action( 'woocommerce_single_product_summary', 'ava_woocommerce_single_product_summary_mod', 10 );
            }
        }
    });
    
    function ava_woocommerce_single_product_summary_mod() {
        $product = wc_get_product( get_the_ID() );
        if ( ! $product || ! $product->is_type( 'variable' ) ) return;
    
        $min_price = $product->get_variation_price( 'min', true );
        $max_price = $product->get_variation_price( 'max', true );
    
        if ( $min_price !== $max_price ) {
            $price_html = wc_price( $min_price ) . ' - ' . wc_price( $max_price );
        } else {
            $price_html = wc_price( $min_price );
        }
    
        echo '
    <div class="av-variable-price" style="opacity:0; transition: opacity 0.5s;"><span class="price"><span class="woocommerce-Price-amount amount"><bdi>' . $price_html . '</bdi></span></span></div>
    ';
    }
    
    add_action( 'wp_footer', function() {
        if ( is_product() ) : ?>
            <script type="text/javascript">
            jQuery(function($){
                var $priceContainer = $('.av-variable-price');
    
                function formatPrice(price){
                    return price.toLocaleString('da-DK', { minimumFractionDigits: 0, maximumFractionDigits: 0 }) + ' kr.';
                }
    
                function updatePrice(min, max){
                    var html = '';
                    if (min != max){
                        html = '<span class="price"><span class="woocommerce-Price-amount amount"><bdi>' + formatPrice(min) + ' - ' + formatPrice(max) + '</bdi></span></span>';
                    } else {
                        html = '<span class="price"><span class="woocommerce-Price-amount amount"><bdi>' + formatPrice(min) + '</bdi></span></span>';
                    }
                    $priceContainer.html(html).css('opacity', 1);
                }
    			
                $(window).on('load', function(){
                    setTimeout(function(){
                        var productMin = <?php echo wc_get_price_to_display( wc_get_product(get_the_ID()), array('price'=>wc_get_product(get_the_ID())->get_variation_price('min', true)) ); ?>;
                        var productMax = <?php echo wc_get_price_to_display( wc_get_product(get_the_ID()), array('price'=>wc_get_product(get_the_ID())->get_variation_price('max', true)) ); ?>;
                        updatePrice(productMin, productMax);
                    }, 1000);
                });
    			
                $('.variations_form').on('show_variation', function(event, variation){
                    $priceContainer.css('opacity', 0);
                    setTimeout(function(){
                        $priceContainer.html(variation.price_html).css('opacity', 1);
                    }, 100);
                });
            });
            </script>
        <?php endif;
    });

    Screenshot:

    Screenshot-2025-11-13-at-12-14-10-PM

    Best regards,
    Ismael

    in reply to: Form Code Not Working #1491273

    Hey jnightingale,

    Thank you for the inquiry.

    The script file https://site.com/js/form_embed.js does not exist or is invalid. Please make sure that the file is accessible. For additional assistance, we recommend reaching out to the plugin developers.

    Best regards,
    Ismael

    in reply to: PageSpeed and Site Loading Hidden Elements #1491272

    Hi,

    Thank you for the update.

    Looks like the slide images are still loading on all screen sizes. We may need to log in to the site to properly test the modification. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Body text link underline code #1491271

    Hey bemodesign,

    Thank you for the inquiry.

    Try to add this css code below the previous modification to disable the underline for the menu items.

    #top .menu-item a:not(.avia-button) {
        text-decoration: none !important;
    }

    Best regards,
    Ismael

    in reply to: Image and Image Alt Attributes #1491270

    Hi,

    Unfortunately, at this time, there is no solution other than adding the images manually in the editor. We will forward the issue to our channel. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Next/Previous Post within same Category #1491268

    Hi,

    Glad to know this has been resolved! Feel free to open another thread should you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Extra blank space #1491267

    Hey tariqyacoub82,

    Thank you for the inquiry.

    Please try to add this css code to reduce the space below the #about section.

    #about {
        margin-bottom: -100px;
    }

    Best regards,
    Ismael

    in reply to: Add icons to a fullwidth submenu #1491266

    Hi,

    You’re quite welcome! Glad to know this has been resolved. Please don’t hesitate to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Display portfolio entries multiple times in Masonry #1491265

    Hey adamio,

    Thank you for the inquiry.

    Unfortunately, there is no option for this and it is not possible by default. You may need to look for another plugin or significantly customize the portfolio grid or masonry template. This request falls outside the scope of our support. Please try to contact a freelance developer or use the link provided on the customization page.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Color section video black background #1491264

    Hi,

    Thank you for the info.

    We’re still not seeing the black background on the “Über mich” page. Please check this clip:

    Clip: https://streamable.com/lrrk8l

    Best regards,
    Ismael

    in reply to: Boxed content in grid row with fullwidth background #1491263

    Hi,

    Thank you for the update.

    We adjusted the css code further — applying a maximum width to each cell type or size.

    #top #gridtest .av-gridrow-cell.no_margin.av_one_fifth {
        width: 20%;
        max-width: 280px;
    }
    
    #top #gridtest .av-gridrow-cell.no_margin.av_four_fifth {
        width: 80%;
        max-width: 1120px;
    }
    
    #top #gridtest {
      width: 100%;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    #top #gridtest > .av-gridrow-cell {
      box-sizing: border-box;
    }
    
    #top #gridtest .flex_cell_inner {
      margin: 0 auto;
    }
    
    @media (max-width: 768px) {
      ##top #gridtest > .av-gridrow-cell {
        flex: 0 0 100%;
        max-width: none;
      }
    }

    Result:

    Screenshot-2025-11-13-at-11-11-33-AM

    Best regards,
    Ismael

    in reply to: Mobile burger menu not showing #1491262

    Hey whdsolutions,

    Thank you for the inquiry.

    The mobile menu is hidden because of this css code:

    @media (max-width: 1200px) {
        .av-main-nav > li {
            display:none !important
        }
    
        .nav-toggle {
            display: block !important
        }
    }

    Please remove this css rule or adjust it properly.

    .av-main-nav > li {
       display:none !important
    }
    

    Best regards,
    Ismael

    in reply to: Masonry Gallery image order not saving #1491261

    Hey Alexandru Parosu,

    Thank you for the inquiry.

    Are you using a plugin to sort the images, or just the default drag-and-drop feature? This seems to be working correctly on our end. What happens when you select a different option under Styling > Masonry Settings > Size Settings? If the issue persists, please provide the login details in the private field so we can investigate further.

    Best regards,
    Ismael

    in reply to: Decrease columns #1491260

    Hi,

    Glad we could be of help! Please don’t hesitate to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Modify filter to alter srcset #1491259

    Hi,

    When portrait format images were uploaded originally, Enfold portfolio size image (495x400px) was enabled.

    You may need to regenerate the thumbnails to delete the disabled thumbnails. Have you tried any of these plugins?

    https://wordpress.org/plugins/regenerate-thumbnails/
    https://wordpress.org/plugins/regenerate-thumbnails-advanced/

    Make sure to create a site back up before using the plugins.

    I also know that I’ve got some uploaded images with an original width of 400px so just targeting “400” in srcset isn’t an option,

    Unfortunately, this is not possible without manually targeting each image. You may need to keep the thumbnails with a 400px height. As mentioned above, the file size difference between these thumbnails is very negligible, so it won’t really make much difference whether they are enabled or disabled.

    Best regards,
    Ismael

    in reply to: CSS files are always deleted #1491258

    Hey marcsteiner1,

    Thank you for the inquiry.

    Are all the files in the avia_posts_css folder deleted when saving changes to a post or page? This option should only delete files that are no longer needed. What happens when you disable the cache and compression plugin?

    Best regards,
    Ismael

    in reply to: Image and Image Alt Attributes #1491223

    Hi,

    We can confirm that the featured image is automatically detected in the default theme. However, as mentioned previously, this won’t affect how search engines view the site on the front end. If you want to comply with the SEO checker and improve the score in the backend, you can manually add an image using the default editor.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: price span not showing #1491221

    Hi,

    Thank you for the info.

    We added the following code to the functions.php file to replace the base price with the variable price — it should also update based on the selected variation.

    
    add_action( 'wp', function() {
        if ( is_product() ) {
            $product = wc_get_product( get_the_ID() );
            if ( $product && $product->is_type( 'variable' ) ) {
                remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
                add_action( 'woocommerce_single_product_summary', 'ava_woocommerce_single_product_summary_mod', 10 );
            }
        }
    });
    
    function ava_woocommerce_single_product_summary_mod() {
        $product = wc_get_product( get_the_ID() );
        if ( ! $product || ! $product->is_type( 'variable' ) ) return;
    
        echo '
    <div class="av-variable-price">';
        echo $product->get_price_html();
        echo '</div>
    ';
    }
    
    add_action( 'wp_footer', function() {
        if ( is_product() ) : ?>
            <script type="text/javascript">
            jQuery(function($){
                $('.variations_form').on('show_variation', function(event, variation){
                    $('.av-variable-price').html(variation.price_html);
                });
    
                $('.variations_form').on('reset_data', function(){
                    var productMinMaxPrice = $('.variations_form').data('product_variations')[0].display_price_html;
                    $('.av-variable-price').html(productMinMaxPrice);
                });
            });
            </script>
        <?php endif;
    });
    

    Best regards,
    Ismael

    Hi,

    Unfortunately, we don’t handle refund requests in this forum. As mentioned above, you will need to contact Themeforest regarding this matter. For your inquiries, we recommend opening them in separate threads so we can address each one individually. Posting unrelated information in this single thread and not following the guidance makes it harder for us to assist you effectively. If you are primarily interested in a refund, we suggest opening a dedicated thread on Themeforest.

    Thank you for your understanding.

    Best regards,
    Ismael

Viewing 30 posts - 1 through 30 (of 66,804 total)