Forum Replies Created

Viewing 30 posts - 2,551 through 2,580 (of 66,166 total)
  • Author
    Posts
  • in reply to: SVG doesn’t appear #1469285

    Hi,

    Thank you for the update.

    Why nit in the image element?

    Yes, the logo supports SVG images by default, but unfortunately, not the Image element. Please try to use a Code or Text Block element and embed the SVG code directly.

    Best regards,
    Ismael

    in reply to: Add content to posts based on their tags/categories #1469284

    Hi,

    Thank you for the update.

    Is there a way to put the Page Content element in a Layout Element (for example 1/5)?

    Unfortunately, this is not possible. You might want to check the Custom Elements Template. Please check the link below:

    // https://kriesi.at/documentation/enfold/custom-element-templates/

    Best regards,
    Ismael

    in reply to: portfolio grid #1469283

    Hey Qgrafica_7,

    Thank you for the inquiry.

    You can add this css code to adjust the font size of the category sort, but it may become a little too small.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .avia-fullwidth-portfolio #js_sort_items a,
      .avia-fullwidth-portfolio #js_sort_items .text-sep {
        font-size: 8px;
      }
    }
    

    Best regards,
    Ismael

    Hi,

    Great! Glad to know that the issue has been resolved. Please don’t hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Question on Portfolios #1469281

    Hey Leslie Williams,

    Thank you for the inquiry.

    Did you register a forum account in the following link? https://kriesi.at/support/register/

    I have version 4.7.6.4 installed. That’s quite a few updates ago.

    1-2.) Please download the latest version of the theme from your Themeforest account, then try to upload it manually to your server via FTP. For more info, please check the links below.

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

    IMPORTANT: We recommend creating a clone of the site, perform the update there, fix any errors that may occur, and then transfer it to the live site.

    Best regards,
    Ismael

    in reply to: Funky PHP Trouble #1469279

    Hi,

    Thank you for the update.

    The Enfold theme is missing from the /friends/wp-content/themes folder. Try manually uploading the theme to the specified directory.

    Best regards,
    Ismael

    in reply to: Video not playing #1469215

    Hi,

    As mentioned above, the video is disabled by default on mobile devices. Only the fallback image will display in its place.

    Best regards,
    Ismael

    in reply to: SVG doesn’t appear #1469214

    Hey ausgesonnen,

    Thank you for the inquiry.

    The Image element in the builder doesn’t support SVG files by default. To embed the SVG image, try opening it in a code editor, extract the SVG code, and then place the SVG Code in a Text or Code Block element.

    Example:

    <?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
    <svg width="800px" height="800px" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path fill-rule="evenodd" clip-rule="evenodd" d="M8 16L3.54223 12.3383C1.93278 11.0162 1 9.04287 1 6.96005C1 3.11612 4.15607 0 8 0C11.8439 0 15 3.11612 15 6.96005C15 9.04287 14.0672 11.0162 12.4578 12.3383L8 16ZM3 6H5C6.10457 6 7 6.89543 7 8V9L3 7.5V6ZM11 6C9.89543 6 9 6.89543 9 8V9L13 7.5V6H11Z" fill="#000000"/>
    </svg>
    

    Best regards,
    Ismael

    in reply to: Video not playing #1469212

    Hey!

    Thank you for the update.

    It is loading on desktop and Iphone

    Background videos are actually disabled on mobile devices by default, so they should only play on desktop view. You need to add a fallback image that will display instead of the background on mobile devices.

    Cheers!
    Ismael

    in reply to: Untermenü auf Seite #1469211

    Hey Tombobln,

    Thank you for the inquiry.

    You can add or create a Navigation Menu widget in the Appearance > Widgets panel. Please check the documentation below:

    // https://wordpress.com/support/widgets/navigation-menu-widget/

    Best regards,
    Ismael

    in reply to: Changing Justified Text in Blog Post on Mobile #1469210

    Hey trevorwilson,

    Thank you for the inquiry.

    Please add the following css code to adjust the alignment of the post title. Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .fullsize .template-blog .post .entry-content-wrapper {
        text-align: left;
      }
    }

    Best regards,
    Ismael

    in reply to: Password secured area #1469208

    Hey Svlf1,

    Thank you for the inquiry.

    But when I searched our site in the web those sites were offered by the browser without the need of a password.

    How can we reproduce the issue? Have you tried setting the visibility of the page to Private or Password Protected? Please provide the link to the page with the issue and review the documentation below.

    // https://wordpress.com/support/post-and-page-visibility/
    // https://make.wordpress.org/support/user-manual/pages/page-visibility/

    Best regards,
    Ismael

    in reply to: Icons disapeared #1469207

    Hi,

    No problem! Glad we could be of help. Please feel free to open another thread if you have more questions about the theme. Thank you for your patience.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Video not playing #1469206

    Hi,

    Thank you for the update.

    The video is loading correctly on our end. Did you figure out the issue? Please check the clip in the private field.

    Best regards,
    Ismael

    in reply to: have categories in bokes #1469205

    Hi,

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

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Blog Layout #1469204

    Hi,

    Thank you for the update.

    To hide the date, you can add this css code:

    .slide-entry-wrap .slide-entry .slide-meta-time {
        display: none;
    }

    Or toggle the Blog Post Date option in the Enfold > Blog layout > Blog Meta Elements section.

    And to display the oldest posts first, please add this filter in the functions.php file:

    add_filter( 'avia_post_slide_query', 'avf_custom_avia_post_slide_query', 10, 2 );
    function avf_custom_avia_post_slide_query( $query, $params ) {
        $query['orderby'] = 'date';
        $query['order'] = 'ASC';
    
        return $query;
    }
    

    Best regards,
    Ismael

    in reply to: Youtube Videos are just shown in black #1469202

    Hey rixi,

    Thank you for the inquiry.

    The videos seem to be loading correctly on our end. Please check the screenshot in the private field. Have you tried testing this on a different device or browser?

    Best regards,
    Ismael

    in reply to: Icons disapeared #1469200

    Hi,

    Thank you for the update.

    The issue occurred because of the Google Tag Manager embed code, specifically the character at the very end. We corrected the code in the Settings > Head and Footer panel.

    <!-- Google Tag Manager -->
    <!-- End Google Tag Manager (noscript) →
    

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Please edit all the Text Blocks with the table element, go to Advanced > Developer Settings panel, apply the name “av-custom-text-table” in the Custom CSS Class field, then add this css code to make the tables scrollable in mobile view.

    .av-custom-text-table {
        overflow: auto;
    }

    Best regards,
    Ismael

    in reply to: Hiding Locked elements #1469197

    Hi,

    Thank you for the update.

    This is working correctly when tested on our end. Please provide an admin and editor account in the private field so we can further check the site.

    Best regards,
    Ismael

    in reply to: Custom ordering of the Enfold Woocommerce slider #1469195

    Hey jakubc15,

    Thank you for the inquiry.

    What do you mean by “Woocommerce Slider integrated in Enfold by a custom meta”? Please provide a screenshot and the link to the page containing the slider so that we can check it.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    This is the default WordPress settings:

    /** Database Charset to use in creating database tables. */
    define('DB_CHARSET', 'utf8mb4');
    
    /** The Database Collate type. Don’t change this if in doubt. */
    define('DB_COLLATE', '');
    

    For older versions:

    /** Database Charset to use in creating database tables. */
    define( 'DB_CHARSET', 'utf8' );
    
    /** The Database Collate type. Don't change this if in doubt. */
    define( 'DB_COLLATE', '' );
    

    Best regards,
    Ismael

    in reply to: related products categories #1469191

    Hi,

    Thank you for the update.

    You can apply a custom field called av_related_category_id to the product and use the ID of the category you’d like to display as its value. We also updated the filter to accommodate these changes.

    add_filter( 'woocommerce_related_products', 'avf_custom_related_products_by_custom_field', 10, 3 );
    
    function avf_custom_related_products_by_custom_field( $related_posts, $product_id, $args ) {
        $category_id = get_post_meta( $product_id, 'av_related_category_id', true );
    
        if ( ! $category_id ) {
            return $related_posts;
        }
    
        $related_products = get_posts( array(
            'posts_per_page' => $args['posts_per_page'],
            'post_type'      => 'product',
            'fields'         => 'ids',
            'tax_query'      => array(
                array(
                    'taxonomy' => 'product_cat',
                    'field'    => 'term_id',
                    'terms'    => $category_id,
                ),
            ),
        ) );
    
        return $related_products;
    }
    

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    The Appearance > Theme File Editor is not accessible when we checked the site. Please enable the editor so that we can check the theme files.

    // // https://www.linkedin.com/pulse/troubleshooting-guide-wordpress-theme-editor-missing-mog6c

    Does it work correctly after you removed this shortcode?

    [av_iq_teammember name='23476 - Marit Kuypers' description='' font_color='' custom_title='' custom_content='' custom_class='' template_class='' av_uid='' sc_version='1.0'][/av_iq_teammember]
    

    Best regards,
    Ismael

    Hi,

    You’re welcome! Glad we could be of help. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hey cpages,

    Thank you for the inquiry.

    Please edit the product category in the Products > Category panel, then set the Enfold Category Styling to Default. Let us know of the result.

    Best regards,
    Ismael

    in reply to: Add content to posts based on their tags/categories #1469124

    Hey atx_m,

    Thank you for the inquiry.

    There is no default option for this, but you can try creating a custom shortcode and adding it to a Text or Code Block element.

    // https://codex.wordpress.org/Shortcode_API

    Example:

    function my_custom_shortcode() {
        return 'Hello, you can replace this with dynamic content based on certain conditions!';
    }
    
    add_shortcode('my_shortcode', 'my_custom_shortcode');

    Best regards,
    Ismael

    in reply to: have categories in bokes #1469123

    Hi,

    Thank you for the update.

    You can add this css code to adjust the color of the selected category:

    .responsive #top .main_color #js_sort_items a.active_sort.active_sort {
        color: #ffffff !important;
        border-color: #ffffff;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Have you tried temporarily deactivating the plugins or switching to a default Twenty-XX theme? You may need to contact your hosting provider for additional info or assistance, as this issue is not directly related to the theme.

    Best regards,
    Ismael

    in reply to: related products categories #1469120

    Hey fabio,

    Thank you for the inquiry.

    Related products are generated by WooCommerce, and there is no default option to change which items are shown in the grid. You can try the following filter in the functions.php file to change the related products query but this will affect the site globally.

    add_filter( 'woocommerce_related_products', 'avf_custom_related_products_by_category', 10, 3 );
    
    function avf_custom_related_products_by_category( $related_posts, $product_id, $args ) {
        $category_id = 123; // Replace 123 with your desired category ID
    
        $related_products = get_posts( array(
            'posts_per_page' => $args['posts_per_page'],
            'post_type'      => 'product',
            'fields'         => 'ids',
            'tax_query'      => array(
                array(
                    'taxonomy' => 'product_cat',
                    'field'    => 'term_id',
                    'terms'    => $category_id,
                ),
            ),
        ) );
    
        return $related_products;
    }
    

    Make sure to replace $category_id with the ID of the category that you would like to display.

    Best regards,
    Ismael

Viewing 30 posts - 2,551 through 2,580 (of 66,166 total)