Forum Replies Created

Viewing 30 posts - 3,721 through 3,750 (of 67,469 total)
  • Author
    Posts
  • 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

    in reply to: iframe – mobile #1470212

    Hey yoncay,

    Thank you for the inquiry.

    You may need to wrap the iframe in a container and then apply a minimum height to that container.

    Example:

    
    <div style="min-height: 500px; position: relative;">
        <iframe 
            style="position: absolute; left: 0; right: 0; top: 0; border-radius: 15px; border: 0; margin: 0 auto;" 
            src="https://3d-configurator.arimars.com/arimars/AutumnSeasonTshirt" 
            width="560" 
            height="500">
        </iframe></div>
    

    Best regards,
    Ismael

    in reply to: Bento Box Layout #1470210

    Hi,

    Thank you for the update.

    You may need to manually create the html and css for this layout. You can add this html in a Code Block element for example:

    
    <div class="av-bento-container">
    <div class="av-bento-box av-bento-left-box">Left Box (100%)</div>
    <div class="av-bento-right-container">
    <div class="av-bento-box av-bento-top-box">Top Box</div>
    <div class="av-bento-box av-bento-bottom-box">Bottom Box</div>
    </div>
    </div>
    

    Then insert this css code:

    .av-bento-container {
        display: flex;
        height: 100vh; 
    }
    
    .av-bento-container .av-bento-left-box {
        flex: 1; 
        background-color: #4CAF50; 
        color: white;
        padding: 20px;
        text-align: center;
    }
    
    .av-bento-container .av-bento-right-container {
        display: flex;
        flex-direction: column; 
        width: 300px; 
    }
    
    .av-bento-container .av-bento-top-box {
        flex: 1;
        background-color: #2196F3; 
        color: white;
        padding: 20px;
        text-align: center;
    }
    
    av-bento-container .av-bento-bottom-box {
        flex: 1; 
        background-color: #f44336;
        color: white;
        padding: 20px;
        text-align: center;
    }

    Best regards,
    Ismael

    in reply to: Avia Layout Builder off screen #1470209

    Hey nancyT,

    Thank you for the inquiry.

    This issue has been fixed in the latest version of the theme. Please upgrade to version 6.0.6 or add this hook in the functions.php file:

    function admin_head_mod() {
    echo '<style type="text/css">
    	#postbox-container-2 { clear: left; }
    	.index-php #postbox-container-2 { clear: none; }
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');
    

    Best regards,
    Ismael

    in reply to: License expired so no support available… #1470197

    Hi,

    Well, I simply typed the involved URI, in a new line, at that was it. I did not actually use any Embed block: that IFRAME-embed was done automatically,

    The issue is that the Embed Block from the block or default editor is inside a Code Block element, which is why the script above is being applied. You cannot use an Embed Block inside a Code Block element by default. Did you switch from the Block Editor to the Advanced Layout Builder? You can only use one editor at a time; you cannot switch back and forth. We have forwarded the issue to our channel.

    Best regards,
    Ismael

    in reply to: Openi Accordion Tabs with Javascript #1470196

    Hi,

    Alright! 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: Left side bar menu #1470195

    Hey leloux,

    Thank you for the inquiry.

    You can use the ava_main_header_sidebar hook in the functions.php file to insert additional content to the left sidebar menu or header:

    Example:

    The following will add a paragraph element:

    add_action( 'ava_main_header', 'ava_header_sidebar_custom_text' );
    function ava_header_sidebar_custom_text() {
      echo "<p class='av-sidebar-header-text'>Additional text</p>";
    }

    This one will insert a widget area called “header-top”:

    add_action( 'ava_main_header', 'ava_header_sidebar_widget_area' );
    function ava_header_sidebar_widget_area() {
      dynamic_sidebar( 'header-top' );
    }

    Best regards,
    Ismael

    in reply to: Input fields are greyed out / disabled #1470194

    Hey Silje,

    Thank you for the inquiry.

    Have you tried adjusting the color values in the Enfold > General Styling > Main Content tab? To fix the issue temporarily, please disable the Autoptimize and cache plugin, then add this css code:

    #top .main_color .input-text, #top .main_color input[type=text], #top .main_color input[type=input], #top .main_color input[type=password], #top .main_color input[type=email], #top .main_color input[type=number], #top .main_color input[type=url], #top .main_color input[type=tel], #top .main_color input[type=search], #top 
     .main_color textarea, #top .main_color select {
       border-color: black;
       background-color: white;
       color: gray;
       font-family: inherit;
    }

    Best regards,
    Ismael

    in reply to: Manu Button text hover color #1470192

    Hey michelebond,

    Thank you for the inquiry.

    Try to adjust the Highlight Color value in the Enfold > General Styling > Logo Area tab. Let us know of the result.

    Best regards,
    Ismael

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

    Hey michelebond,

    Thank you for the inquiry.

    You can use this css code to adjust the color of the widget title:

    .main_color div .news-headline .news-title {
        color: #ffffff;
    }

    Best regards,
    Ismael

    in reply to: Woocommerc NEXT product options #1470190

    Hey!

    Unfortunately, there is no option for this for the product post type as mentioned above. You can try the following filter in the functions.php file but it may not work as expected:

    add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1);
    function avf_post_nav_settings_mod($settings)
    {
        $settings['same_category'] = true;
        return $settings;
    }

    Best regards,
    Ismael

Viewing 30 posts - 3,721 through 3,750 (of 67,469 total)