Forum Replies Created

Viewing 30 posts - 2,881 through 2,910 (of 67,463 total)
  • Author
    Posts
  • in reply to: custom element #1476219

    Hey wolfgangspelitz,

    Thank you for the inquiry.

    Once a Custom Element Template (CET) is created, go to the Custom Elements tab inside the Advanced Layout Builder (ALB). Hover over the custom element you want to modify, then click the Edit (pencil icon) button. For more details about CET, please refer to this documentation: https://kriesi.at/documentation/enfold/custom-element-templates/#basics

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    It turned out to be an issue with the config-templatebuilder > avia-template-builder > assets > js > avia-media.js file. We modified this code around line 466:

    preview_img = element.sizes && element.sizes['thumbnail'] ? element.sizes['thumbnail'].url : element.url;
    

    We added a few images in the Masonry Gallery in the test page. Please make sure to purge the cache before testing.

    Best regards,
    Ismael

    in reply to: Ć caracter Lato font #1476216

    Hi,

    Thank you for the inquiry.

    Where can we check the issue? Please provide the site URL in the private field so that we can inspect the site. We tested this on our end and the text seems to be rendering correctly.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Best way to implement wallpaper/background video? #1476215

    Hi,

    Thank you for the update.

    Unfortunately, this is not possible with the Color Section or the default sliders that come with the theme. The background video will always be replaced by the fallback image. If you need the video to display on mobile view, you may need to use the Layer Slider and set the video as the background. Make sure that the video is muted.

    Best regards,
    Ismael

    in reply to: Anchor Link doesn’t work on smartphone but on PC #1476214

    Hi,

    Thank you for the info.

    We added a Color Section element to the Footer page and moved the “kontakfooter” ID attribute to it, but the issue persists. We also tried removing the slash before the anchor link, but the result is the same. We’re not sure why it’s not scrolling on mobile view.

    Have you tried deactivating the plugins temporarily? Did you add any scripts?

    Best regards,
    Ismael

    in reply to: Strange inline height applied to Color Sections #1476067

    Hi,

    Thank you for the update.

    Yes, we got the login info, but it seems to be invalid. Please check the password or provide another admin account. We get this error when using the login info above.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Product Slider Issue #1476066

    Hi,

    Thank you for the info.

    This is what we see on our end on initial load without clicking anything: https://imgur.com/IP7BFeT

    Please try to purge the cache or test it on incognito mode. If the issue persists, please provide a link to the product page and a short clip of the issue.

    Best regards,
    Ismael

    in reply to: Woocommerce Germanized unit price display #1476063

    Hi,

    Thank you for the update.

    We get an internal server error when we try to add anything to the cart. Have you tried using the Block Editor for the Cart page? You can insert the default Cart block to display the cart elements.

    Best regards,
    Ismael

    in reply to: Multilang recommended with Enfold? #1476061

    Hey wolfgangspelitz,

    Thank you for the inquiry.

    To create a multilingual site with Enfold, we recommend using either the Polylang or WPML plugin. For more info, please check the following links:

    https://wpml.org/documentation/theme-compatibility/enfold/
    https://wpml.org/theme/enfold/
    https://wpml.org/tutorials/2016/02/enfold-theme-and-wpml/

    Best regards,
    Ismael

    in reply to: Easy Slider caption mobile view #1476060

    Hi,

    Great! Glad it’s fixed. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Disable scrolling on tab element #1476059

    Hi,

    Sorry for the confusion. I thought you’re working on an Accordion element. For the Tab Section element, please override the enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.js file, look for the get_init_open function and replace it with:

    get_init_open = function() {
                        var hash = window.location.hash ? window.location.hash : '',
                            deepHash = hash.toLowerCase().replace('#', ''),
                            open = null;
    
                        if ('undefined' != typeof(deepLinksToTabs[deepHash]) && '' != deepLinksToTabs[deepHash]) {
                            var hashID = deepLinksToTabs[deepHash];
                            open = tabs.filter('[data-av-tab-section-title="' + hashID + '"]');
                        } else {
                            open = tabs.filter('[href="' + hash + '"]');
                        }
    
                        if (open.length) {
                            if (!open.is('.active_tab')) {
                                open.trigger('click');
    
                                var tabOffset = open.offset().top;
                                var currentScroll = $(window).scrollTop();
                                $(window).scrollTop(currentScroll); 
                            }
                        } else {
                            // set correct color
                            container.find('.av-active-tab-title').trigger('click', true);
                        }
                    };

    You will also have to replace the filter in the functions.php file:

    function av_override_avia_scripts() {
        wp_dequeue_script('avia-module-tabsection');
        wp_deregister_script('avia-module-tabsection');
    
        $child_tab_section_js = get_stylesheet_directory_uri() . '/js/tab_section.js';
    
        wp_enqueue_script(
            'avia-module-tabsection', 
            $child_tab_section_js, 
            array('avia-shortcodes'), 
            false,
            true 
        );
    }
    add_action('wp_enqueue_scripts', 'av_override_avia_scripts', 100);

    Best regards,
    Ismael

    in reply to: Categories column, read more, and images of other blogs #1476058

    Hey MysticMimi,

    Thank you for the inquiry.

    The sidebar gets pushed to the bottom of the page because there is a Grid Row element in the builder. To prevent this, you should avoid using full-width elements like Sliders, Color Sections, Grid Rows, or Tab Sections, and stick to child elements like Columns.

    We adjusted the Blog Posts element’s > Define Blog Grid Layout settings to display the “Read More” link. If you want to increase the number of posts, check the Styling > Pagination > Post Number settings.

    For more info about the theme, please check the documentation: https://kriesi.at/documentation/enfold/quick-setup/

    Best regards,
    Ismael

    in reply to: Auto Excerpt #1476057

    Hey!

    Thank you for the inquiry.

    As mentioned above, the code will look for the first Text Block in the page builder and save it as the post excerpt. I assumed your very first Text Block on the page will contain your most important content, but if that’s not the case, you will need to edit the page and adjust the position of the elements, making sure that the very first Text Block contains the content you want to retrieve.

    Let us know if you need more info.

    Cheers!
    Ismael

    in reply to: masonry gallery showing whitespace around images #1476053

    Hey nulrick,

    Thank you for the inquiry.

    You can add this code in the Enfold > General Styling > Quick CSS field to adjust the width of the masonry images.

    .av-masonry-image-container img {
        margin: 0;
        width: 100%;
    }

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Enfold Language #1476052

    Hi,

    They did not translate the following word :

    You have to add the translations in the Say What? plugin. Please check the link we provided above. We didn’t use the Loco Translate plugin because the translations are already there but are not applying for some reason.

    Best regards,
    Ismael

    in reply to: Auto Excerpt #1476005

    Hey!

    You may need to edit the posts and update them. The excerpt will not be visible in the Excerpt field, but it will be saved as post_excerpt in the database.

    Best regards,
    Ismael

    in reply to: Auto Excerpt #1476003

    Hey finchkelsey,

    Thank you for the inquiry.

    We are not aware of any plugin that has this option, but you can try the following hook in the functions.php file. It retrieves the content of the first Text Block element on the page and sets it as the excerpt.

    function av_set_excerpt_alb($post_id) {
        if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return;
        if (wp_is_post_revision($post_id)) return;
    
        $post = get_post($post_id);
        if (!$post || empty($post->post_content)) return;
    
        if (preg_match('/\[av_textblock.*?\](.*?)\[\/av_textblock\]/s', $post->post_content, $matches)) {
            $text_content = wp_strip_all_tags($matches[1]); 
    
            $excerpt = wp_trim_words($text_content, 55, '...');
    
            remove_action('save_post', 'av_set_excerpt_alb'); 
            wp_update_post([
                'ID'           => $post_id,
                'post_excerpt' => $excerpt,
            ]);
            add_action('save_post', 'av_set_excerpt_alb');
        }
    }
    add_action('save_post', 'av_set_excerpt_alb');
    

    Best regards,
    Ismael

    in reply to: Space between layout elements #1476002

    Hi,

    No problem! Let us know if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold Language #1476001

    Hi,

    Thank you for the update.

    We installed the Say What? plugin and added a translation for the “Add to cart” button (Ajouter au panier). To add more translations, please check the link in the private field.

    Best regards,
    Ismael

    in reply to: Product Slider Issue #1475999

    Hi,

    Thank you for creating the staging site.

    The related product images are displaying correctly when we checked. Did you disable the plugins or change anything in the staging site?

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Translation of Fold/Unfold text #1475998

    Hi,

    Thank you for the update.

    According to @Guenter, this may require more attention from the plugin developers. Have you tried opening a ticket in the WPML support forum? Please forward this thread for reference.

    Best regards,
    Ismael

    in reply to: Issue with bottom of being cut off in Advanced Layerslider #1475997

    Hi,

    Great! Glad to know the issue has been resolved. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold Theme will not update #1475996

    Hey Andreas Indicatii,

    Thank you for the inquiry.

    What is the current version of the theme, and where is the site hosted? You may need to update the theme manually via FTP this time. Please check this documentation for more info. https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Hamburger Menu Customization #1475995

    Hi,


    @Guenni007
    : We deleted the entry from the description.

    Best regards,
    Ismael

    in reply to: Club website – inbox purchaser theme not accessible #1475994

    Hey Marieke Braamskamp,

    Thank you for the inquiry.

    If you don’t have access to the account that was used to purchase the theme, you will need to create another Themeforest account and purchase a new license. After that, download the latest version of the theme and upload it to the server manually via FTP. Please check this documentation for more info: https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Once the theme is updated to the latest version, you can generate a private token, which can be used to update the theme in the future: https://kriesi.at/documentation/enfold/theme-registration/

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Disable scrolling on tab element #1475993

    Hi,

    Thank you for the update.

    Have you tried to temporarily disable the Enfold > Performance > File Compression settings? Make sure to purge the cache afterward. If it’s still not working, provide the login details in the private field so that can further check the issue.

    Best regards,
    Ismael

    in reply to: Easy Slider caption mobile view #1475957

    Hi,

    Thank you for the info.

    Have you tried adjusting the Styling > Caption Title Font Size and Caption Content Font Size values for mobile view or smaller screens? Please check the screenshot below:

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Token Access for #1475956

    Hey Sudhir,

    Thank you for the inquiry.

    If you don’t have access to the account that was used to purchase the theme, you will need to create another account on Themeforest and purchase a new license. You can then download the latest version 6.0.9 and update the theme manually via FTP. Please check this link: https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Blog page with sidebar #1475955

    Hi,

    Thank you for the info.

    We reset the Settings > Reading panel to default, set the Enfold > Blog Layout > Blog Layout to the last option (Use the advance layout builder…), and adjusted the Blog Posts element’s Blog Style to Grid Layout. Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: Hamburger Menu Customization #1475954

    Hi,


    @Guenni007
    : Could you provide a direct link to the folder? I can’t find it in the KriesiMedia/enfold-library.

    Best regards,
    Ismael

Viewing 30 posts - 2,881 through 2,910 (of 67,463 total)