Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
You can use plugins like Widget Logic or If Widget to control the visibility of the widgets. This should give you more control over which widgets to display on a specific category page.
// https://wordpress.org/plugins/if-widget/
// https://wordpress.org/plugins/widget-logic/Best regards,
IsmaelHey aruizhuidobro,
Thank you for the inquiry.
The site is not loading properly on our end. Is it currently down, or did you move it elsewhere?
Best regards,
IsmaelHi,
in every blog article i have the field excerpt,
Thanks for that info. But are you using the Advance Layout Builder for other posts? The excerpt will not display or will not be created automatically based on the post content when the advance builder is active. For those posts, you will have to add the excerpt manually.
Best regards,
IsmaelHi,
Thank you for the update.
The theme contains a script that creates two buttons (+|-) for the default quantity field but it does not interfere with the product creation. All configurations or adjustments for the shop plugin can be found in the config-woocommerce > config.php file and you will not see anything related to variable product creation. Most of the adjustments are related to the product templates.
Would you mind posting a login account? We would like to test it further. We may need to deactivate the theme temporarily and use one of the default themes.
Best regards,
IsmaelDecember 6, 2021 at 6:20 am in reply to: ALB shortcodes are stripped if element gets opened up in backend #1331663Hi,
Thank you for the info, and quite sorry for the delay.
Was the CET created in the older versions of the theme? What happens when you delete the existing CETs and recreate them from scratch?
We created a test page (see private field), added a tab element to it and inserted the only CET but we are not able to reproduce the issue. The content of the tab element updates correctly after saving.
Best regards,
IsmaelHi,
It should select Peace River
Did you add a custom script for it? Can we check the code? Please use pastebin or any snippet hosting sites for the code.
We noticed that the “pin” parameter above is empty. Was that intentional?
Best regards,
IsmaelHi,
The item contains the original version of the image. We provided the actual link of the image in the private field.
Best regards,
IsmaelHi,
Thank you for the info.
Are you using the Advance Layout Builder (ALB) for some of the posts? For those posts, you may need to add the excerpt manually because the theme will not automatically generate an excerpt based on the content of the builder.
Best regards,
IsmaelHi,
The script is causing the error as we mentioned above. Unfortunately, we are not familiar with the script. We do not know how it works or what it does. You have to keep in touch with plugin developers and ask them for additional help since you are a paying customer.
Please feel free to open a new thread if there are issues with the theme itself or with any plugins that it natively supports. You will find our forum policy in the following link — what is included in the support and the limitations.
// https://kriesi.at/support/register#av_section_2
Thank you for your understanding.
Best regards,
IsmaelDecember 3, 2021 at 1:18 pm in reply to: anchors strange behaviour – scrolling to anchor not precise #1331449Hi,
Thank you for the update.
Have you done any performance optimization to the site yet? Optimizing the resource (css, js) delivery and improving the speed of the page load should help with the issue. You can start by compressing the images and by installing a cache plugin as described in the following articles.
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
// https://gtmetrix.com/wordpress-optimization-guide.htmlAnd adding this filter in the functions.php file should help adjust the scroll position.
function avf_header_setting_filter_mod($header) { $header['header_scroll_offset'] = $header['header_scroll_offset'] - 100; return $header; } add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);Best regards,
IsmaelHi,
Great! Glad to know that it is working. Let us know if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Great! Glad to know that you have found a workaround. Feel free to open another thread if you need anything else. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelHey ananda,
Thank you for the inquiry.
This is possible but you have to modify the avia_sidebar_menu function in the functions-enfold.php file to add the parent page in the list.
function avia_sidebar_menu($echo = true) { $sidebar_menu = ""; $subNav = avia_get_option('page_nesting_nav'); $the_id = @get_the_ID(); $args = array(); global $post; if($subNav && $subNav != 'disabled' && !empty($the_id) && is_page()) { $subNav = false; $parent = $post->ID; $sidebar_menu = ""; if (!empty($post->post_parent)) { if(isset($post->ancestors)) $ancestors = $post->ancestors; if(!isset($ancestors)) $ancestors = get_post_ancestors($post->ID); $root = count($ancestors)-1; $parent = $ancestors[$root]; } $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'=>'menu_order, post_title'); //enables user to change query args $args = apply_filters('avia_sidebar_menu_args', $args, $post); //hide or show child pages in menu - if the class is set to 'widget_nav_hide_child' the child pages will be hidden $display_child_pages = apply_filters('avia_sidebar_menu_display_child', 'widget_nav_hide_child', $args, $post); $children = wp_list_pages($args); if ($children) { $default_sidebar = false; $sidebar_menu .= "<a href='". get_the_permalink($parent) ."'>".get_the_title($parent)."</a>"; $sidebar_menu .= "<nav class='widget widget_nav_menu $display_child_pages'> <ul class='nested_nav'>"; $sidebar_menu .= $children; $sidebar_menu .= "</ul> </nav>"; } } $sidebar_menu = apply_filters('avf_sidebar_menu_filter', $sidebar_menu, $args, $post); if($echo == true) { echo $sidebar_menu; } else { return $sidebar_menu; } }This is the line that creates the parent page.
$sidebar_menu .= "<a href='". get_the_permalink($parent) ."'>".get_the_title($parent)."</a>";Best regards,
IsmaelHey stacey_pritchett,
Thank you for the inquiry.
It seems as though the issue only happens on the initial load. The slider becomes taller than it should be and only adjusts after the page has fully loaded. Does it help when you disable the text animation below the slider?
Best regards,
IsmaelHey emilconsor,
Thank you for the inquiry.
Is this the same issue with the masonry element that we discussed previously? Looks like it is a different site. Did you add use the same masonry query filter? We tried to check it but the Appearance > Editor panel is not accessible.Looks like you already figured it out based on the following thread.
// https://kriesi.at/support/topic/masonry-grid-load-more-shoes-infinite-duplicates/#post-1331314
Do you need more help with it?
Best regards,
IsmaelHi,
Sorry. We misunderstood your initial post and thought that you are using the default privacy options in the theme. Where did you get the privacy option script?
The script is not working correctly because of this error.
Uncaught ReferenceError: Backbone is not defined at notes-common-v2.js?ver=10.3-202148:32 at notes-common-v2.js?ver=10.3-202148:158 admin-bar-v2.js?ver=10.3-202148:2 Uncaught ReferenceError: _ is not defined at admin-bar-v2.js?ver=10.3-202148:2Did you contact the script authors about the issue?
Best regards,
IsmaelHi,
Thank you for the info.
The items in the masonry element are now using the original unscaled version of the image. We provided a screenshot below. Just make sure to delete the cache before checking the page again.
Best regards,
IsmaelHi,
Sorry about that. Looks like you have to move the anchor after the query string (see private field) based on the following thread.
Thank you for your patience.
Best regards,
IsmaelHi,
Yes, it looks fine. And based on that code, the meta info will only display if the excerpt is not empty. You should add an excerpt to the post to display the date info.
Thank you for the update.
Best regards,
IsmaelHey tremblayly,
Thank you for the inquiry.
Based on screenshots above, none of the product options were selected, which was probably why the input fields are still hidden. We know that the input fields (quantity, add to cart etc) should be visible by default, but a plugin or a shop extension might be hiding the fields or adding the class name “hidden” to the container, and only toggle their visibility once the user adjusted the product options. Did you install any shop extensions?
We may need to inspect the site in order to understand the issue further. Please provide the variable product URL in the private field.
The quantity input fields are displaying correctly on a demo product, as shown in the screenshot below.
Best regards,
IsmaelHi,
Thank you for the login token.
In the carnival-fun-fair-tents/ page (see private field), at the very bottom of the page, there are broken columns and the content of the text block cannot be accessed correctly. There is also a script for reviews, which might be causing the issue. Did you add another custom script in the text block?
Best regards,
IsmaelDecember 3, 2021 at 7:30 am in reply to: Picture beneath Navigation enfold photography portfolio demo #1331398Hi,
Thank you for the inquiry.
This is possible but when we checked the site, there seems to be no extra space below the sidebar navigation. The whole sidebar or side header is occupied. Where would you like the logo to appear?
If you want to test it out, you can use this code in the functions.php file to insert an image or any element below the main menu.
add_action("ava_after_main_menu", function() { $output = "<img class='av-secondary-logo' src='LOGO URL HERE' />"; echo $output; }, 10);Make sure to adjust the logo URL placeholder with the actual image URL.
Best regards,
IsmaelHey sofiadadci,
Thank you for the inquiry.
The cart widget container is hidden by default for some reason. Please try to add this css code to display it back.
#top .cart_list.product_list_widget { display: block; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHi,
Thank you for the screenshot.
Did you remove the previous css code before or after adding the latest one? Unfortunately, we will not be able to help you further if we cannot access site. It would be much easier for the both of us if we can inspect the elements and directly modify the code.
Best regards,
IsmaelHi,
Thank you for following up.
to check with you the specifications needed to run enfold on their server
The theme should work fine on any servers with at least 1 virtual CPU and 1 GB of RAM or less. But it may vary based on the traffic received by the website on a daily basis. A lot of the Enfold users subscribe to the most basic server plans and the site runs well without having this issue. Since you are using a shared server or the server is shared by a lot of sites, it is possible that other sites are contributing to that crash. It is also possible that one of the plugins installed in the site is causing the issue.
Did you ask your hosting provider why the following errors occur?
[Tue Nov 30 23:51:08 2021] [access_compat:error] [pid 31830] [client 114.119.144.116:0] AH01797: client denied by server configuration: /home/www/actugedinne.be/wordpress/emploi-imaje-recrute-des-puericulteurs-des-puericultrices-pour-les-creches-de-gedinne-beauraing-bievre-et-vresse
[Wed Dec 01 00:03:05 2021] [access_compat:error] [pid 31830] [client 114.119.144.165:0] AH01797: client denied by server configuration: /home/www/actugedinne.be/wordpress/sport-a-lecole-je-cours-pour-ma-forme-bic-112010
The following articles might help.
// https://bobcares.com/blog/client-denied-by-server-configuration-wordpress/
Best regards,
IsmaelHey Manos,
Thank you for the inquiry.
1.) This is possible but you have to modify the avia_ajax_search function in the functions-enfold.php file and adjust the thumbnail manually. Look for this code around line 396.
$image = get_the_post_thumbnail( $post->ID, 'thumbnail' );2.) You can use the avf_ajax_search_query filter to adjust the number of posts in the search results container.
add_filter("avf_ajax_search_query", function($query) { parse_str($query, $parameters); $parameters["numberposts"] = 2; return http_build_query( $parameters ); }, 10, 1);Best regards,
IsmaelDecember 2, 2021 at 4:54 pm in reply to: Enfold and Paid Memberships Pro issue with blog posts element #1331337Hey Jason,
Thank you for the inquiry.
It seems to be working as it should. All posts are visible when logged in as a top tier user and we can only see a single public post when using the basic account. Did we miss anything?
Please check the screenshots in the private field.
Best regards,
IsmaelDecember 2, 2021 at 4:44 pm in reply to: anchors strange behaviour – scrolling to anchor not precise #1331335Hi,
Thank you for the inquiry.
The issue only happens on initial load when the resources such as scripts, stylesheets and images are not yet fully loaded. The animation of the items in the masonry element might be also contributing to the issue because it causes the document or the page to shift a bit. Disabling the animation of the items in the masonry element might help. Try to add this code in the Quick CSS field.
.av-masonry-entry { visibility: visible; opacity: 1; transition: none; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.
Best regards,
IsmaelHey FotoStyle_ro,
Thank you for the inquiry.
The option works properly on our end. Please check the screenshot in the private field. Can we have access to the site? We would like to edit the page and check the settings.
Best regards,
IsmaelDecember 2, 2021 at 4:25 pm in reply to: excerpt line breaks not showing in magazine element #1331331Hi,
Thank you for the screenshot.
We have found the difference between the blog posts element and the magazine. In the blog posts element, the content or the excerpt runs through the “the_content” filter, so the required formatting including line breaks get applied before actually returning the text. This is not true for the magazine element.
To change that we have to modify the same line (1297) of code above.
$excerpt = ! empty( $entry->post_excerpt ) ? $entry->post_excerpt : avia_backend_truncate( $entry->post_content, apply_filters( 'avf_magazine_excerpt_length', 60 ), apply_filters( 'avf_magazine_excerpt_delimiter', ' ' ), '…', true, '' );And add this code below.
$excerpt = str_replace( ']]>', ']]>', apply_filters( 'the_content', $excerpt ) );This is the result after doing the modification above. (see private field)
Best regards,
Ismael -
AuthorPosts
