Forum Replies Created

Viewing 30 posts - 26,491 through 26,520 (of 67,534 total)
  • Author
    Posts
  • 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

    in reply to: Parallax not working for stretch to fit #1024634

    Hi,

    Alright. Let us know if you need anything else. Thank you for using Enfold. :)

    Best regards,
    Ismael

    in reply to: LayerSlider Not Showing Up #1024633

    Hi,

    Sorry for the late response. This thread might help.

    // https://kriesi.at/support/topic/layer-slider-and-wpml/#post-989889

    Best regards,
    Ismael

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

    Hi,

    Where did you add the css code? The headings are still using the theme font, currently set to “Lato”.

    h1, h2, h3, h4, h5, h6, #top .title_container .main-title, tr.pricing-row td, #top .portfolio-title, .callout .content-area, .avia-big-box .avia-innerbox, .av-special-font, .av-current-sort-title, .html_elegant-blog #top .minor-meta, #av-burger-menu-ul li {
        font-family: 'Lato', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }
    

    Best regards,
    Ismael

    in reply to: Enfold Woocommerce Cart-Position #1024037

    Hey!

    Cool. You’re welcome. Please feel free to open a new thread if you need anything else.

    Best regards,
    Ismael

    in reply to: Ajax portfolio layout change #1024033

    Hey manchust,

    Thank you for using Enfold.

    Use this css code to adjust the preview image column.

    .portfolio-preview-image {
        width: 50%;
    }

    Best regards,
    Ismael

    in reply to: comments and discussion order change. #1024020

    Hi,

    I can see the issue but I’m not sure why the comments are sorted that way. Did you add any modifications in the functions.php file?

    Best regards,
    Ismael

    in reply to: Avia.js in child theme #1024019

    Hi!

    What did you add in the avia.js file? Please walk us through your modifications including the PHP files.

    Regards,
    Ismael

    in reply to: comments and discussion order change. #1024016

    Hi,

    I can see the issue but I’m not sure why the comments are sorted that way. Did you add any modifications in the functions.php file?

    Best regards,
    Ismael

    in reply to: Product Category Image #1023998

    Hi,

    That is how the banner is supposed to resize because it is a parallax background. You can use this css code to disable the effect and resize the background image. However, this modification may distort the image on certain screen sizes.

    #av_product_description {
        min-height: 240px;
    }
    
    #av_product_description .av-parallax {
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
    }
    
    #av_product_description .av-parallax-inner.av-parallax-woo {
        background-size: 100% 100%;
    }

    Best regards,
    Ismael

    in reply to: Portfolio behaviour #1023991

    Hey BSHosts,

    Thank you for using Enfold.

    That option is not available by default but the portfolio grid element has an option that is a bit similar known as AJAX portfolio.

    // https://kriesi.at/themes/enfold/portfolio/portfolio-ajax/

    Best regards,
    Ismael

    in reply to: URGENT: Maintenance Mode Not Redirecting Traffic #1023987

    Hey educatedathlete,

    Thank you for using Enfold.

    The site requires authentication. Please post it in the private field. How did you set the maintenance mode?

    Best regards,
    Ismael

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

    Hey marcoabis81,

    Thank you for using Enfold.

    I’m not really sure why that happened but if I were to guess, the user session probably expired before the editor get the chance to autosave the post. Unfortunately, you can’t retrieve an unsaved post or contents that are not available in the revision. Please save your work regularly. You can also adjust the auto save interval value in the wp-config.php file.

    define('AUTOSAVE_INTERVAL', 300 ); // seconds
    

    Best regards,
    Ismael

    in reply to: Enfold Woocommerce Cart-Position #1023869

    Hi,

    I see. Thanks for the info. Please edit the config-woocommerce > woocommerce-mod.js file. Remove and replace everything with this code.

    // https://pastebin.com/AaWnWc6D

    Best regards,
    Ismael

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

    Hi,

    Add a unique id or class attribute to the image or link and then use that selector to create a pseudo element.

    // https://developer.mozilla.org/en-US/docs/Web/CSS/::before

    Apply the gradient or overlay to that element.

    Best regards,
    Ismael

    in reply to: Search Result with thumbnail #1023851

    Hi,

    Do you want to place the image above the post title instead of inside the search counter? Try this one:

    // https://kriesi.at/support/topic/show-featured-images-in-search-results-page/#post-805258

    It’s going to be much bigger.

    Best regards,
    Ismael

Viewing 30 posts - 26,491 through 26,520 (of 67,534 total)