Forum Replies Created

Viewing 30 posts - 2,371 through 2,400 (of 66,145 total)
  • Author
    Posts
  • in reply to: Menu button gradient? #1470388

    Hi,

    No problem! Glad @Guenni007 helped. 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: Manu Button text hover color #1470387

    Hi,

    Thank you for the screenshot.

    It doesn’t appear that way on our end. Try viewing the site in incognito mode or using a different browser. Please check the screenshot in the private field.

    Best regards,
    Ismael

    in reply to: Testimonial Slider Mobile #1470386

    Hi,

    Good to know! Let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: “critical error on website” only on homepage #1470385

    Hi,

    Thank you for the inquiry.

    So I sent them the error log and I’m waiting for their reply.

    What does the error log show? Please temporarily disable the plugin so you can work on the pages, and post the error using Pastebin so we can review it on our end.

    Best regards,
    Ismael

    Hi,

    Great! 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: Different view in mobile and in desktop #1470383

    Hi,

    Thank you for the inquiry.

    The issue doesn’t occur when we’re logged in and the WP Rocket plugin is disabled. Please try adjusting the cache options until you find a working combination. You may need to toggle the compression settings in the caching plugin.

    Best regards,
    Ismael

    in reply to: Where to turn on images on blog category pages #1470382

    Hi,

    Thank you for the update.

    What happens when you set the $atts[‘image_size’] value from “portfolio” to “full”?

    $atts['image_size'] = 'full';
    

    You can change the column count by adjusting this line:

    $atts['columns'] = 4;
    

    Best regards,
    Ismael

    in reply to: Code Element WPML issue #1470381

    Hi,

    Thank you for the update.

    Did you try the wpml-string shortcode? We may need to access the site to properly check the issue. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: 6 columns #1470380

    Hi,

    Thank you for the update.

    There will be no additional options for these columns since they are created manually. If you need animation and other options, you will need to use the default Column element.

    Best regards,
    Ismael

    in reply to: Easy way to use ACF to drive EasySlider? #1470328

    Hi,

    Thank you for the update.

    We received this Wordfence error when we try to access the site:

    Your access to this site has been limited by the site owner
    Your access to this service has been limited. (HTTP response code 503)

    If you think you have been blocked in error, contact the owner of this site for assistance.

    Please disable the plugin temporarily.

    Best regards,
    Ismael

    in reply to: Search symbol on the left side of main menu is blank #1470327

    Hi,

    Thank you for the info.

    We managed to login to the site, but the frontend appears completely blank when we checked. Did you change anything? Please restore the site to a working condition, then we’ll check it again. You may need to set the installation to debug mode and enable the error logs.

    // https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#example-wp-config-php-for-debugging

    Best regards,
    Ismael

    in reply to: Where to turn on images on blog category pages #1470325

    Hi!

    Thank you for the update.

    Try to add this filter to adjust the thumbnail size of the featured images.

    add_filter("avf_post_slider_args", function($atts, $context) {
        if ($context == "archive") {
            $atts['type'] = 'grid'; 
            $atts['columns'] = 4;
            $atts['preview_mode'] = 'custom';
            $atts['image_size'] = 'portfolio';
        }
        return $atts;
    }, 10, 2);

    Regards,
    Ismael

    in reply to: Center Subheading when text default is justify #1470319

    Hey Eduardo,

    Thank you for the inquiry.

    However, I need to apply center text alignment to subheadings into Special Heading element too

    Have you tried adjusting the Content > Heading Style of the Special Heading element? You can select one of the “centered” options to center-align the heading.

    Best regards,
    Ismael

    in reply to: Enfold theme update not possible #1470318

    Hey Jaroslav ,

    Thank you for the inquiry.

    What is the current version of the theme? You may need to do the update manually via FTP. Please check the documentation below for more info.

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

    Best regards,
    Ismael

    in reply to: Query Loop? #1470317

    Hey lausianne,

    Thank you for the inquiry.

    The theme doesn’t have a Query Loop element, but you can try using post elements like Blog Posts, Magazine, Post Slider, Portfolio Grid, or Masonry. You can also manually create a similar layout by using the Column element along with other available elements in the builder.

    Best regards,
    Ismael

    in reply to: WooCommerce Product Images Grid Error #1470316

    Hey clintrichardson24,

    Thank you for the inquiry.

    We’re not exactly sure why the spaces are appearing, but you can try this css code to fix it:

    .single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }

    Best regards,
    Ismael

    Hey gatehealing,

    Thank you for the inquiry.

    We’re not sure we understand the issue. Would you mind providing a screenshot of the search icon? Could you clarify what you mean by “in-between size”. and how you get to this size? Are you using a device with a specific model?

    Best regards,
    Ismael

    in reply to: 6 columns #1470314

    Hey dsignoWerbung,

    Thank you for the inquiry.

    but enfold only allows 5 columns (5 x 1/5). What can I do?

    You may need to manually create this using custom html and css in a Text or Code block element.

    Example:

    
    <div class="av-column-container">
    <div class="av-column av-column-one-sixth">Column 1</div>
    <div class="av-column av-column-one-sixth">Column 2</div>
    <div class="av-column av-column-one-sixth">Column 3</div>
    <div class="av-column av-column-one-sixth">Column 4</div>
    <div class="av-column av-column-one-sixth">Column 5</div>
    <div class="av-column av-column-one-sixth">Column 6</div>
    </div>
    

    Then add this css code:

    .av-column-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px; 
    }
    
    .av-column-container .av-column-one-sixth {
        flex: 1 1 calc(100% / 6 - 10px); /
        background-color: #f0f0f0;
        padding: 20px;
        text-align: center;
        box-sizing: border-box;
    }
    
    @media (max-width: 768px) {
        .av-column-container .av-column-one-sixth {
            flex: 1 1 calc(50% - 10px); 
        }
    }
    
    @media (max-width: 480px) {
        .av-column-container .av-column-one-sixth {
            flex: 1 1 100%; 
        }
    }
    

    Best regards,
    Ismael

    in reply to: Different view in mobile and in desktop #1470313

    Hi,

    Thank you for the update.

    We may need to access the site to properly check the issue. Please provide the login details in the private field and make sure that the Appearance > Theme File Editor is accessible.

    Best regards,
    Ismael

    Hi,

    there no way to just make the images full-size as they were before?

    Please switch back to the default enfold product gallery, then add this filter in the functions.php file to adjust the thumbnail size:

    add_filter('single_product_small_thumbnail_size', function($size) {
        $size = 'full';
        return $size;
    }, 10, 1);

    Best regards,
    Ismael

    in reply to: Demo file not working with OVH (image) #1470311

    Hi,

    Thank you for the update.

    The icons seem to be displaying correctly when we checked. Regarding the map, please make sure that the JavaScript API is activated in your Google project.

    // https://developers.google.com/maps/documentation/javascript/error-messages#api-not-activated-map-error

    Review the documentation below for more info.

    // https://kriesi.at/documentation/enfold/google-map/#how-to-register-a-google-maps-api-key

    Best regards,
    Ismael

    in reply to: Where to turn on images on blog category pages #1470310

    Hey Jason,

    Thank you for the inquiry.

    You can adjust the layout of the archive pages in the Enfold > Blog Layout > Blog Layout settings. You can also use this filter in the functions.php file:

    add_filter('avf_blog_style','avf_blog_style_mod', 10, 2); 
    function avf_blog_style_mod($layout, $context){
       if($context == 'archive') $layout = 'blog-grid';
       return $layout;
    }

    Best regards,
    Ismael

    in reply to: Transparent part in slider #1470309

    Hi,

    Thank you for the update.

    You can add this css code to display the burger menu on mobile view:

    @media only screen and (max-width: 767px) {
         /* Add your Mobile Styles here */
        .responsive #header_main_alternate {
            display: block;
        }
    }
    

    Best regards,
    Ismael

    in reply to: How to submit and use custom fonts #1470307

    Hi,


    @Guenni007
    : We’ll forward the info to our channel. Thanks.

    Best regards,
    Ismael

    in reply to: Text and Picture align left instead of center on tablet #1470306

    Hey Monika,

    Thank you for the inquiry.

    The content is still center-aligned, but the text gets pushed out of the container because of the column padding.

    .flex_column.av-m2w8a60p-13fc3685d08ecccadf0728ef376c8d28 {
        padding: 100px 100px 100px 60px;
    }

    Have you tried adjusting the padding and margins on smaller screens? Edit the settings, then toggle the device icons to adjust the values for different sizes.

    Best regards,
    Ismael

    in reply to: Contact Form Button Color #1470305

    Hey michelebond,

    Thank you for the inquiry.

    Try to include this css code to change the color of the submit button on hover:

    .main_color #submit:hover, .main_color input[type=submit]:hover {
        background-color: purple !important;
        color: #fff !important;
        border-color: purple !important;
    }

    Best regards,
    Ismael

    in reply to: Icon list vertical spacing #1470304

    Hey michelebond,

    Thank you for the inquiry.

    Did you set the Styling > General Styling > List Styling settings to Minimal small list? Please try to reset it to default, or add this css code:

    #top .av-iconlist-small li {
        padding: 10px 0;
    }

    Best regards,
    Ismael

    in reply to: Testimonial Slider Mobile #1470303

    Hey michelebond,

    Thank you for the inquiry.

    We can’t reproduce the issue on our end; the testimonial element container responds correctly on smaller screens. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: Menu button gradient? #1470302

    Hi,

    We adjusted the css code a bit:

    #menu-item-691 .avia-menu-text {
        color: #fff;
        background: linear-gradient(-45deg,#FFA63D,#FF3D77,#338AFF,#3CF0C5);
        background-size: 600%;
        border: none !important;
        animation: anime 14s linear infinite;
        padding: 11px 20px !important;
        overflow: hidden;
    }
    
    @keyframes anime {
      0% { background-position:0% 50% }
      50% { background-position:100% 50% }
      100% { background-position:0% 50% }
    }

    Best regards,
    Ismael

    in reply to: Footer Blog Widget Title and font Color #1470301

    Hi,

    Thank you for the update.

    Please include this css code to adjust the color of the date and categories:

    #top .news-content .news-link a, #top .news-content .news-time {
        color: #ffffff;
    }

    Best regards,
    Ismael

Viewing 30 posts - 2,371 through 2,400 (of 66,145 total)