Forum Replies Created

Viewing 30 posts - 4,771 through 4,800 (of 67,591 total)
  • Author
    Posts
  • in reply to: Table sortable header row #1462647

    Hi,

    Thank you for the inquiry.

    Edit the table where you need to apply the sort script, and apply the sortable class name in the Advanced > Developer Settings > Custom CSS Class field. Also, please note that the script will only work when Styling > Table Styling > Table Purpose is set to the second option (tabular data). Let us know how it goes.

    Best regards,
    Ismael

    in reply to: Auto launch masonry gallery #1462646

    Hey James,

    Thank you for the inquiry.

    You can add this css code to disable the animation of the masonry items and have them display immediately on load:

    .av-masonry-entry {
        visibility: visible;
        opacity: 1;
    }

    Best regards,
    Ismael

    in reply to: Hide Empty Table Cells on Mobile #1462645

    Hey James,

    Thank you for the inquiry.

    You can try this script in the functions.php file:

    function ava_custom_script_here()
    {
        ?>
        <script>
            (function ($)
            {
                function hideEmptyDescCols()
                {
                    if ($(window).width() <= 768) {
                        $('.avia-desc-col').each(function() {
                            if ($(this).is(':empty')) {
                                $(this).hide();
                            }
                        });
                    } 
                }
    
                $(document).ready(function ()
                {
                    hideEmptyDescCols();
                    $(window).resize(hideEmptyDescCols);
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_here');
    

    Best regards,
    Ismael

    in reply to: Fatal error: Unparenthesized `a ? b : c ? d : e` #1462644

    Hi,

    Thank you for the update.

    with the “old” version of enfold, the slider automatically received an ID (fullscreen_slider_1). After the Update, the ID is gone….

    You can manually apply the ID in the elements’ Advanced > Developer Settings > Custom ID Attribute field. You can also apply Custom CSS Class names or add a description to the element.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    To temporarily fix the overlap issue, please add this css code:

    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
        margin-left: 0;
    }
    
    .av_seperator_small_border .av-main-nav > li:not(.av-menu-button) > a > .avia-menu-text {
        margin-left: -13px;
    }

    And to change the font, please go to the Enfold > Advanced Styling panel and edit the Main Menu > Main Menu Links element.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Using the hook as provided in the previous thread and manually adding the data to the template file are the same. Where did you get the structured data JSON code, or how do you structure it?

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    As suggested above, try to use this avf_magazine_header_content filter in the functions.php file:

    function avf_reorder_magazine_header_content($header_content, $entry) {
        $header_content = array(
            'time'   => $header_content['time'],
            'author' => $header_content['author'],
            'title'  => $header_content['title'],
            'cats'   => $header_content['cats'],
            'tags'   => $header_content['tags'],
        );
    
        return $header_content;
    }
    
    add_filter('avf_magazine_header_content', 'avf_reorder_magazine_header_content', 10, 2);
    

    Best regards,
    Ismael

    Hey reqonsult,

    Thank you for the inquiry.

    We can only reproduce the issue when zooming out the browser to 50% on a 2560x1440px screen resolution, which is equivalent to a resolution of 5K. Most users use 4K monitors at most. If you find this issue troublesome, you can add this css code.

    #top div .av-section-color-overlay {
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    Best regards,
    Ismael

    in reply to: Flux checkout plugin styling issue #1462464

    Hey napsteris,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the issue and a direct link to the checkout page? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Different View in Smartphone and Browser #1462463

    Hey strumpumpel,

    Thank you for the inquiry.

    is in mobile device check in the browser deeper as in my live iphone 11 phone.

    What do you mean by “deeper”? Are you trying to adjust the position of the burger menu? If so, you can try this css code:

    span.av-hamburger.av-hamburger--spin.av-js-hamburger {
        top: -5px;
        position: relative;
    }

    Best regards,
    Ismael

    Hey dataminegroup,

    Thank you for the inquiry.

    Did you extract the enfold.zip file from the package before uploading it? Please check the links below for more information on how to properly install and update the theme.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
    // https://kriesi.at/documentation/enfold/install-enfold-theme/#back-up-your-work
    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    in reply to: Masonry Order By Page Order #1462461

    Hi,

    For the portfolio post type, you have to add this filter in the functions.php file to enable the Page Attributes > Order field.

    /* Change portfolio post type settings */
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');

    Best regards,
    Ismael

    in reply to: Notification: Beitragstyp: alb_elements #1462460

    Hi,

    Thank you for the inquiry.

    The plugin allows you to configure the title and meta for each post type in the Rank Math SEO > Titles & Meta panel. In version 6.0, Enfold added two custom post types called alb_elements and alb_custom_layout. If you want to remove these tabs, you can add the following code to your functions.php file:

    add_filter( 'rank_math/settings/title', function( $tabs) {
        unset($tabs['post-type-alb_elements']);
        unset($tabs['post-type-alb_custom_layout']);
        return $tabs;
    });
    

    Best regards,
    Ismael

    in reply to: Issue with underline of current menu item duping #1462459

    Hi,

    Thank you for the update.

    Can we get it to work the other way around where services is not underlined and outdoors is?

    Try to replace the modification with this css code:

    .current-menu-parent > a > .avia-menu-fx {
        opacity: 0;
    }
    

    Best regards,
    Ismael

    in reply to: 3 images with clickable link next to another #1462458

    Hey Jak73,

    Thank you for the inquiry.

    Yes, you may need to manually create this using html and a few css modifications. Please start with this html code in a text or code block element:

    
    <div class="navigation">
        <button class="nav-button left-arrow">&larr;</button>
        <button class="nav-button close-button">×</button>
        <button class="nav-button right-arrow">&rarr;</button></div>
    

    Then add this css code:

    .navigation {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-button {
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 10px;
        margin: 0 5px;
        cursor: pointer;
        font-size: 16px;
    }
    
    .nav-button:hover {
        background-color: #f0f0f0;
    }
    
    .left-arrow, .right-arrow {
        font-size: 18px;
    }
    
    .close-button {
        font-size: 20px;
    }
    
    

    Best regards,
    Ismael

    in reply to: Adding image to blog layout #1462457

    Hey isynergy,

    Thank you for the inquiry.

    This is possible, but you have to directly modify the /enfold/includes/loop-index.php file and add this code around line 504:

    $featured_image = get_the_post_thumbnail($the_id, 'thumbnail', array('class' => 'read-more-thumbnail'));
    		echo '<div class="featured-image-container">' . $featured_image . '</div>';
    

    Above this code:

    echo $close_header;
    

    Then, add this css code to move the image to the right.

    .featured-image-container {
        float: right;
    }
    

    Best regards,
    Ismael3

    in reply to: Custom Main Menu Font #1462455

    Hi,

    Thank you for the info.

    Looks like the font is already selected for the main menu in the Enfold > Advanced Styling panel. Is that correct?

    .main_menu .avia-menu-text {
        font-family: 'Seymour One' !important;
    }
    

    Best regards,
    Ismael

    in reply to: Download older version of Enfold? #1462454

    Hi,

    Great! Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold Woocomerce Feeatured Product Image Problem #1462453

    Hey Dameon,

    Thank you for the inquiry.

    You may need to set the Enfold > Shop Options > Product gallery settings to the second option (Woocommerce 3.0 gallery). Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Threads logo #1462452

    Hi,

    There’s no ETA yet, but we’ll forward this thread to our channel. It will probably be added in the next patch. If not, you will have to try the suggestion above.

    Best regards,
    Ismael

    in reply to: Excerpt not working #1462369

    Hi,

    No problem! Let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Excerpt not working #1462367

    Hi,

    We also added the text “Test Test Test” to the field, and it updated successfully. Where did you set this text to display, or where do you want it to display?

    Best regards,
    Ismael

    in reply to: Excerpt not working #1462365

    Hi!

    We added the words “Test Test Test” to the field, and it updated successfully. It remains there when we update the page. However, if you’re referring to the search results, please note that it might take a while before they are updated. Simply change the description and allow some time, possibly days or even months, for the changes to take effect.

    Cheers!
    Ismael

    in reply to: Excerpt not working #1462363

    Hi,

    Thank you for the update.

    Looks like you’re referring to the Meta Description field. This is not an excerpt or part of the frontend. It will only change this part of the document.

    <meta property="og:description" content="Réservez dès maintenant votre guide francophone ou Français à Tokyo pour une visite guidée originale, personnalisée et privée." class="yoast-seo-meta-tag">
    

    Please provide a screenshot of the element that you’d like to change in the frontend, or the element where you need to display custom text. You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: Seiten in Blog-Einträge Element darstellen #1462361

    Hey lauragrashoff,

    Thank you for the inquiry.

    This is possible, but we don’t recommend it because we won’t have any control over the visibility of the items, so all pages will display in the element. If you want to try it, just add this code in the functions.php file.

    add_theme_support('add_avia_builder_post_type_option');
    

    Edit the Blog Posts element, set the Content > Select Entries > Content To Display to the second option, then select Pages in the Select Post Type list.

    Best regards,
    Ismael

    in reply to: Button no works with overlay on the color section #1462359

    Hi,

    Thank you for the screenshots.

    We temporarily added this code to fix the issue.

    .responsive #top .avia-section .container {
        z-index: 2;
    }
    
    .responsive #top .avia-section .av-section-color-overlay {
        z-index: 1;
        position: absolute;
    }
    

    We’ll forward this thread to our channel.

    Best regards,
    Ismael

    in reply to: Excerpt not working #1462357

    Hi,

    Thank you for the update.

    Where do you intend to display the excerpt? By default, you cannot assign excerpts to pages. We also didn’t find any post elements on the above page. Are you using the Blog Posts element?

    Best regards,
    Ismael

    Hey Lance,

    Thank you for the inquiry.

    We don’t see the same notification on our end. Have you tried purging the cache? Please provide the login details in the private field so that we can check the issue.

    Best regards,
    Ismael

    in reply to: Threads logo #1462355

    Hey Ivana,

    Thank you for the inquiry.

    The icon is not yet available but you can manually add it by uploading this zip file to the Enfold > Import/Export > Iconfont Manager.

    // https://1drv.ms/u/s!AjjTfXSRbKTvguM8owBR5qH5aci6dw?e=ylqhfA

    Then add this code in the functions.php file:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons)
    {
        $icons['threads'] = array('font' => 'threads', 'icon' => 'ue800');
        return $icons;
    }
    add_filter('avf_default_icons', 'avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons)
    {
        $icons['Threads'] = 'threads';
        return $icons;
    }
    add_filter('avf_social_icons_options', 'avia_add_custom_social_icon', 10, 1);
    

    You should now be able to add the new social icon from the Enfold > Social Profiles panel. Please check the links below for more info:

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
    // https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options

    Best regards,
    Ismael

    in reply to: Excerpt not working #1462353

    Hi,

    Thank you for the info.

    Where can we find the News or Posts page? We didn’t find any elements that display excerpts on the home page. Please provide a direct link to the element or create a test page.

    Best regards,
    Ismael

Viewing 30 posts - 4,771 through 4,800 (of 67,591 total)