Forum Replies Created

Viewing 30 posts - 13,981 through 14,010 (of 66,459 total)
  • Author
    Posts
  • Hi,

    It is possible to override the avia_woocommerce_shop_banner and avia_woocommerce_big_cat_banner functions by copying them in your child theme’s functions.php file before doing your modifications such as removing the description and adding the title as we described above. You should also rename the functions to something else, you can add a suffix or prefix to the current function name so that it does not conflict with the original functions.

    And make sure to remove the action hook where the functions are currently attached to.

    Example:

    remove_action( 'ava_after_main_container', 'avia_<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>_big_cat_banner', 11 );
    remove_action( 'ava_after_main_container', 'avia_<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>_shop_banner', 11 );
    

    Full example can found in these threads.

    // https://kriesi.at/support/topic/product-category-pages-full-width-page-banner-and-description/#post-560335
    // https://kriesi.at/support/topic/product-category-pages-full-width-page-banner-and-description-updated/#post-877483

    This creates a full width element pushing down both the template-shop

    You should be able to adjust it with css. Or try to replace the woocommerce_archive_description and woocommerce_product_archive_description hook with woocommerce_before_shop_loop.

    Best regards,
    Ismael

    Hey manurimini,

    Thank you for the inquiry.

    Where can we see the issue? Please note that sticky sidebar option will only work if the sidebar is not taller than the content, otherwise the sidebar will just scroll with the page.

    Best regards,
    Ismael

    in reply to: Perfect Automatic Masonry – Image sections #1298208

    Hi,

    Would you mind providing a screenshot of the “section”? Please use imgur or dropbox for the screenshot.

    You cannot move the lightbox image but you can enlarge it to make sure that the size is the same as the actual size uploaded. To do that, go to the Settings > Media panel and adjust the dimension of the Large thumbnail. And again, you have to regenerate the thumbnail as suggested above.

    Best regards,
    Ismael

    in reply to: Error with PayPal Express Checkout #1298206

    Hey a-l-p,

    Thank you for the inquiry.

    We are getting an error whenever we try to click the paypal button. Please check the screenshot below.

    Screenshot: https://imgur.com/8MRjJK0

    Please try to deactivate the Autoptimize plugin temporarily and the Performance > File Compression settings, then check the page again. Do not forget to purge the cache after deactivating the plugins.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The filter accepts a second parameter, which is the $id of the post. You can use that to check if the current post is not a menu item or if it an actual post using the get_post_type function.

    add_filter( 'the_title', 'wpse_75691_trim_words' );
    
    function wpse_75691_trim_words( $title, $id )
    {
        // Limit the title to exactly one word only on the frontpage.
        if (is_front_page() && get_post_type( $id ) == "post" ) {
            return wp_trim_words( $title, 1, '' );
        }
        // Otherwise return the full title.
        return $title; 
    }

    Best regards,
    Ismael

    Hi,


    @subnoodle
    : Did you select the custom font after uploading it? Sorry for asking. You can check it in the Enfold > General Styling > Fonts panel.

    It is also possible that the Google fonts are coming from a third party plugin. Or if you have a map, it will load the Open Sans font by default.

    Best regards,
    Ismael

    Hey IROIROsupport,

    Thank you for the inquiry.

    Try to call the b function for each section. Example:

    $(document).ready( function() {
        b('#section-1');
        b('#section-2');
        b('#section-3'); 
    }
    

    If this doesn’t work, we might have to find the parent of the pagination links and make sure that it points to the current section.

    Best regards,
    Ismael

    in reply to: scroll margin top for accordion or tabs links #1298190

    Hey Saskbison,

    Thank you for the inquiry.

    The site is on maintenance mode and the login info above seems to be invalid, so we cannot see or access the site. Please check the info carefully or provide another login account.

    To prevent the document from scrolling after the tab opens, you might have to edit the enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.js file and remove this code around line 131.

    if(win.scrollTop() > el_offset)
    					{
    						$('html:not(:animated),body:not(:animated)').scrollTop(scoll_target);
    					}
    

    Best regards,
    Ismael

    in reply to: gallery thumbnail bug #1298179

    Hi,

    Thank you for restoring the site.

    It works fine when we select older images or images that have been uploaded earlier. In the above page, we duplicated the gallery, remove the current images and selected older images. The duplicated gallery displays the selected thumbnail size. (see private field)

    It is possible that the new images have been affected by a media or an image optimization plugin, but we cannot be sure. Please try to remove the new images and upload them again while the plugins are deactivated.

    Best regards,
    Ismael

    in reply to: Add language switch under the burger icon #1298176

    Hi,

    Glad to know that it is working. To fix the overlap issue, try to set the z-index property of the language switcher.

    #av-custom-lang-switcher {
        position: absolute;
        right: 25px;
        bottom: 10px;
        z-index: 9999;
    }

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Odd. This same snippet works properly on our end. @Bernd Please post the FTP and WP details in the private field so that we could check it further.

    Best regards,
    Ismael

    in reply to: Site loader is not showing as expected #1298170

    Hi,

    No problem. Please feel free to open another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Footer translation #1298169

    Hi,

    As suggested above, you have to select the language in which you would like the widget to display. Please check the screenshot below.

    // https://imgur.com/6oQRFua

    You have to add different widgets for each language. For more info, please check the documentation.

    // https://wpml.org/documentation/getting-started-guide/translating-widgets/displaying-different-widgets-for-different-languages/#:~:text=To%20use%20this%20feature%2C%20simply,are%20displayed%20on%20all%20languages.

    Best regards,
    Ismael

    Hi,

    It is due to the default padding of the li elements in the burger menu. To fix it, use this css code.

    #top #wrap_all #av-burger-menu-ul li.av-active-burger-items.burger-social a {
        padding: 0;
    }
    
    #top #wrap_all #header #av-burger-menu-ul > li.av-active-burger-items.social_icon_1 {
        margin-left: 50px;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The script is not working because this line is no longer valid.

    $(window).load(function() {
    

    The .load function is now deprecated, so you have to replace it with.

    $(window).on("load", function() {
      // do things here
    });
    

    — or —

    $(document).ready(function() {
      // do things here
    });
    

    Best regards,
    Ismael

    in reply to: 4.8.2 bug with beta #1297934

    Hi,

    Alright. Thank you for the info again. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Date appearance in text box #1297931

    Hey Telmore,

    Thank you for the inquiry.

    There is no option for that by default and what you did with the popups are actually custom modifications that is not available out of the box. So to show a date right below the text box, you have to add them manually.

    Best regards,
    Ismael

    in reply to: Password protected post – show image in masonry #1297930

    Hey Micha66,

    Thank you for the inquiry.

    The solution that we provided in the following thread should help.

    // https://kriesi.at/support/topic/how-to-show-password-protected-posts-in-masonry/#post-1292960

    Best regards,
    Ismael

    in reply to: display content in lightbox popup #1297929

    Hi,

    Thank you for the inquiry.

    We may need to actually inspect the page in order to check if there is any causing the lightbox to not fire correctly. Please post the URL in the private field.

    Have you tried adding a priority number to the wp_footer hook?

    add_action("wp_footer", "inline_popup_enabler", 9999);
    

    Best regards,
    Ismael

    in reply to: Lazy-Load Not Working on Galleries #1297928

    Hey bucksharp,

    Thank you for the inquiry.

    Images in the masonry element are actually applied as background, not an actual image element, so lazy loading will not work for those images. This is true when the Styling > Size Settings of the masonry element is set to Perfect Automatic Masonry or Perfect Grid.

    Best regards,
    Ismael

    in reply to: Site loader is not showing as expected #1297927

    Hey WissioLimited,

    Thank you for the inquiry.

    The add to cart button and the loader are working properly in the demo. Where can we see the issue? Please post the site or page URL in the private field. We would like to check it.

    Best regards,
    Ismael

    Hey jifei,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the background size issue? We checked one of the sections with the parallax background and we found no issue with it, as shown in the screenshot below.

    Screenshot: https://imgur.com/Vyg3ZUr

    As you can see in the screenshot, the background image covers the whole color section. The space above and below the section with the parallax background image are actually two separate sections that were automatically created by the theme because there are separator/whitespace element above and below section.

    Best regards,
    Ismael

    in reply to: Perfect Automatic Masonry – Image sections #1297913

    Hey petschka,

    Thank you for the inquiry.

    What do you mean by “section” exactly? Are you referring to the lightbox option? Please provide a screenshot (using imgur or dropbox) and a link to the page containing the masonry element. We would like to check it.

    If it is about the lightbox images, try to adjust the Large thumbnail size in the Settings > Media panel, then regenerate the images or upload them again.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: How to customize blog category page layout #1297910

    Hey profumopuntoit,

    Thank you for the inquiry.

    In the future, please try to open a single ticket for each inquiry and avoid stacking multiple questions in one go. This will allow the forum moderators to focus on a single issue and in return, you will receive a more immediate response.

    Now to answer your inquiries..

    1.) This is not possible by default without major modification in the archive template.

    2.) You can configure the page layout of the single post and archive pages in the Enfold > Sidebar Options panel.

    3.) Add this filter in the functions.php file to remove the prefix from the category title.

    add_filter('avf_which_archive_output','avia_new_archive_output');
    function avia_new_archive_output(){
    	if (is_archive())
    	{
    		$output = __('','avia_framework')." ".single_tag_title('',false);
    	}
    return $output;
    }

    4.) This plugin should help you control the excerpt.

    // https://wordpress.org/plugins/advanced-excerpt/

    Or try to use one of the snippets that we provided in the following thread to limit the characters in the excerpt.

    // https://kriesi.at/support/topic/excerpt-length-for-post-slider-blog-posts-and-magazine/#post-1290417
    // https://kriesi.at/support/topic/shorten-blog-post-excerpts-2/#post-1233524

    Best regards,
    Ismael

    in reply to: Masonry Blog not as expected #1297901

    Hi,

    In the demo, did you notice that the summary are short and concise, not more than two lines per item? That many characters in the excerpt should work fine, but the content container will still cover part of the image, almost 30% of the image in the demo’s case. In your site, you are trying to add longer excerpt, so the content container covers most of the image.

    In the demo, the excerpt is also hidden on smaller screens using css.

    @media only screen and (max-width: 989px) {
        .responsive .av-masonry-entry .av-masonry-entry-title+.av-masonry-entry-content {
           display: none;
        }
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Hi,


    @hacart
    : The cart counter is actually there but for some reason the text color is set to be the same as background color, they are both white, so it is not visible. To adjust it, please use this css code.

    #top .av-cart-counter {
        background-color: blue;
        color: green;
        border: 1px solid red;
    }
    

    Best regards,
    Ismael

    in reply to: Plugin conflict removes kitchen sink from wysiwyg #1297886

    Hi,

    No problem. We will keep the thread open for further updates.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    No problem. We will keep this thread open for further updates, but please feel free to open another if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Logo SrcSet? #1297882

    Hi,

    Thank you for the confirmation.

    We will include the changes in the next version of the theme. Would you like to get access to the beta version containing the fix?

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Did you set that text in the Woocommerce > Settings > Accounts & Privacy > Privacy policy > Checkout Privacy Policy field? The text or value in that field belongs to the woocommerce text domain. So if you are using the Loco Translate plugin, try to go to the Loco Translate > Plugins panel, select Woocommerce and search for the string in that domain.

    Screenshot: https://imgur.com/zBJtLgy

    Best regards,
    Ismael

Viewing 30 posts - 13,981 through 14,010 (of 66,459 total)