Forum Replies Created

Viewing 30 posts - 13,531 through 13,560 (of 66,027 total)
  • Author
    Posts
  • in reply to: scroll margin top for accordion or tabs links #1298507

    Hi,

    Looks like you are also using toggles, not just tabs. For the toggles, you have to modify the enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js file and remove the following block of code around line 54..

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

    .. and line 171.

    window.scrollTo(0, container.offset().top - 70);
    

    After editing the files, do not forget to purge the cache and temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    Hey Montviso,

    Thank you for the inquiry.

    Have you tried using the Content Slider element? The should allow you to display different content, even images from external domains.

    Best regards,
    Ismael

    in reply to: Error with PayPal Express Checkout #1298431

    Hi,

    Thank you for the update.

    We still see the same errors (create_order_error, click_initiate_payment_reject) in the console. How did you add the paypal button?

    Please post the login details in the private field so that we can check if further.

    Best regards,
    Ismael

    Hi,

    I just wanted to state that it is not obvious where ENFOLD uses which fonts by default.

    Fonts are separated into two categories, font for headings and font for the body content. Body content includes paragraphs, links, menu items, blockquote, strong tags, etc. The other font category is for headings and titles such as the widget title, post title and any text wrapped around the heading tags. And if you look closely in the Enfold > General Styling, there is actually a style preview.

    Screenshot: https://imgur.com/hi3AX3s

    If you use the Custom Font Manager and selected a custom font for both heading and body content, the theme will not have to load anything from Google and will instead use use the local font in your server.

    Best regards,
    Ismael

    in reply to: Importing blogs using WP looses double spaces #1298419

    Hey Jason,

    Thank you for the inquiry.

    Looks like some of the paragraphs have been combined into a single paragraph. Is the theme already active when you imported the posts?

    Best regards,
    Ismael

    Hi,

    No problem. We were not able to reproduce the issue on our end either.

    Screenshot: https://imgur.com/WkhCGYd

    We will close this thread for now. Please feel free to open another if the issue persists.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can deregister or dequeue the css > base.css file, which contains the base styling for the input fields, and register it back making sure that it loads before elementors’ dynamic styling for the widgets. Unfortunately, we are not that familiar with the plugin’s structure, so you will have to ask the plugin authors about it.

    Best regards,
    Ismael

    in reply to: Google Mobility Issues – some fixes failed #1298408

    Hi,

    Thank you for the update.

    clickable elements too close

    It might be referring to the links below the contact form. Try to add this css code to create more space between the contact form button and the links below.

    #top .avia_ajax_form .av-google-badge-message {
        padding: 30px 0 0 0;
        line-height: 1.8em;
    }

    We also increased the line height to separate the links even more.

    Best regards,
    Ismael

    in reply to: display content in lightbox popup #1298402

    Hi,

    UPDATE: We edited the code in the functions.php file a bit and created a test page. (see private field)

    Best regards,
    Ismael

    in reply to: display content in lightbox popup #1298401

    Hi,

    UPDATE: We edited the code in the functions.php file a bit and created a test page. (see private field)

    Best regards,
    Ismael

    in reply to: display content in lightbox popup #1298399

    Hi,

    Thanks for the update.

    We cannot find the inline popup in the home page. Where did you add it? Please provide a direct link to the page.

    the 9999 becomes dashes

    That is new. Would you mind providing a screenshot? Please use imgur or dropbox.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    In the trigger conditions, add a Click Element variable and set the condition to matches CSS selector and specify the selector. You can now target the button inside the form. Make sure that the selector is very specific.

    Best regards,
    Ismael

    Hi,

    Great! Glad that you have found the source of the text. We will close the thread now. Please feel free to open another if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Looks like you have managed to properly configure the FB widget. It is now displaying properly on our end. Please check the screenshot below.

    Screenshot: https://imgur.com/DuGcyEI

    Best regards,
    Ismael

    in reply to: Font weight issues #1298391

    Hey wordninj,

    Thank you for the inquiry.

    The font weight 300 is actually missing or available for the default Roboto font, only the 100, 400 and 700 variants are available. To include the other font weights, try to add this filter in the functions.php file.

    
    function avia_add_content_font($fonts)
    {
        $fonts['Roboto'] = 'Roboto:100,300,400,500,700';
        return $fonts;
    }
    add_filter( 'avf_google_heading_font',  'avia_add_content_font');
    add_filter( 'avf_available_google_fonts',  'avia_add_content_font');
    

    Select the font again from the fonts panel, then toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    in reply to: Enfold theme & Memberpress #1298390

    Hey Nat,

    Thank you for the inquiry.

    Are you using the Advance Layout Builder (ALB)? Please note that the more tag will only work in the default or classic editor, and if you are using the Block Editor, you can use the More block instead.

    The documentation might help.

    // https://wordpress.com/support/wordpress-editor/blocks/more-block/

    Best regards,
    Ismael

    in reply to: Different header color for different categories #1298268

    Hi,

    @4m: Did you toggle the Performance > File Compression settings after adding the css code? Please provide links to the category pages so that we can check them properly.

    Best regards,
    Ismael

    in reply to: Masonry gallery images blurry #1298221

    Hey enzowillemstad,

    Thank you for the inquiry.
    The masonry images look perfectly sharp on our end. Please check the screenshot below.

    Screenshot: https://imgur.com/NONO6sw

    To remove the hover effect, use this css code.

    .avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    

    Or disable the Image effect in the element’s Advanced > Animation panel.

    Best regards,
    Ismael

    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

Viewing 30 posts - 13,531 through 13,560 (of 66,027 total)