Forum Replies Created

Viewing 30 posts - 91 through 120 (of 66,903 total)
  • Author
    Posts
  • in reply to: CSS files are always deleted #1491390

    Hi,

    The post css files are not actually deleted; the timestamp of the post css file is just updated, so you won’t be able to access the same file without updating or using the correct timestamp. We tested this again on the test page and didn’t find any changes to the element with the custom styling. Do you see any styling issues on the page after resaving the theme options? We posted the post css file of the test page in the private field, with and without its timestamp.

    We did notice that the post css file has a “ver” prefix on the query parameter in its timestamp. This is not the case on our installation. Do you have any idea why it’s prefixed? Is this a custom modification?

    https://app.site.com/wp-content/uploads/dynamic_avia/avia_posts_css/post-25947.css?ver=ver-1763353330

    Best regards,
    Ismael

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

    Hi,

    Thank you for the update.

    If you want to revert to using the default icon, please remove the previous modifications, then add this css code to enlarge the instagram icon and adjust the color:

    #top #wrap_all .social_bookmarks .social_bookmarks_instagram a {
        background: linear-gradient(44deg, #ef1a88, #e6683c, #fa991f, #ee166c, #bc1888);
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 50px !important;
        width: 100%;
        height: 100%;
        line-height: 80px;
    }
    
    .responsive #top #header .main_menu .social_bookmarks {
        margin-top: -40px !important;
        overflow: visible;
    }

    Screenshot-2025-11-17-at-12-56-53-PM

    Best regards,
    Ismael

    in reply to: Image and Image Alt Attributes #1491388

    Hi,

    Please feel free to open another thread if you have additional questions. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Custom Forum Page #1491386

    Hey Manuel,

    Thank you for the inquiry.

    You need to install bbPress either before or after importing the demo. Please check the link below:

    https://wordpress.org/plugins/bbpress/

    Best regards,
    Ismael

    in reply to: TABS #1491385

    Hi,

    Please feel free to open another thread if you need additional assistance. We’ll close this one for now. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: price span not showing #1491384

    Hi,

    can it just be with a static price range under the title?

    That should be possible — simply remove this block of code from the functions.php file:

     
    $('.variations_form').on('show_variation', function(event, variation){
                    $priceContainer.css('opacity', 0);
                    setTimeout(function(){
                        $priceContainer.html(variation.price_html).css('opacity', 1);
                    }, 100);
                });
    

    Best regards,
    Ismael

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

    Hi,

    Thank you for the update.

    You can add the code using plugins like Code Snippets so it will not get removed after a theme update, or activate a child theme.

    https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Ismael

    in reply to: Hamburger menu icon left, logo centered, search icon right #1491382

    Hi,

    Thank you for the inquiry.

    If you need the logo centered and the burger menu on the left, try setting the Enfold > Header > Header Layout > Menu and Logo Position to Logo right, Menu left. Then add the following css code to move the logo from the right to the center.

    .html_header_top #top .av_logo_right .logo {
      right: calc(50% + -35.5px);
    }
    
    @media only screen and (max-width:767px) {
      .responsive #top #wrap_all #header_main .main_menu {
        left: 0;
        right: auto;
      }
    
      .html_header_top #top .av_logo_right #header_main .logo {
        position: relative;
        left: 50%;
        right: auto;
        margin-left: -41.5px;
        margin-right: 0;
      }
    }

    Best regards,
    Ismael

    in reply to: customizing featured image slider #1491381

    Hey Gianluca,

    Thank you for the inquiry.

    There’s no built-in option for this, but you can try editing the enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.php file, and look for the slide_html function. Let us know if you need more info.

    Best regards,
    Ismael

    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

Viewing 30 posts - 91 through 120 (of 66,903 total)