Forum Replies Created
-
AuthorPosts
-
Hi @maxgorelkine,
Just to make sure: There is an option in the tab section that displays the arrows out of the box:
Tab Section -> Layout Tab -> General Toggle -> Tab Buttons Out Of Screen Behaviour
But you are right – bug is when there are multiple tab sections on a page.
Thank you for reporting this.I will add a fix for next release 5.6.4.
If you need it earlier let us know.Best regards,
GünterJuly 12, 2023 at 4:55 pm in reply to: Display posts that are assigned to category1 AND category2 #1413153Hi!
FYI: In 5.6.4 there will be an option: “Multiple Categories/Terms Relation” in various elements.
See https://kriesi.at/support/topic/enfold-upcoming-fixes/
Best regards,
GünterJuly 10, 2023 at 4:46 pm in reply to: Remove items from default WooCommerce Dropdown filter #1412968Hey Thomas,
We have an own filter.
Please check enfold\config-woocommerce\config.php around line 1966:
$product_order['default'] = __( 'Default', 'avia_framework' ); $product_order['menu_order'] = __( 'Custom', 'avia_framework' ); $product_order['title'] = __( 'Name', 'avia_framework' ); $product_order['price'] = __( 'Price', 'avia_framework' ); $product_order['date'] = __( 'Date', 'avia_framework' ); $product_order['popularity'] = __( 'Popularity (sales)', 'avia_framework' ); $product_order['rating'] = __( 'Average rating', 'avia_framework' ); $product_order['relevance'] = __( 'Relevance', 'avia_framework' ); $product_order['rand'] = __( 'Random', 'avia_framework' ); $product_order['id'] = __( 'Product ID', 'avia_framework' ); /** * * @since 4.5.6.2 * @param array $product_order * @return array */ $product_order = apply_filters( 'avf_wc_product_order_dropdown_frontend', $product_order );
And in the filter use unset() to remove the ordering you do not like.
If this does not work – do you have a staging site where we can check and have a closer look into it.
Best regards,
GünterHi,
Sorry for the late reply – but have a look at https://kriesi.at/support/topic/exclude-pages-from-maintenance/
The filter ‘avf_exclude_maintenance_ids’ is available since 5.1.
Return the page id’s to be excluded in an array.
Best regards,
GünterHi Günter,
Only benefit is that you can limit old browser css/js to certain pages. Theme option must be enabled for old browser support.
Probably never needed.
Best regards,
GünterMay 30, 2023 at 4:35 pm in reply to: Wo änder ich diesen Titel? Das letzte Kommentar muss genehmigt werden. #1409037Hi,
You can find the latest translation files here: https://github.com/KriesiMedia/enfold-language-files
Best regards,
GünterHi @korpak,
Thank you for reporting this. Will be fixed in next release.
If you need a hotfix in enfold/functions.php around line 214 you find:
// in backend must be loaded as option page breaks if( ( function_exists( 'did_filter' ) && did_filter( 'after_setup_theme' ) ) || is_admin() ) { avia_lang_setup(); }
Replace these lines with:
avia_lang_setup();
Do not forget to make a backup of the original file as a fallback.
If you need help let us know and we can do it for you.Best regards,
GünterMay 30, 2023 at 3:03 pm in reply to: Wo änder ich diesen Titel? Das letzte Kommentar muss genehmigt werden. #1409026Hi,
I updated the wrong translation in the german files. Will be part of next release.
Best regards,
GünterHey Keith,
There seems to be a false alert by Sucuri.
See also https://kriesi.at/support/topic/malware-found-in-layerslider-kreaturamedia-js/
This file is part of the layerslider plugin.
Best regards,
GünterHey testq1,
Thank you for reporting this.
I updated the component for next release.
Best regards,
GünterMay 16, 2023 at 11:08 am in reply to: Undefined array key “key” in class-svg-shapes.php on line 515 #1407542Hi,
You have to add ‘key’ to your array, e.g.
'hp-banner-divider-no-wedge' => array( 'key' => 'hp-banner-divider-no-wedge', ......
Sorry, I missed to add this to the the comment. Will fix this for next release.
Compare config-templatebuilder\avia-template-builder\php\class-svg-shapes.php function init_native_shapes()Best regards,
GünterHi,
Thank you for reporting this. Will be fixed in next update 5.6.3.
If you need it earlier, let us know.
Best regards,
GünterHi,
Did not think about that.
Would a filter also be helpful?
As there are different elements I think one global value for all does not make sense. And an option for each element seems to overshoot?
Best regards,
GünterHi Thomas,
Thanks for the feedback that there is no hurry.
Cool solution !!
Best regards,
GünterHey Thomas,
Thank you for this suggestion.
Makes sense to add this. At a first glance it should be possible. I will try to add it and give you a link to the modified file so you can update and use it on your site prior to the next release. Will be monday (or tuesday).
Hope this will help you.
Best regards,
GünterMay 10, 2023 at 4:18 pm in reply to: Bug? Enfold Theme Options language not work (Enfold v5.6) #1407010Hi,
Glad we could help you. Enjoy the theme and have a great day.
Best regards,
GünterMay 10, 2023 at 4:15 pm in reply to: Portfolio item content not visible after Update to 5.6/5.6.1 + critical error #1407009Hi,
Thank you for giving us access.
I added a new Portfolio “Test Enfold” with ALB and do not see any errors. And I also can see your portfolio “…Barbarossa” in frontend and it looks OK as far as I see.
Could it be that your hoster has a cache enabled that blocked the change you made ?
Do you get any more error messages?
If you still see problems, please give us step by step how to reproduce it and where to look for it.
Thank you very much in advance.
Best regards,
GünterMay 10, 2023 at 3:42 pm in reply to: Portfolio item content not visible after Update to 5.6/5.6.1 + critical error #1407000Hey Ringknipser,
Really sorry for that and thank you for reporting it.
There is a typo error in file ../enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php: line 701:
Please replace
$copyright_text = apply_filter( 'avf_alb_masonry_copyright_text', esc_html( $copyright_text ), $copyright_text, $attachment, $entry, $this->config );
with
$copyright_text = apply_filters( 'avf_alb_masonry_copyright_text', esc_html( $copyright_text ), $copyright_text, $attachment, $entry, $this->config );
If you need help please let us know and give us WP admin access to your site (it is password protected) and activate theme editor so we can edit the file for you.
It will be fixed in 5.6.2. I asked Kriesi for a hotfix release.
Best regards,
GünterMay 10, 2023 at 3:15 pm in reply to: Bug? Enfold Theme Options language not work (Enfold v5.6) #1406998Hey Julien,
Sorry for this.
Please update to Enfold 5.6.1 released yesterday. This will fix the problem.
Best regards,
GünterHi,
Hm, strange. I also tested on a live site on an All-Inkl server. See private content.
It is also not in HTML source.Best regards,
GünterHi,
I do not see an easy way.
loop-search.php uses the default WP loop in a while statement.
Would mean you have to resort the search results query first before starting the while loop and then add the “group” changes in the loop.
You also have to consider pagination (which does not exist in ajax search).
Best regards,
GünterHey Tom,
Sorry for this.
Please update to 5.6.1 released this morning. This should fix the problem.
Best regards,
GünterHey Guenter,
How can I reproduce this? I tried it on a local install with ALB Textblock switching from visiual to text.
Best regards,
GünterHi,
You can also follow the upcoming fixes / changes here:
Best regards,
GünterHi,
In 5.6.1 the second solution is implemented:
$posttype = get_post_type( $the_id ); $post_class .= 'posttype-' . $posttype . ' ';
Best regards,
GünterHi,
In next version 5.6.1 there is an updated filter with more parameters:
Best regards,
GünterHey Guenter,
Yes. Very simple test implementation only:
function custom_avf_combo_box_image_size( $size, $args ) { return 'full'; } add_filter( 'avf_combo_box_image_size', 'custom_avf_combo_box_image_size', 10, 2 );
If not, please provide a link to the site so we can see setup in backend.
Best regards,
Günter -
AuthorPosts