Forum Replies Created

Viewing 30 posts - 211 through 240 (of 63,979 total)
  • Author
    Posts
  • 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

    in reply to: Manu Button text hover color #1470300

    Hi,

    Thank you for the update.

    It seems to be working on our end. The text color is no longer black on hover. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: Left side bar menu #1470299

    Hi,

    Thank you for the update.

    We added this code in the functions.php file around line 52:

    add_action('ava_after_main_menu', 'ava_header_sidebar_custom_text');
    function ava_header_sidebar_custom_text() {
        echo "
        <div class='av-sidebar-header-text'>
            <p><strong>Psychologenpraktijk Sterk</strong></p>
            <p>Hogezoom 15</p>
            <p>4328 EE Burgh-Haamstede</p>
            <p><strong>Email:</strong> <a href='mailto: (Email address hidden if logged out) '> (Email address hidden if logged out) </a></p>
            <p><strong>Tel.nr:</strong> <a href='tel:+31654356557'>06-54356557</a></p>
        </div>
        ";
    }

    Then added this css code:

    .av-sidebar-header-text {
        padding: 20px 40px;
    }

    We noticed that you’re not using a child theme. In order to preserve this modification during updates, we recommend activating a child theme and placing the code in its functions.php file instead.

    Best regards,
    Ismael

    Hey Lars,

    Thank you for the inquiry.

    Which element are you using to display the events? If you’re using the Upcoming Events Dountdown element, please note that this element can display only the original event, not recurring events. You may need to rely on the default plugin shortcodes for this.

    // https://theeventscalendar.com/knowledgebase/shortcodes/

    Best regards,
    Ismael

    Hey RollandH,

    Thank you for the inquiry.

    Did you change the login URL? Please include the custom login or admin URL in the private field.

    Best regards,
    Ismael

    in reply to: Category dropdown and search on mobile #1470296

    Hey whdsolutions,

    Thank you for the inquiry.

    There is no option for this by default, but you can try this code in the functions.php file:

    function av_search_and_category_dropdown() {
        if (is_shop() || is_product_category() || is_product_taxonomy()) {
            echo '<div class="av-mobile-search-category-dropdown">';
            ?>
            <form role="search" method="get" class="woocommerce-product-search" action="<?php echo esc_url(home_url('/')); ?>">
                <div style="display: flex; flex-direction: column;">
                    <select name="product_cat" id="product_cat" style="width: 100%;">
                        <option value=""><?php _e('Select Category', 'woocommerce'); ?></option>
                        <?php
                        $categories = get_terms('product_cat');
                        foreach ($categories as $category) {
                            echo '<option value="' . esc_attr($category->slug) . '">' . esc_html($category->name) . '</option>';
                        }
                        ?>
                    </select>
                    <input type="text" placeholder="<?php _e('Search products...', 'woocommerce'); ?>" name="s" id="s" />
                    <input type="hidden" name="post_type" value="product" />
                    <button type="submit"><?php _e('Search', 'woocommerce'); ?></button>
                </div>
            </form>
            <?php
            echo '</div>';
        }
    }
    add_action('woocommerce_before_shop_loop', 'av_search_and_category_dropdown');
    
    function av_prevent_single_product_redirect($query) {
        if (!is_admin() && $query->is_main_query() && $query->is_search() && is_search()) {
            $query->set('post_type', array('product'));
            $query->set('posts_per_page', 12); 
        }
        remove_action('template_redirect', 'wc_template_redirect'); 
    }
    add_action('pre_get_posts', 'av_prevent_single_product_redirect');
    

    Then add this css code to only display the form on mobile view:

    
    /* Hide search and category dropdown on larger screens */
    .av-mobile-search-category-dropdown {
        display: none;
    }
    
    /* Show on mobile screens only */
    @media (max-width: 768px) {
        .av-mobile-search-category-dropdown {
            display: block;
            padding: 10px;
            background-color: #f9f9f9;
        }
    }

    Best regards,
    Ismael

    in reply to: Code Element WPML issue #1470295

    Hey Patrick,

    Thank you for the inquiry.

    What do you mean by “code element”? Are you using a plugin for this? Try to wrap the XML code in a wpml-string shortcode.

    // https://wpml.org/documentation/support/wpml-coding-api/shortcodes/

    Best regards,
    Ismael

Viewing 30 posts - 211 through 240 (of 63,979 total)