Forum Replies Created
-
AuthorPosts
-
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,
IsmaelMay 5, 2021 at 6:38 am in reply to: Which element gives me an image carousel with for columns and autorotate? #1298433Hey 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,
IsmaelHi,
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,
IsmaelMay 5, 2021 at 6:06 am in reply to: How can I upload https://fonts.googleapis.com/css locally? #1298426Hi,
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,
IsmaelHey 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,
IsmaelMay 5, 2021 at 5:21 am in reply to: Insert "Tab Element" or "Text Block" with extra code in the content area #1298412Hi,
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,
IsmaelMay 5, 2021 at 5:10 am in reply to: Enfold forms styling overriding Elementor's form styling and options #1298410Hi,
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,
IsmaelHi,
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,
IsmaelHi,
UPDATE: We edited the code in the functions.php file a bit and created a test page. (see private field)
Best regards,
IsmaelHi,
UPDATE: We edited the code in the functions.php file a bit and created a test page. (see private field)
Best regards,
IsmaelHi,
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,
IsmaelMay 5, 2021 at 4:08 am in reply to: Button clicks tracking for Google Ads and Analytics can't be set up with Enfold #1298396Hi,
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,
IsmaelMay 5, 2021 at 3:58 am in reply to: Come posso tradurre frasi nella pagina del checkout di woocommerce ? #1298394Hi,
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,
IsmaelMay 5, 2021 at 3:54 am in reply to: Widget Enfold child facebook Likebox inserito nella sidebar blog non funziona #1298393Hi,
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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelHi,
@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,
IsmaelHey 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,
IsmaelMay 4, 2021 at 9:02 am in reply to: woocommerce category description displayed in title header #1298218Hi,
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-877483This 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,
IsmaelMay 4, 2021 at 8:45 am in reply to: Sidebar Logo and Main Menu Sticky option not working anymore #1298215Hey 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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelMay 4, 2021 at 8:18 am in reply to: How to Display First Word as Post Title only on Homepage in Enfold #1298201Hi,
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,
IsmaelMay 4, 2021 at 8:04 am in reply to: How can I upload https://fonts.googleapis.com/css locally? #1298199Hi,
@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,
IsmaelMay 4, 2021 at 7:57 am in reply to: REVISITED Link to next page when using Portfolio Grid in Enfold one-page website #1298193Hey 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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelMay 4, 2021 at 7:29 am in reply to: Language flags back in the menu after upgrading to 4.8.2 #1298173Hi,
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 -
AuthorPosts