Forum Replies Created

Viewing 30 posts - 5,911 through 5,940 (of 67,463 total)
  • Author
    Posts
  • in reply to: remove subcategory/image display above products #1435081

    Hey holstchristoph,

    Thank you for the inquiry.

    You can add this css code to hide the sorting buttons.

    .product-sorting {
        display: none;
    }

    And to remove the category thumbnails, add this code.

    .tax-product_cat .page-thumb {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Enfold Fullwidth Easy Slider video #1435080

    Hey sunhouse_ops,

    Thank you for the inquiry.

    Background videos on Slider or Color Section elements are disabled on mobile devices by default. You will need to apply a fallback image. If you really need the video to display on mobile view, you can replace the slider with a Video element or the Layer Slider element. Make sure that the video is muted to enable autoplay.

    Best regards,
    Ismael

    in reply to: Picture and text in a row #1435079

    Hey northorie,

    Thank you for the inquiry.

    The padding is applied by this css rule.

    .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
    }
    

    You can override it with this css code.

    @media only screen and (max-width: 767px) {
        .responsive #top #wrap_all .av-flex-cells .no_margin {
            padding-left: 0% !important;
            padding-right: 0% !important;
        }
    }
    

    Best regards,
    Ismael

    in reply to: SEO Changes for core Enfold #1435078

    Hey!

    Regarding #4, there is a function called avia_filter_wpseo_sitemap_urlimages, which extracts mage IDs from image or slider elements in the ALB, and push them to the wpseo_sitemap_urlimages filter for registration in the Yoast sitemap. To register more ALB elements such as sliders, you can use the avf_add_elements_wpseo_sitemap filter in the functions.php file:

    Related thread: https://kriesi.at/support/topic/how-to-make-images-in-masonry-gallery-to-be-indexed-in-seo-yoast-sitemap/

    Thank you for your patience.

    Regards,
    Ismael

    in reply to: No animation in closing x #1434981

    Hi,

    No problem! Please feel free to open another thread if you have more inquiries about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonry entries – add metadata #1434980

    Hi,

    Thank you for the update.

    The post dates and categories should also display below the title when the Content > Captions > Element Title and Excerpt is enabled or when it is set to Display Title and Excerpt. Please check the screenshot in the private field.

    Did you create a custom post type? If you did, then you can try this filter in the functions.php file:

    add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod_cat', 10, 2 );
    
    function avf_masonry_loop_prepare_mod_cat( $key, $entries ) {
        $categories = get_the_category($key['ID']);
        $separator = ' ';
        $output = '
        <div class="masonry-cat">';
        
        if ( ! empty( $categories ) ) {
            foreach( $categories as $category ) {
                $output .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator;
            }
        }
        $output .= '</div>';
    
        $post_date = get_the_date( '', $key['ID'] );
        $output .= '<div class="masonry-date">' . $post_date . '</div>';
    
        $author_id = $key['post_author'];
        $author_name = get_the_author_meta( 'display_name', $author_id );
        $output .= '<div class="masonry-author">' . $author_name . '</div>';
    
        $key['text_after'] .= trim( $output, $separator );
    
        return $key;
    }
    

    Best regards,
    Ismael

    in reply to: URGENT #1434979

    Hi,

    Thank you for the update.

    We’ve noticed that the stylesheets are compressed or minified with a different file name (style-static). Did you install a different file compression plugin? This issue might be due to the file compression plugin or its settings. Please consider disabling the compression and cache plugin temporarily. Then, toggle the Enfold > Performance > File Compression or turn it off completely.

    Best regards,
    Ismael

    in reply to: No animation in closing x #1434976

    Hi,

    Add this css code to remove the 2px border on hover.

    div.avia-popup .mfp-close:hover {
        border: 0;
    }
    

    Best regards,
    Ismael

    in reply to: Footer not displaying #1434974

    Hi,

    Thank you for the update.

    The Appearance > Theme File Editor is not accessible when we checked the dashboard, and we noticed that the site contains an older version of the theme. Please upgrade the theme to version 5.6.10, then provide the S/FTP details in the private field so that we check the issue properly.

    Best regards,
    Ismael

    in reply to: enfold theme WordPress and not able to import demo sites #1434972

    Hey bob hense,

    Thank you for the inquiry.

    Do you encounter any errors when importing the demo? Please provide the admin information in the private field so that we can test the demo import. In the meantime, you can register a new account using your purchase code via the following link.

    // https://kriesi.at/support/register/

    Best regards,
    Ismael

    in reply to: Styling Issues after importing Enfold 2017 Theme Demo #1434971

    Hey Eric,

    Thank you for the inquiry.

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. By disabling the file compression settings, you will be able to make the necessary adjustments and updates without any conflicts. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Menu mouseover displaced #1434970

    Hi,

    Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonry entries – add metadata #1434963

    Hi,

    Thank you for the inquiry.

    The category and post date are already included in the masonry element, but the author info is not. If you want to include the author name, you can add this filter in the functions.php file.

    add_filter("avf_masonry_entry_content", function($content, $entry, $config) {
        $author_name = get_the_author_meta('display_name', $entry["post_author"]);
        $separator = ' ';
        $output = '';
    
        if ( ! empty( $author_name ) ) {
            $output = '<b><em>' . esc_html( $author_name ) . '</em></b>';
            $content = $output . $content;
        } 
    
        return $content;
    }, 10, 3);
    

    Best regards,
    Ismael

    in reply to: Styles don’t load on iPhone #1434960

    Hi,


    @Nihru
    : If you’re using a cache plugin with compression enabled, consider disabling the Enfold > Performance > File Compression settings to prevent conflicts, or vice versa. If the issue persists, please start a new thread and provide login information in the private field.

    @gatica: Thank you for sharing the information! Glad to hear that you were able to resolve the issue. Please let us know if you have more questions.

    Have a nice day!

    Best regards,
    Ismael

    in reply to: Adress fb and ig buttons in headerline #1434959

    Hi,

    Thank you for the update.

    The page is not loading on our end, and it doesn’t seem to exist.

    when the site uses fullscreen and the custom widget, it doesn’t start at the top

    What do you mean? Please provide a screenshot using Savvyify, Imgur, or Dropbox.

    Best regards,
    Ismael

    in reply to: Darstellung Beitrag Seitenbreite #1434958

    Hi,

    Thank you for the update.

    Please note that when you switch to the Advanced Layout Builder (ALB), all default elements, including the featured image, post meta info, etc., will no longer display. This is probably why you’re not seeing the preview or featured image. You have to add this content manually using the elements in the builder. For the featured image, you can use an Image element or any of the Slider elements in the Media Elements tab.

    Best regards,
    Ismael

    in reply to: Dropdown alignment #1434957

    Hi,

    Thank you for the inquiry.

    You can add this css code to align the icon with the button text.

    .av-4nzmkd-57f4e8124b72523d6b91c72c00871e26 + .avia_codeblock_section .avia_codeblock .dropdown {
        display: flex;
        min-height: 48px;
        justify-content: center;
    }
    
    .av-4nzmkd-57f4e8124b72523d6b91c72c00871e26 + .avia_codeblock_section .avia_codeblock .dropdown .avia_button_icon {
        padding-left: 0;
        margin-right: 10px;
    }

    Best regards,
    Ismael

    in reply to: Duplizieren und Editieren von Blogbeiträgen #1434956

    Hey ludgerf,

    Thank you for the inquiry.

    Did you switch the editor to the Advanced Layout Builder (ALB)? Please note that when you switch the editor to ALB, all default elements, including the featured images and post meta info, will no longer display. You will have to add those contents manually using the available elements in the builder.

    Best regards,
    Ismael

    in reply to: Pagination not working on mobile #1434955

    Hey mgyura,

    Thank you for the inquiry.

    The pagination seems to be working correctly on our end. Have you tried testing it on a different device or browser? Please provide a screenshot using Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: URGENT #1434954

    Hey Anouk,

    Thank you for the inquiry.

    The home page seems to be responding correctly on mobile view. Have you tried purging the cache or clearing the browser history? Please provide a screenshot using Savvyify, Imgur, or Dropbox.

    Best regards,
    Ismael

    in reply to: Content Slider Arrows #1434953

    Hey MikeTandySwag,

    Thank you for the inquiry.

    You can add this css code to remove the text behind the arrow.

    #top #wrap_all .avia-smallarrow-slider.av-slideshow-ui .avia-slideshow-controls a {
        text-indent: 9999px;
    }

    Best regards,
    Ismael

    in reply to: Can I specify an alpha ordered list? #1434854

    Hey John,

    Thank you for the inquiry.

    Try to add a unique class name to the list:

    ol class="alpha-list">
     	<li>Item 1</li>
     	<li>Item 2</li>
     	<li>Item 3</li>
    </ol>
    

    Then add the following css to adjust the style type:

    .alpha-list {
      list-style-type: lower-alpha;
    }
    

    Best regards,
    Ismael

    in reply to: Question about menu layout/scroll #1434850

    Hi,

    Thank you for the screenshot.

    Would you mind providing a direct link to the page in question? Please refer to the private field for a screenshot of what we see on our end.

    Best regards,
    Ismael

    in reply to: Can’t install demo import #1434849

    Hi,


    @Skytaya2727
    : Glad to know! Please feel free to open another thread if you have more questions about the theme. Have a nice day!

    Best regards,
    Ismael

    in reply to: unpredictable font sizes… #1434847

    Hey mikecowles,

    Thank you for the inquiry.

    The post css file, which contains custom styles for elements in the builder, is not being generated on the live site. This issue could be due to file or folder permission problems within the wp-content > uploads directory. Did you change the location of the uploads folder?

    Failed to load resource: the server responded with a status of 404 () post-212.css:1 
    

    Please try to disable the Enfold > Performance > File Compression settings and temporarily deactivate the plugins. Let us know if this changes anything.

    Best regards,
    Ismael

    in reply to: Question about menu layout/scroll #1434843

    Hey Erin,

    Thank you for the inquiry.

    The main menu seems to be displaying correctly on our end. Would you mind providing a screenshot of the issue? 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: Darstellung Beitrag Seitenbreite #1434842

    Hey ludgerf,

    Thank you for the inquiry.

    You need to edit the post and apply a featured image to it. Additionally, if you need to adjust the width of the content, you can edit the post and set the Layout > Sidebar Settings to use either a Left or Right Sidebar. For more information about featured images, please refer to the link below.

    // https://wordpress.com/support/featured-images/#set-a-featured-image

    Best regards,
    Ismael

    in reply to: Adress fb and ig buttons in headerline #1434841

    Hi,

    Thank you for the screenshots.

    Have you tried switching the builder to fullscreen? This should provide you with ample space to navigate the builder and make it easier to drag and drop elements across the editing area. Unfortunately, there is no option to group elements and drag/drop them together. You’ll find the Fullscreen button next to the Templates button.

    Best regards,
    Ismael

    in reply to: Can’t install demo import #1434840

    Hi,


    @designguy2006
    : Do you encounter any errors during the demo import process? We tried to log in to the site using the provided credentials, but they seem to be invalid. Please open a new thread and provide a valid admin account so that we can thoroughly inspect the site. You can create a new thread here: https://kriesi.at/support/forum/enfold/#new-post

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can temporarily disable the Enfold > Performance > File Compression settings and manually delete the entries in the dynamic_avia folder. Afterward, you can opt for a different compression plugin like Autoptimize, or use the default compression options provided by your cache plugin.

    IMPORTANT: Please make sure to create a site backup or restore point before doing the steps above.

    Best regards,
    Ismael

Viewing 30 posts - 5,911 through 5,940 (of 67,463 total)