Forum Replies Created

Viewing 30 posts - 331 through 360 (of 66,007 total)
  • Author
    Posts
  • in reply to: Magazine type size is way too big. #1484193

    Hi,

    The site is not using a child theme. We recommend activating the default child theme to preserve the modifications during theme updates. Please refer to the documentation below.

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

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Would you mind providing a screenshot? As mentioned in the previous thread, this is a known issue on iOS devices, so disabling the fixed background effect is recommended. Have you tried removing the selector “.avia_mobile”? You can also try setting the “background-size” property from “cover” to “contain”.

    Best regards,
    Ismael

    in reply to: Advanced Builder Gray Screen #1484191

    Hi,

    Thank you for the update.

    The suggested filter does allow the font to load, but since the path is incorrect, the font list won’t load, leading to a 404 error. Try to use this filter instead:

    add_filter('avf_font_manager_load_font', function($icon_font) {
        return '';
    }, 10, 1);

    Best regards,
    Ismael

    in reply to: “Load more” on a page possible? #1484189

    Hey goldengate415,

    Thank you for the inquiry.

    There are elements with this option, such as the Masonry element or pagination for Blog Posts, but it is not available for an entire page. For text elements, you can use the Fold/Unfold option but it may not have any significant effect on performance. If you have a fairly large homepage, consider moving some content to subpages and reduce the use of images. If you can provide the site URL, we’ll try to check the site further.

    Best regards,
    Ismael

    in reply to: special header does not work! #1484188

    Hey Faatje79,

    Thank you for the inquiry.

    We may need to log in to the site to properly check the issue. Please provide the site URL and login details in the private field. Do you have version 7.1 of the theme?

    Best regards,
    Ismael

    Hey slikslok,

    Thank you for the inquiry.

    You may need to use a smaller logo or limit the number of items in the main menu. To adjust the size of the logo, try to add this css code:

    .logo img, .logo svg {
        max-width: 400px;
        top: 40px;
    }

    You can also set the main menu to display as icon instead of text (Main Menu > General > Menu Items For Desktop).

    Best regards,
    Ismael

    in reply to: Widget “Enfold Table of Contents” & “Sites” #1484186

    Hi,

    Thank you for the inquiry.

    1.) You have to add heading (h1, h2) elements in the page in order for the TOC to display any content. If you’re using the Advance Layout Builder, try to use the Special Heading element.

    2.) What do you mean by “sites of root-level and makes child-sites clickable”?

    Best regards,
    Ismael

    in reply to: Question on Masonry #1484185

    Hi,

    Thank you for the update.

    What happens when you replace the URL param with sort_tag or something else other than tag? We may need to access the site to properly test the modification. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Mobile Performance Issue: Slow LCP #1484184

    Hi,

    Great! Glad to know that you managed to fix the issue. Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Menu Layout Advice #1484183

    Hi,

    We’ll keep the thread open. Let us know the result.

    Best regards,
    Ismael

    in reply to: Magazine type size is way too big. #1484132

    Hi,

    We tried logging in to the site, but the password for the username is incorrect. Please double-check the login details. Have you tried adding the code to the functions.php file? If you’re concerned about causing errors, you can ask your hosting provider to create a backup or restore point first.

    Best regards,
    Ismael

    in reply to: Animation on content slider #1484131

    Hey Pierre,

    Thank you for the inquiry.

    Try setting the Advanced > Animation > Slideshow Transition setting to Slide sidewards to disable the fade-in transition. Let us know the result.

    Best regards,
    Ismael

    Hi,

    You can try the FacetWP plugin, but it will require additional modifications to the theme. For this type of customizations, you can contact Codeable.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: product listing is #1484129

    Hey volkantuncer,

    Thank you for the inquiry.

    Try to add this css code to make sure the products are centered.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #main .product-sorting.avia-product-sorting+.products {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
    
      .responsive #top #main .products .product:nth-child(even) {
        margin-right: 0;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Cannot import a Custom icon font #1484128

    Hey damtzmx,

    Thank you for the inquiry.

    Where did you get the icon font pack? Please note that only icons from Fontello or Flaticon are supported, and only monocolored icon sets are allowed.

    https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    We tried logging in the but the password for the username is incorrect. Please check the info carefully.

    Best regards,
    Ismael

    in reply to: Lightbox settings #1484127

    Hey Pierre,

    Thank you for the inquiry.

    You can add this filter to the functions.php file to adjust the thumbnail size used in the lightbox container.

    function avf_alb_lightbox_image_size_mod($size) {
      return "full";
    }
    add_filter('avf_alb_lightbox_image_size', 'avf_alb_lightbox_image_size_mod', 10, 1);

    To disable scrolling when lightbox is active, use this code in the Quick CSS field.

    .mfp-zoom-out-cur {
        height: 100vh;
        overflow: hidden;
    }
    
    .mfp-bg {
        height: 100vh !important;
    }

    Best regards,
    Ismael

    in reply to: Menu Layout Advice #1484126

    Hi,

    Thank you for the update.

    Try to switch the builder to debug mode to enable the shortcode field.

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

    Once the debug mode is enabled, add this template in the shortcode field, the update the page. Edit the Catalogue element, then follow the format of the second item in the list (CHEESEBURGER).

    https://pastebin.com/26bBpUc4

    To adjust the style of the custom catalogue element, add this code in the Quick CSS field:

    #top .av-patty-menu .av-catalogue-list {
      border-top: 0;
    }
    
    #top .av-patty-menu ul li:first-child .av-catalogue-item .av-catalogue-item-inner {
      height: 48px;
    }
    
    #top .av-patty-spacer {
      width: 20px;
      display: inline-block;
    }
    
    #top .av-patty-spacer-title {
      display: block;
      text-align: center;
    }

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Question on Masonry #1484125

    Hey Jochen,

    Thank you for the inquiry.

    This should be possible with a custom script. Please try this code in the functions.php file:

    add_action( 'wp_footer', 'auto_click_sort_button_by_tag', 100 );
    function auto_click_sort_button_by_tag() {
        ?>
        <script>
        document.addEventListener("DOMContentLoaded", function () {
            const urlParams = new URLSearchParams(window.location.search);
            const tag = urlParams.get("tag");
    
            if (tag) {
                const buttonClass = tag + "_sort_button";
                const button = document.querySelector("." + buttonClass);
    
                if (button) {
                    button.click();
                }
            }
        });
        </script>
        <?php
    }
    

    This should automatically activate the corresponding masonry sorting button based on the value of the ?tag= parameter in the URL. For example:

    https://site.com/masonry?tag=images
    

    Best regards,
    Ismael

    in reply to: Mobile Filter Top Section, H1 und text seperated #1484124

    Hey awasner,

    Thank you for the inquiry.

    You can add the following code to the functions.php file to separate the title from the term description.

    remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
    remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );
    
    add_action( 'woocommerce_before_shop_loop', 'av_woocommerce_before_shop_loop_mod', 5 );
    function av_woocommerce_before_shop_loop_mod() {
        if ( is_product_taxonomy() ) {
            echo '<h1 class="term-title">' . single_term_title( '', false ) . '</h1>';
        }
    }
    
    add_action( 'woocommerce_after_shop_loop', 'av_woocommerce_after_shop_loop_mod', 15 );
    function av_woocommerce_after_shop_loop_mod() {
        if ( is_product_taxonomy() ) {
            $term = get_queried_object();
            if ( isset( $term->description ) && $term->description ) {
                echo '<div class="term-description">' . wpautop( $term->description ) . '</div>';
            }
        }
    }

    Best regards,
    Ismael

    Hey luleloki,

    Thank you for the inquiry.

    The form seems to be working correctly on our end. Did you figure out the issue?

    View post on imgur.com

    Best regards,
    Ismael

    Hi,

    Thank you for the update. What happens when you remove this line?

    $settings['same_category'] = true;
    

    Best regards,
    Ismael

    in reply to: Menu Layout Advice #1484081

    Hey rixi,

    Thank you for the inquiry.

    Have you tried using the Catalogue element? This is the same element used on the Menu page of the Restaurant demo. Please check the link below:

    https://kriesi.at/themes/enfold-restaurant/menu/

    Best regards,
    Ismael

    in reply to: Additional Content is not displayed on the blog page #1484078

    Hey Heinz,

    Thank you for the inquiry.

    Are you trying to use the Advanced Layout Builder to edit the blog page? Please reset the options in the Settings > Reading panel to default and make sure no page is selected for the posts page. Then, go to Enfold > Theme Options panel and set blog page there under “Where do you want to display the blog?”. In Enfold > Blog Layout, choose the last option for Blog Layout settings (“Use the layout builder…”). This should allow you to edit the News or Blog page using the Advanced Layout Builder.

    Best regards,
    Ismael

    Hi,

    Deprecated: Function avia_font_manager::frontend_icon is deprecated since version 7.0! Use Use

    Did you modify any shortcodes in the child theme? It’s possible they are still using a deprecated function. You should also check the child theme’s functions.php file. We can’t access the file anymore because the Appearance > Theme File Editor is no longer available.

    We also recommend testing this on a different host, as it’s possible the issue is server-related. Try cloning the site to a server hosted by another company or platform.

    Best regards,
    Ismael

    Hi,

    We are not sure how the form saves the post, but for the default post editor, you can use either the wp_insert_post_data or the save_post hook to add additional functionality, such as applying a custom layout to a post, before it is saved to the database.

    https://developer.wordpress.org/reference/hooks/save_post/
    https://developer.wordpress.org/reference/hooks/wp_insert_post_data/

    The required fields were already included in the previous post.

    Best regards,
    Ismael

    in reply to: YouTube not loading on certain pages #1484059

    Hi,

    Great! Let us know if the issue occurs again. Have a nice day.

    Best regards,
    Ismael

    Hey extraeyes,

    Thank you for the inquiry.

    Try to add this code in the functions.php file to return a list of pages containing icon elements:

    add_action('wp_head', function () {
        global $wpdb;
    
        $shortcodes = ['av_iconlist', 'av_icongrid', 'av_icon_circles', 'av_font_icon'];
    
        $like_clauses = array_map(function ($sc) use ($wpdb) {
            return $wpdb->prepare("post_content LIKE %s", '%' . $sc . '%');
        }, $shortcodes);
    
        $where = implode(' OR ', $like_clauses);
    
        $query = "
            SELECT ID FROM $wpdb->posts
            WHERE post_type = 'page'
            AND post_status = 'publish'
            AND ($where)
        ";
    
        $results = $wpdb->get_col($query);
    
        echo '<pre style="background: #fff;">';
        var_export($results);
        echo '</pre>';
    });
    

    In the frontend, this should return a list of pages that may look like this:

    View post on imgur.com

    Best regards,
    Ismael

    Hey eldrico,

    Thank you for the inquiry.

    You can use this filter in the functions.php file to reverse the order of the items in the post nav.

    add_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod_reverse', 10, 3);
    function avf_post_nav_entries_mod_reverse($entries, $settings, $queried_entries)
    {
        $settings['same_category'] = true;
        $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); 
        $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    
        return $entries;
    }

    Best regards,
    Ismael

    in reply to: Envato private Token for multiple websites #1484055

    Hi,

    It’s possible that the automatic update is not working in the current version and fails to retrieve the latest one. You may need to update the theme manually this time. Please check the link below for more info:

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Partner Logo slider for Mobile devices #1484053

    Hi,

    We adjusted the column count of the “customers” element, then added the css code in the Quick CSS field.

    View post on imgur.com

    Best regards,
    Ismael

Viewing 30 posts - 331 through 360 (of 66,007 total)