Forum Replies Created

Viewing 30 posts - 2,431 through 2,460 (of 67,463 total)
  • Author
    Posts
  • in reply to: Header structure #1479054

    Hi,

    Thank you for the info.

    In the style.css file, you have the following css rules that target specific widgets using #custom_html-2 or #custom_html-3. These rules don’t apply to the EN version because the widget there has a different ID, #custom_html-4.

    body #header_main #custom_html-2 .col.btn a, body #header_main #custom_html-3 .col.btn a {
        display: block;
        background-image: linear-gradient(#d9c596, #b39b60);
        padding: 0 25px 0 25px;
        color: #050607;
        font-size: 14px;
        font-weight: 700;
        border-radius: 25px;
        max-height: 40px;
        line-height: 40px;
        text-transform: uppercase;
        margin-top: 5px;
    }

    Please update the css to include the widgets in the EN version.

    Best regards,
    Ismael

    in reply to: Mobile screen result (image) #1479053

    Hi,

    Did you add the code in the Enfold > General Styling > Quick CSS field? Please provide the login details in the private field so that we can test the modifications.

    Best regards,
    Ismael

    in reply to: Breaks added to code #1479052

    Hi,

    Thank you for the info.

    We are not yet sure why the < br > tags were added to the av_buttonrow element, but we managed to remove them by manually editing the shortcodes. We enabled the builder’s debug mode.

    https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    View post on imgur.com

    Best regards,
    Ismael

    Hey rgupta2019,

    Thank you for the inquiry.

    You can add this css code to apply a minimum width to the mega menu container:

    #menu-item-439 .avia_mega_div.three.units {
        min-width: 300px;
    }

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    Hey!

    Thank you for the update.

    Please note that the modification from the previous thread is for the default editor and the main/featured product image. It’s not going to work when the Advance Layout Builder (ALB) is active. This is still possible with the ALB, but you’ll have to use the Image element. Go to the Advanced > Animation panel, then set the Image Hover Effect settings to Fade to another image.

    Let us know if you need additional info.

    Cheers!
    Ismael

    in reply to: Enfold theme #1479004

    Hey Jevgeni,

    Thank you for the inquiry.

    If you don’t have access to the previous account that was used to purchase the theme, then your only option in this case is to create another account on Themeforest and purchase another license. You’ll then be able to register another account here in the forum using the purchase code and generate a private token. For more info on generating a private token, please check this documentation.

    https://kriesi.at/documentation/enfold/theme-registration/

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Easy Slider broken #1479000

    Hi,

    Great! Glad to know that this has been clarified. Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Phone Number aligned to right of logo area #1478999

    Hi,

    Did you add this code in the functions.php file?

    add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
        dynamic_sidebar( 'header' );
    }
    

    If you haven’t, please add the code or provide the login details in the private field so we can check the site further. Make sure the Appearance > Theme File Editor is accessible.

    Best regards,
    Ismael

    Hi,

    We’ll need the FTP details to make changes to the theme files and revert them if necessary. Please provide the information in the private field.

    Best regards,
    Ismael

    in reply to: Logo missing mobile view – header menu #1478995

    Hi,

    No problem! Please don’t hesitate to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    Hi,

    Try to include this css rule inside the media query (max-width: 479px) to adjust the width of the items in the product slider:

    .responsive #top #main .avia-product-slider-container .products .product {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .responsive #top #main .av-19u5brg-c8bf1da9222c2acf3c8412eb09911916 .products .product {
        margin: 0 1% 1% 0;
         width: 49%;
    }

    This should maintain the layout of the items in the “Our Best Selling Products” section.

    Best regards,
    Ismael

    in reply to: Google consent V2 and Enfold cookie bar? #1478992

    Hi,

    Apologies for the confusion. Unfortunately, Google Consent V2 has not yet been implemented in the theme. You may need to use a plugin or manually install third-party scripts for now. We haven’t tested the following plugins, but you can give them a try:

    https://wordpress.org/plugins/cookie-information-consent-solution/
    https://wordpress.org/plugins/cookie-law-info/
    https://wordpress.org/plugins/complianz-gdpr/

    Best regards,
    Ismael

    in reply to: Logo missing mobile view – header menu #1478991

    Hi,

    Thank you for the info.

    You have a filter in the functions.php file with the logo URL still pointing to the staging site.

    /* Use alternate logo on mobile view */
    add_filter('avf_logo','av_change_logo'); 
    function av_change_logo($logo) { 
    	if(wp_is_mobile()) { 
    	    $logo = "https://xxx.net.au/wp-content/uploads/xxx/02/xxxxx.png"; 
    	} 
    	return $logo; 
    }
    

    We updated the logo URL.

    Best regards,
    Ismael

    Hey James,

    Thank you for the inquiry.

    The Enfold > Theme Options > Page Transitions setting seems to conflict with the lightbox feature. Lightbox works without issue when the option is disabled. You may need to keep this option disabled when using the Essential Grid plugin.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We can see the same report when we run the profiler again. Could you please post the FTP details in the private field so we can test and debug the issue further? It would be even better if you could clone the site to a staging environment so that we can investigate without affecting the live site.

    Best regards,
    Ismael

    in reply to: Enfold occurs twice in Theme-Manager #1478985

    Hey slikslok,

    Thank you for the inquiry.

    You need to override the old version with 7.0 — deleting the old version and renaming the latest one should work. To be safe, please make sure to create a site backup or restore point before proceeding.

    Best regards,
    Ismael

    in reply to: Breaks added to code #1478983

    Hey purmar2,

    Thank you for the inquiry.

    Where can we check the issue? Please provide the site URL in the private field and include links to the affected pages. One of your options is to do a database query to remove all line breaks in the post content.

    https://pastebin.com/Pv9fBJS4

    IMPORTANT: Please make sure to create a site backup or restore point before proceeding.

    Best regards,
    Ismael

    in reply to: Image gallery caption speech bubbles #1478982

    Hey kinnear,

    Thank you for the inquiry.

    We are not able to check the page because it is password-protected. Please include the info in the private field.

    Best regards,
    Ismael

    in reply to: Blog page #1478981

    Hi,

    Which plugin did you use? According to the plugin description, you need to select the post types for which post views will be counted. Did you enable it for the product post type?

    Option to select post types for which post views will be counted and displayed.
    3 methods of collecting post views data: PHP, Javascript and REST API for greater flexibility
    Compatible with data privacy regulations

    Please contact the plugin developers for additional assistance.

    Best regards,
    Ismael

    in reply to: Mobile screen result (image) #1478978

    Hi,

    For the “Livraison en Afrique” page, please add this css code to adjust the size of the slider image on mobile view:

    #top .av-m7utj0fm-55a4085e08fb8dd95eeb6325426a31b7 li img {
        height: 300px;
        object-fit: cover;
        object-position: right;
    }
    

    Best regards,
    Ismael

    in reply to: Logo missing mobile view – header menu #1478977

    Hi,

    Thank you for the update.

    Did you add any filters or code in the functions.php file? Please provide the login details in the private field so that we can check the issue further. Make sure that the Appearance > Theme File Editor is accessible.

    Best regards,
    Ismael

    in reply to: Show longer excerpt in blog post element. #1478835

    Hey Tanja,

    Thank you for the inquiry.

    Since the Advanced Layout Builder is being used for the posts, you will need to manually specify the summary or excerpt. Edit one of the posts, then enable the Excerpt field from the Screen Options, or in Preferences > General > Document Settings.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Custom fonts for certain instances of headings #1478834

    Hey Tanja,

    Thank you for the inquiry.

    You can adjust the default fonts for the headings in the Enfold > General Styling > Fonts panel. Look for the “Heading Font” option. This can also be adjusted in the Enfold > Advanced Styling panel.

    We tried logging in, but the username provided above does not exist. Please check and confirm.

    Best regards,
    Ismael

    in reply to: Version 7.0 – Strange search button text display #1478833

    Hi,

    Thank you for the info. Are there any other issues aside from the search icon? You can leave the modification as it is for now.

    Best regards,
    Ismael

    in reply to: Problem with font color in menu on mobiles #1478832

    Hey Katja,

    Thank you for the inquiry.

    Please add this css code to adjust the color of the active mobile menu items and the search icon:

    .html_av-overlay-side #top #wrap_all div .av-burger-overlay-scroll #av-burger-menu-ul a:hover {
        color: #000000;
    }
    
    .header_color .main_menu ul:first-child > #menu-item-search > a svg:first-child {
        stroke: #fff;
        fill: #fff;
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    Hey Tanja,

    Thank you for the inquiry.

    Are you using the default Categories widget? If so, you can add this filter in the functions.php file:

    function avf_widget_categories_args_mod( $cat_args, $instance ) {
        $cat_args['number'] = 10; // Limit to 10 categories.
        return $cat_args;
    }
    add_filter( 'widget_categories_args', 'avf_widget_categories_args_mod', 10, 2 );
    

    Best regards,
    Ismael

    in reply to: reddit social media icon #1478830

    Hi,

    The Reddit social icon has no closing li tag. Please correct the HTML.

    
    <ul class="noLightbox social_bookmarks">
     	<li class="social_bookmarks_reddit av-social-link-reddit social_icon_5">
            <a title="Reddit" href="https://www.reddit.com/r/BlissfullCreations" target="_blank" aria-label="Link to Reddit" aria-hidden="false" data-av_icon="" data-av_iconfont="entypo-fontello">
                <span class="avia_hidden_link_text">Reddit</span>
            </a></li>
     	<li class="social_bookmarks_youtube av-social-link-youtube social_icon_6">
            <a title="YouTube" href="https://www.youtube.com/channel/UCQ-MrMjj0FI4mScprdzFlxg" target="_blank" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello">
                <span class="avia_hidden_link_text">YouTube</span>
            </a></li>
    </ul>
    

    Best regards,
    Ismael

    in reply to: Easy Slider broken #1478829

    Hi,

    I go back and re-enable JS and CSS minfication and disable the delete old?

    The scripts and css are already minified/compressed using the WP-Super-Minify plugin, so it’s not necessary to activate the default compression. If you prefer, you can deactivate the plugin and use the theme’s built-in option instead.

    Best regards,
    Ismael

    in reply to: Logo missing mobile view – header menu #1478828

    Hey lara666,

    Thank you for the inquiry.

    We checked the actual image, but it doesn’t exist — please check the link in the private field. Kindly try uploading the logo image again in both the Enfold > Theme Options > Logo and Enfold > Theme Options > Transparency Options > Transparency Logo settings. Let us know the result.

    Best regards,
    Ismael

    in reply to: Blog page #1478827

    Hi,

    number the article has been seen

    This is not available in the theme by default, but you can try these plugins.

    https://wordpress.org/plugins/post-views-counter/
    https://wordpress.org/plugins/wp-post-views/

    Best regards,
    Ismael

Viewing 30 posts - 2,431 through 2,460 (of 67,463 total)