Forum Replies Created
-
AuthorPosts
-
Hi,
Have a look into enfold\config-relevanssi\class-avia-relevanssi.php
Around line 170 you find:
$tempquery->query_vars = $search_parameters; relevanssi_do_query( $tempquery );
Try the following:
$tempquery->query_vars = $search_parameters; $tempquery->set( 'posts_per_page', 5 ); relevanssi_do_query( $tempquery );
Best regards,
GünterHey Thomas,
I did not dig deeper in it, but when the full search result page does not use ajax you could try:
if( wp_doing_ajax() ) { add_filter( 'pre_option_relevanssi_throttle_limit', function( $limit ) { return 5; } ); }
Best regards,
GünterHey HenkN,
To functions.php of your child theme add:
add_theme_support( "avia_template_builder_custom_post_type_grid" );
This will add an additional selectbox “Which Entries Should Be Used” to ALB Portfolio Grid where you can select “Post Tags”
The portfolio grid filter (line 1589):
$query = apply_filters( 'avia_post_grid_query', $query, $params );
$query is the WP array rendered to WP_Query with:
$this->entries = new WP_Query( $query );
So you are able to modify this and use all the capabilites WP_Query (https://developer.wordpress.org/reference/classes/wp_query/) offers
Best regards,
GünterHi,
Glad we could help you.
Enjoy the theme and have a great day.
Best regards,
GünterHey emilconsor,
Falls Ihr mit einem child theme arbeitet, dann fügt in functions.php des child themes am Ende den folgenden Code ein:
add_theme_support( 'show_advanced_custom_element_options' );
Dann gibt es unter “Custom Elements” — “Show Advanced Options” die Selectbox “Custom Elements For Subitems” (Theme options page neu laden !!).
Dort dann “Individually select subitem custom element templates” auswählen.
Siehe auch https://kriesi.at/documentation/enfold/custom-element-templates/#custom-elements-advanced-options
Best regards,
GünterHey Brugmedia,
Sorry for the problem.
Please see this answer: https://kriesi.at/support/topic/problem-with-update-version-5-6-4/#post-1414377
If you need help, let us know.
Best regards,
GünterHey kreativeseite,
Thank you for using Enfold.
This is “only” a warning and does not have a negative effect.
We have fixed it in 5.6.5
To get rid of it please replace enfold\config-templatebuilder\avia-shortcodes\blog\blog.php
with the content of
Do not forget to make a backup of the original file for a fallback and clear server and browser cache.
If you need help let us know.
Best regards,
GünterHi @boehmmedia,
As already mentioned before: our loop-search.php uses the default WP loop.
You must hook in the default WP search query and alter this to return the results in the order you need. Maybe these articles helps you:
https://stackoverflow.com/questions/52317953/change-search-query-wordpress
https://stackoverflow.com/questions/9468804/make-wordpress-search-only-in-post-titleBut maybe it is a better idea to use a standard WooCommerce extension like
Best regards,
GünterHey Tim,
Sorry for the late reply.
Please check enfold\css\layout.css
Around line 2076 you find:
.ajax_load_inner{ background: url("../images/layout/loading.gif") no-repeat scroll center center #fff; opacity: 0.5; position: absolute; top:0; left:0; right:0; bottom:0; }
I think this is what you need.
To override it you can use selector:
#searchform .ajax_load .ajax_load_inner{ }
Hope this helps you.
Best regards,
GünterHey Thomas,
Thanks for reporting this – and sorry for the problem.
I think I found the problem.
Can you please replace
enfold\config-woocommerce\config.php
with the content of
https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_5_6_4/woocommerce/config.php
Do not forget to clear server and browser cache and make a backup of the original file for a fallback.
Best regards,
GünterHi,
Looks good. Thanks for checking.
Here are examples for the 2 filters:
https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Markup%20and%20Attributes/avf_avia_logo_link_aria.php
https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Markup%20and%20Attributes/avf_avia_logo_link_title.phpBest regards,
GünterHey Guenter,
Thank you for your input. As always this makes sense.
1.) av-burger-menu-main – added role for release 5.6.5
As I’ve never really digged deeper into that role stuff – could you please help me with the html attributes needed to add it correctly and where to place them ?
The info we have in media gallery when editing an image:
Image title = post_title
Alternative Text = postmeta ‘_wp_attachment_image_alt’
Caption = post_excerpt
Description = post_content
Copyright = postmeta ‘_avia_attachment_copyright’We can proceed in a step by step starting with logo and then a.avia_image
Best regards,
GünterHey mtothearius,
Thank you for using Enfold.
Enfold itself does not save/use any user data. The numeric captcha are only random numbers created during page load and checked by js.
3rd party services like Google have their own data handling – independent from Enfold.
Hope this answers your question.
Best regards,
GünterHi,
why is adding some code some 250 lines above causing the function get_post_list to throw an error?
Hard to say, what dreamweaver does, but the only idea I have that there is some misinterpreting of the character base causing a syntax error.
I user NetBeans https://netbeans.apache.org/ and do face any problems.
Try to switch to another editor and check, if the frontend works.Or try to ignore the error message and check frontend.
Best regards,
GünterHey Ben,
Thank you for reporting this – and sorry for the problems.
Will be fixed in next release.
Meanwhile you can replace
../enfold/config-templatebuilder/avia-shortcodes/blog/blog.php
with the contents of
Do not forget to make a backup of the original file for a fallback.
Best regards,
GünterJuly 13, 2023 at 5:41 pm in reply to: URGENT !! Layerslider needs an important security fix !!!! #1413243Hi,
Glad it helps you.
If you find any problems please let us know so we can fix it – open a new thread for that please.
Best regards,
GünterJuly 13, 2023 at 3:33 pm in reply to: URGENT !! Layerslider needs an important security fix !!!! #1413236Hey BeeCee,
Thanks a lot for this info. I updated it for the next release.
Have a great day.Best regards,
GünterHi @maxgorelkine,
Thanks for your feedback.
this option displays arrows only next to the tabs and only on small screens.
The arrows only show up when tabs exceed viewport width to draw attention that there are more tabs. Add 10 or more tabs and you will also see them on larger screens.
We have already in beta a slideshow section:
Copy these two files in your child theme folder /shortcodes/slideshow_section.
Do not forget to remove it in case this element gets into core.
BTW: It is important that the tabtitles are unique, otherwise clicking on a non unique one will also select all others as active.
Best regards,
GünterHi @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ünter -
AuthorPosts