Forum Replies Created
-
AuthorPosts
-
May 4, 2021 at 9:02 am in reply to: woocommerce category description displayed in title header #1298218
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-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,
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,
Ismael -
AuthorPosts