Forum Replies Created

Viewing 30 posts - 25,141 through 25,170 (of 66,199 total)
  • Author
    Posts
  • in reply to: Avia.js in child theme #1025351

    Hi,

    @Underkult: Do you have a staging site? Please put your modifications in the avia.js file and then we’ll check the site again. What did you add in the includes > helper-main-menu.php file?

    Best regards,
    Ismael

    in reply to: The quality of the gallery pictures in the store #1025345

    Hi,

    The “shop_thumbnail” size is still set to 100x100px when I check the Settings > Media panel. You have to adjust it before the regenerating the images.

    Best regards,
    Ismael

    in reply to: need a different design bbpress #1025343

    Hi,

    Cool! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: LayerSlider Not Showing Up #1025341

    Hi,

    Sorry for the confusion. I was referring to the “Slider markup caching”. Is that enabled?

    // https://cdn.wpml.org/wp-content/uploads/2017/09/Disable-the-use-slider-markup-caching-option.png?x30111

    Best regards,
    Ismael

    Hi,

    I think it’s not working because of the “If Menu – Visibility control for menu items” plugin. Please try to disable it temporarily.

    Best regards,
    Ismael

    in reply to: Animated Countdown not showing at "0" #1024924

    Hey CloudZen,

    Thank you for using Enfold.

    Yes, that is the default behavior of the element. Use this css code to redisplay a finished countdown.

    .av-countdown-timer {
        opacity: 1;
    }
    

    Best regards,
    Ismael

    in reply to: Main menu active/hover state with background image #1024921

    Hey Gitte,

    Thank you for using Enfold.

    Try to append the “current_page_item” or “current_menu_item” class attributes to the id selector. That should work for the active state.

    #menu-item-29.current_menu_item {
       // css here
    }
    

    Best regards,
    Ismael

    in reply to: Section ID not working on Mobile (Safari) #1024917

    Hi,

    I can’t access the hotspots even on desktop view. It just blinks. Did you modify the element? Please upgrade the theme to version 4.5.

    Best regards,
    Ismael

    Hey!

    I see. The last two images are not included. Try to move them inside the same section as the first four.

    Best regards,
    Ismael

    Hi,

    All of the images in the section are included inside the lightbox when I checked — all six of them. Is this fixed?

    Best regards,
    Ismael

    in reply to: Background video in IE11 #1024886

    Hi,

    Do you have a staging site? I don’t think there’s any modification related to the media files in the latest version for it to not work properly. The error thrown by the browser is quite unclear, so I’m not really sure where to check.

    Best regards,
    Ismael

    Hi,


    @gtekit
    : Sad to hear that you’ve switched theme. Good luck. And thank you for the input.


    @EdgeWP
    : Use this script in the functions.php file:

    add_action('wp_footer', 'ava_move_prod_list_title', 9999);
    function ava_move_prod_list_title() {
        ?>
        <script>
            (function() {
                    const p = document.querySelectorAll('.list .product');
                    if(p) {
                        p.forEach( pr => {
                            const t = pr.querySelector('.inner_product_header'); 
                            const d = pr.querySelector('.woocommerce-LoopProduct-link');
                            const f = t.cloneNode(true);
                                
                            t.querySelector('.woocommerce-loop-product__title').remove();
                            d.parentNode.insertBefore(f, d.nextSibling);
    
                            f.querySelector('.price').remove();
                            f.querySelector('.onsale').remove();
    
                        });
                    }
            })();
        </script>
        <?php
    }

    And then add this css code:

    #top div .products.list .woocommerce-loop-product__link + .inner_product_header {
        float: left;
        clear: none;
        height: auto;
        min-height: 0;
    }

    Best regards,
    Ismael

    in reply to: Mega Menu option not showing after save the menus #1024663

    Hi,

    Cool! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I don’t really see any issue with that section aside from the h1 text bleeding outside the container on smaller screens. You can fix that with this css code.

    @media only screen and (max-width: 767px) {
    .avia_textblock h1 {
        font-size: 20px !important;
    }
    }

    You can adjust the font size value as you wish.

    Best regards,
    Ismael

    Hi,

    Thanks for the info.

    Try to wrap the gallery inside a div container. Example.

    
    <div class="ngg-gallery-wrap">
     // gallery here</div>
    

    Use this script in the functions.php file.

    add_action('wp_footer', 'ava_remove_ngg_wrapper', 9999);
    function ava_remove_ngg_wrapper() {
        ?>
        <script>
            (function() {
                const ngw = document.querySelector('.ngg-gallery-wrap');
                const ngg = ngw.childNodes;
                const h = ngg[0].offsetHeight;
                const w = ngg[0].offsetWidth;
    
                ngw.style.width = w + 'px';
                ngw.style.height = h + 'px';
            })();
        </script>
        <?php
    }
    

    And then add this code in the Quick CSS field:

    .ngg-gallery-wrap {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 auto; 
    }

    Don’t forget to remove the browser cache before you check the page.

    Best regards,
    Ismael

    in reply to: Additional posts not sorted as the basic ones #1024658

    Hi,

    It means that the posts’ images should have the same size to be correctly sorted?

    Yes, that’s the case sometimes. The isotope script rearranges the items based on the images, which may not correspond to the actual posts order. One solution is to set a different size settings as you’ve already tried.

    I don’t know where to put the “Portrait” or “Landscape” tags (could you tell me that?).

    Add the “landscape” or “portrait” as post tags in the post editor.

    Best regards,
    Ismael

    in reply to: use-any-font.5.0 #1024656

    Hi,

    Why do you access the font from another site? It’s causing a cross origin issue. (see private field)

    This might help: https://kriesi.at/documentation/enfold/icon/#icons-are-showing-as-rectangular-boxes-

    Or just upload the font to the “sportsbarnorthernquarter” site.

    Best regards,
    Ismael

    in reply to: Title, breadcrumb and layout on BBpress #1024655

    Hi,

    That is the default topic or forum header. Use this css code to hide it.

    #top .bbp-replies .bbp-header {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Nubee to Enfold a few questions #1024654

    Hi,

    Thanks for the update.

    4.) You can use this script to move the post meta info after the title.

    add_action('wp_footer', 'ava_custom_script_move_blog_info');
    function ava_custom_script_move_blog_info(){
    	?>
    	<script type="text/javascript">
            const entry = document.querySelector(".single .entry-content-wrapper");
            const meta = document.querySelector(".single .post-meta-infos");
            const title = document.querySelector(".single .av-heading-wrapper");
           
            title.parentNode.insertBefore(meta, title.nextSibling);
    	</script>
    	<?php
    }

    5-6.) Again, you can edit those elements in the Advanced Styling panel. Let us know if it’s not working.

    Best regards,
    Ismael

    in reply to: Layerslider WP Add CSS Gradient Overlay to Slide #1024651

    Hi,

    Yes, that’s another way to do it. Or you can add adjust the range of the css gradient.

    background: -moz-linear-gradient(top, rgba(0,0,0,0)33%, rgba(0,0,0,0.65) 57%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 33%,rgba(0,0,0,0.35) 57%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 33%,rgba(0,0,0,0.65) 57%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    : progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
    

    You can then apply the post link to the gradient layer in the “Link & Attributes” panel. Let us know if you need anything else. :)

    Best regards,
    Ismael

    in reply to: The Language Switcher is Not Displaying on the Search Page #1024650

    Hi,

    I can’t access the Appearance > Editor panel through your dashboard. Please enable it or post the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Very important. Autosave?? #1024648

    Hi!

    It should be saved in your browser’s local storage as cookies. Did you disable cookies in your browser?

    Regards,
    Ismael

    in reply to: Pinterest Button Addition to Images on Blog Posts #1024643

    Hi,

    Thanks for the update.

    I think you forgot the username. I’ve tried the usernames from your previous threads but they’re not working.
    Have you tried using your own html code as described in the docs?

    <a href="https://www.pinterest.com/pin/create/button/"
       data-pin-do="buttonBookmark"
       data-pin-custom="true">
        --YOUR CUSTOM HTML--
    </a>
    

    I guess the script targets every elements with the “pinterest” string in the href attribute.

    You can use this css code to hide the theme’s pinterest button:

    
    .av-share-link.av-social-link-pinterest {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Header Slider from Replete in Enfold #1024642

    Hi,

    Is the site down? It’s not loading properly on my end. Did you add a theme slider on the page? The onMessageReceived function should not be called when a theme slider (“.avia-slideshow”) is not present in the page.

    Best regards,
    Ismael

    in reply to: Portfolio items show twice when clicked on #1024641

    Hi,

    Thanks for the update. I can’t reproduce the initial issue with the ajax slide. Please open a new thread if you can still see the issue.

    Best regards,
    Ismael

    in reply to: The quality of the gallery pictures in the store #1024640

    Hi,

    Thanks for the update. Install the “Simple Image Sizes” plugin instead then go to the Settings > Media panel. Adjust the size of the “shop_thumbnail”, update, save and then regenerate the images.

    // https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

    Hi,

    I see. You should be able to remove the “sidebar_right” class attribute with this script.

    add_action('wp_footer', 'ava_remove_footer_class', 9999);
    function ava_remove_footer_class() {
        ?>
        <script>
            const footer = document.getElementById('footer-page');
            footer.classList.remove('sidebar_right'); 
        </script>
        <?php
    }

    Best regards,
    Ismael

    in reply to: Change full page slider button size #1024638

    Hi,

    Thanks for the update. I’ve added the following css code on the Quick CSS field instead.

    #top #wrap_all .avia-slideshow-button {
        font-size: 15px;
        line-height: 1.9em;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 300;
    }

    Please remove the browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: Shopping widget fine art america "embed code" #1024637

    Hi,

    Thanks for the update. It doesn’t matter if it’s the shop page or not. That css code should override the default style of the “shop section”. Did you enable the Performance > File Compression settings? Please disable it temporarily and then add the css code again.

    Best regards,
    Ismael

    in reply to: need a different design bbpress #1024636

    Hi,

    You have to add that code along with the previous one.

    add_action( 'bbp_enqueue_scripts', 'wp_change_bbcss', 9999 );
    function wp_change_bbcss() {
       wp_dequeue_style( 'avia-bbpress' );
       wp_deregister_style( 'avia-bbpress' );
    }
    
    add_action('after_setup_theme', 'avf_register_default_bbpress_style', 1000 );
    function avf_register_default_bbpress_style() {
        remove_filter('bbp_default_styles', 'avia_bbpress_deregister_default_assets', 10, 1);
    }

    Best regards,
    Ismael

Viewing 30 posts - 25,141 through 25,170 (of 66,199 total)