Forum Replies Created
-
AuthorPosts
-
Hey creatorke,
Thank you for the inquiry.
That is the default position of the widgets in the single product page, but we could adjust it using hooks or doing a bit of template modification.
Please add this code in the functions.php file.
add_action('init','ava_product_sidebar_init_mod', 50); function ava_product_sidebar_init_mod() { remove_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20); add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div_mod', 20); add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar_mod', 19); } function avia_close_image_div_mod() { echo "</div>"; } function avia_add_sidebar_mod() { global $product, $avia_config; if( is_product() ) { $avia_config['currently_viewing'] = "shop_single"; get_sidebar(); } }
And insert this css code in the Quick CSS field to move the sidebar to the left.
.single-product-main-image { width: 25%; } .single-product-summary { overflow: hidden; width: 45%; float: right; margin-right: 5%; } .single-product .sidebar { width: 25%; }
Best regards,
IsmaelHey Tobias,
Thank you for the inquiry.
Delete the current favicon in the Theme Options, then upload it back. Or edit the image URL in the field, and replace http with https. That should fix the issue.
Best regards,
IsmaelApril 20, 2021 at 6:21 am in reply to: Blog Page 2 – back link to page 1 references gain Page 2 #1295423Hey aboderc,
Thank you for the inquiry.
The issue with the pagination has been fixed in the latest version of the theme, v4.8.1. Please upgrade the theme to the latest version and purge the cache afterwards.
Best regards,
IsmaelHi,
Thank you for the inquiry.
You have to use an additional script in order to make it scroll or jump to the actual section, after clicking the menu item with the anchor. Please check the script that we provided in the following thread.
// https://kriesi.at/support/topic/anchor-links-scrolling-to-tab-section-not-working/#post-1289536
You may need to adjust the selector on the following line, depending on the actual element or link that contains the anchor.
scrollToTab( '.menu-item a', 'click' );
Best regards,
IsmaelHey nanwar,
Thank you for the inquiry.
The plugin worked fine with the gallery when we tested it on our installation. Please check the screenshot of the media library and the actual gallery below.
// https://imgur.com/Jdw1aXA
// https://imgur.com/MabWeu7Please try to deactivate the other plugins in your installation, then test the gallery again.
Best regards,
IsmaelApril 20, 2021 at 5:38 am in reply to: Theme updated: Warning: Cannot modify header information #1295415Hi,
Thank you for the inquiry.
It looks like an issue with a plugin using the add_submenu_page function, which is using an invalid type in the 7th parameter. To check the issue properly and to trace the error, we have to enable the debug mode in your installation. Please check the following documentation for more info about debugging.
// https://wordpress.org/support/article/debugging-in-wordpress/#wp_debug_display
Best regards,
IsmaelHi,
Looks like this is working properly now. The posts limit in the archive pages (see private field) can be adjusted in the Settings > Reading panel. Look for the Blog pages show at most field or option.
And if you want to disable or toggle the pagination, use this filter in the functions.php file.
add_filter("avf_post_slider_args", function($atts) { $atts["paginate"] = "no"; return $atts; }, 10, 1);
Set paginate again to “yes” if you want to enable it back.
Best regards,
IsmaelApril 19, 2021 at 12:20 pm in reply to: Underline top menu item when either that item or a submenu item is selected #1295250Hi,
Thank you for the update.
Try to use this css code instead to enable the indicator for the grand parent menu item.
#top #avia-menu .current-page-ancestor .avia-menu-fx { position: absolute; bottom: 0; opacity: 1; visibility: visible; background-color: #03093b !important; }
Best regards,
IsmaelHi,
@adanari: Where did you add that section or slider? We cannot find it in the home page. Please open a new thread and provide a direct link to the page containing the layer slider in the private field. We will close this one for now.Best regards,
IsmaelHey mrgoe,
Thank you for the inquiry.
Have you tried any of the plugins listed below?
// https://wordpress.org/plugins/sticky-menu-or-anything-on-scroll/
// https://wordpress.org/plugins/toast-stick-anything/They should allow you to make any element stick by providing the elements’ class name or ID.
Best regards,
IsmaelHey holbizmetrics,
Thank you for the inquiry.
When using a different translation plugin, this is done automatically or you have the option to change the settings for different language, but with Polylang, you have to create a custom shortcode that checks for the current language and display the appropriate content, as shown in the following thread.
// https://kriesi.at/support/topic/gdpr-feature-polylang/#post-1074324
// https://kriesi.at/support/topic/cookie-consent-message-erscheint-immer-wieder/#post-992984Another solution can be found in the following thread.
// https://kriesi.at/support/topic/how-to-translate-cookie-consent-message/#post-945946
Best regards,
IsmaelHey Brian,
Thank you for the inquiry.
Did you mute the videos in the slider? The videos are automatically playing on our end — checked on Chrome.
Best regards,
IsmaelApril 19, 2021 at 11:14 am in reply to: How can I set the name for a FAQPage (accordion element) in rich snippets? #1295217Hey AlexR,
Thank you for the inquiry.
We can use the following filter in the functions.php file to add the name attribute to the faq schema markup, but it seems not necessary because the tool is not returning any errors.
add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2); function avf_markup_helper_attributes_modified($attributes, $args) { if( $args['context'] == 'faq_section' ) { $attributes['name'] = 'FAQ'; } return $attributes; }
Best regards,
IsmaelApril 19, 2021 at 7:00 am in reply to: Language flag icons in menu are not aligned with text #1295124Hey NoraGTS,
Thank you for the inquiry.
1.) Did you add the css code in the child theme’s style.css file? You may need to check if the ID of the menu item in the DE version is different, or if the css selector is correct.
2.) You have to set the DE as the main language in Polylang and in the Settings > General panel.
// https://polylang.pro/doc/configure-the-languages/
Best regards,
IsmaelHey Severin,
Thank you for the inquiry.
That is the default behavior of the navigations or of the content slider. If you want to enable both, you will have to modify the enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.php file and adjust this block of code around line 769 so that both navigation display regardless of the set option in the element.
if( $navigation == 'dots' ) { $output .= $this->slide_navigation_dots(); } if( $navigation == 'arrows' ) { $output .= $this->slide_navigation_arrows(); }
If you do not want the actual arrow to display, use this css to hide it.
.avia-slideshow-arrows.avia-slideshow-controls { display: none !important; }
Best regards,
IsmaelHi,
Thank you for following up.
You can use the .av-tabsection-nav-prev and .av-tabsection-nav-next selectors to style the navigation. Example:
.av-tabsection-nav-prev, .av-tabsection-nav-net { position: absolute; color: red; top: 100px; } .av-tabsection-nav-prev { left: 20px; } .av-tabsection-nav-next { right: 20px; }
@Guennie007: We could check for the parent container and find the active tab from there instead of directly using the .av-active-tab-title selector.
Best regards,
IsmaelApril 19, 2021 at 6:24 am in reply to: Woocommerce – move review/rating stars BETWEEN Product Title and Price on Shop #1295113Hi,
The rating is still beside the product title when we checked the site. Did you put it back?
To create more space between the product title and the price, try use this css code.
a.woocommerce-LoopProduct-link.woocommerce-loop-product__link div.inner_product_header div.inner_product_header_table div.inner_product_header_cell h2.woocommerce-loop-product__title { padding-bottom: 50px; }
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the changes.
Thank you for your patience.
Best regards,
IsmaelApril 19, 2021 at 6:10 am in reply to: Slider Probleme nach 5.6 und jetzt unter 5.7 – layout kaputt #1295106Hi,
Glad to know that it is now working correctly. Please feel to open a new thread if you need anything else. A termite extinguisher for the previous server might help. :D
Have a nice day.
Best regards,
IsmaelApril 19, 2021 at 6:05 am in reply to: Typewriter Animation Not Working in My Color Section #1295099Hi,
Sorry about that. I got a bit confused. :)
Sorry for the confusion, but I mentioned in ONLY worked outside the color selection element.
But the rotator in the above page is inside a color sectio, and it is working correctly. Please check the screenshot below.
Best regards,
IsmaelHi,
Did you purge the cache and toggle the Performance > File Compression settings after adding the css code?
Does it work correctly when you temporarily remove the layer slider? Please post the login details in the private field so that we could properly check the issue.
Best regards,
IsmaelHi,
No worries. Please do not hesitate to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHey!
That is good to know. Please feel free to open another thread if you need additional assistance. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for following up.
Is the Performance > File Compression settings enabled when you added the css? You may need to disable that settings temporarily, or toggle it after adding the changes.
Best regards,
IsmaelApril 19, 2021 at 5:54 am in reply to: Masonry gallery | Elementbeschriftung hat keinen Einfluss auf die Anzeige #1295091Hi,
We have checked the Quick CSS field and looked for any invalid css code, but we did not find any. However, the child theme’s style.css file is empty. Did you edit that file? It should contain info about the child theme and it should point to the parent theme.
Please correct it by adding the following code, but before doing so, make sure that there is a site backup and a restore point.
Example:
/* Theme Name: Enfold Child Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating will be much easier then. Version: 1.0.1 Author: Kriesi Author URI: http://kriesi.at Template: enfold */ /*Add your own styles here:*/
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.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
Try to edit the themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php file, and look for this code around line 712.
$permalink = ' <div class="read-more-link"><a href="' . get_permalink( $the_id ) . '" class="more-link">' . __( 'Read more', 'avia_framework' ) . '<span class="more-link-arrow"></span></a></div> ';
You can also use the POEdit software and add the translations to the language files manually.
Best regards,
IsmaelHi,
Thank you for the info.
Can we have access to the font? We would like to check the files and test it on our own installation. Please post the info in the private field.
Is it displaying properly when the Performance > File Compression settings are disabled?
Best regards,
IsmaelApril 19, 2021 at 5:35 am in reply to: Wonder-words.com: Enfold Content Widgets Not Working on WordPress 5.7 #1295082Hi,
Thank you for the info.
The site contains a deprecated version (3.5.4) of the theme, which is no longer compatible with WordPress and most of the natively configured plugins. You have to manually download the latest version (4.8.2) of the theme from your Themeforest account, and upload it manually to your installation via FTP.
Please check the following documentation for more info on how to properly update the theme through FTP.
// https://kriesi.at/documentation/enfold/theme-update/
Best regards,
IsmaelApril 19, 2021 at 5:28 am in reply to: ?avia-element-paging Duplicate URLS – low text-HTML ratio – Low speed #1295081Hi,
Did you set a Custom Error 404 Page in the Theme Options? Try to adjust it to the second option to omit the avia_forced_reroute=1 parameter from the URL.
Best regards,
IsmaelApril 19, 2021 at 5:25 am in reply to: Enfold shop demo set up some only text related product links that dissapeared #1295079Hi,
No problem. Please feel free to create a new thread should you need anything else.
Have a nice day.
Best regards,
IsmaelApril 19, 2021 at 5:23 am in reply to: Color Section – Cannot Edit or Save Background Image #1295077Hi,
Thank you for the info.
This is odd. The background image gets automatically removed from the color section when we save the changes. Can we deactivate the security plugin temporarily? You may also have to ask the host if the server cache can be disabled.
We have also found this error in the browser console, but we are not yet sure what is causing it or why the avia_framework_globals is undefined.
post.php?post=74&action=edit:99 Uncaught SyntaxError: Invalid or unexpected token
avia_dynamic_templates.js?ver=5.0:20 Uncaught ReferenceError: avia_framework_globals is not defined
at avia_dynamic_templates.js?ver=5.0:20
at avia_dynamic_templates.js?ver=5.0:415Best regards,
Ismael -
AuthorPosts