Forum Replies Created
-
AuthorPosts
-
May 4, 2021 at 8:04 am in reply to: How can I upload https://fonts.googleapis.com/css locally? #1298199
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,
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,
IsmaelHi,
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,
IsmaelHi,
As suggested above, you have to select the language in which you would like the widget to display. Please check the screenshot below.
You have to add different widgets for each language. For more info, please check the documentation.
Best regards,
IsmaelMay 4, 2021 at 7:15 am in reply to: Functions.php file in Enfold Child not updating changes #1298166Hi,
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,
IsmaelMay 4, 2021 at 7:10 am in reply to: Several Masonry galleries on single page not loading properly #1298165Hi,
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,
IsmaelHi,
Alright. Thank you for the info again. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelHey 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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelHey 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-1233524Best regards,
IsmaelHi,
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,
IsmaelMay 3, 2021 at 6:44 am in reply to: Shopping cart icon states "no products" and has display issues? #1297890Hi,
@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,
IsmaelHi,
No problem. We will keep the thread open for further updates.
Thank you for your patience.
Best regards,
IsmaelMay 3, 2021 at 6:33 am in reply to: Google Analytics Cookies are set before accepting the cookie consent #1297884Hi,
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,
IsmaelHi,
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,
IsmaelMay 3, 2021 at 6:31 am in reply to: Come posso tradurre frasi nella pagina del checkout di woocommerce ? #1297881Hi,
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,
IsmaelMay 3, 2021 at 6:17 am in reply to: woocommerce category description displayed in title header #1297874Hi,
– To remove the “Category:” prefix, use this in the functions.php file.
add_filter("get_the_archive_title_prefix", "__return_empty_string");
– If you want to move the description back to its original place, remove this line from the avia_woocommerce_parallax_banner function.
if($description) $output .= "".$description." ";
Add this code in the functions.php file.
add_action("after_setup_theme", function() { add_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 ); add_action( 'woocommerce_product_archive_description', 'woocommerce_product_archive_description', 10 ); }, 20);
After that, use this css code to remove the default page thumbnail.
.tax-product_cat .page-thumb { display: none !important; }
– You cannot override a config file in the child theme directory.
Best regards,
IsmaelHi,
Thank you for the info.
Did you adjust the Styling > Size Settings of the masonry element in the hu and en languages? We tried to check it but the login account above is no longer valid. Please provide another account or restore the previous account above.
Best regards,
IsmaelMay 3, 2021 at 6:03 am in reply to: Language flags back in the menu after upgrading to 4.8.2 #1297865Hi,
Did you actually use the whole snippet above?
//-------------------------------------------------------------- // Remove Enfold Language Switcher //-------------------------------------------------------------- function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', array( 'avia_WPML', 'handler_append_lang_flags' ), 9998, 2 ); remove_filter( 'avf_fallback_menu_items', array( 'avia_WPML', 'handler_append_lang_flags' ), 9998, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10 ); remove_action( 'ava_main_header_sidebar', 'avia_wpml_language_switch', 10 ); } add_action('after_setup_theme','avia_remove_main_menu_flags');
Best regards,
IsmaelHi,
Thank you for the update.
A critical error occurred when we tried to deactivate all plugins in the site. Please enable the debug mode and post the FTP details in the private field so that we can check the actual cause of the error, or restore the site from a backup. Sorry for the inconvenience.
// https://wordpress.org/support/article/debugging-in-wordpress/#wp_debug_display
The error might be due to the template files in the child theme directory.
Best regards,
IsmaelMay 3, 2021 at 5:39 am in reply to: Need help adding a full-screen static hero with a button #1297852 -
AuthorPosts