Forum Replies Created
-
AuthorPosts
-
Hey Guenter,
Actually $shrink_factor is intended to be integer.
In enfold\js\avia-snippet-sticky-header.js around line 146 you find:
const value = parseInt( shrink_factor );
This results to 0 with 0.1 so it should acutally work (header remains unshrinked)
Best regards,
GünterHi,
Problem caused by double enqueue of scripts avia_sidebar.js (and avia_sidebar.css).
In case of min files both files were enqueued (class avia_sidebar always used unminified version).
To fix the problem please replace enfold\framework\php\class-sidebar-generator.php
with the content of
Best regards,
GünterHi,
The HPOS is “only” affecting the way orders are saved in own tables. This means, that the “normal” WP way to access post metadata does no longer work. You need to use the WC Order API to get access to order data.
As Enfold does not do anything with orders there should be no conflict.
WC has a development beta https://github.com/woocommerce/woocommerce/releases/tag/feature-custom-order-table to test it. I did not see any problems testing it a few months ago.
Best regards,
GünterHi,
I tagged Yigit for this topic. He will come back to you in case he needs more info for the docu.
We appreciate your help.
Best regards,
GünterHi,
Thanks for providing insight into relevanssi and that it helps on large sites and works well with Enfold.
Have a great day.
Best regards,
GünterAugust 2, 2023 at 4:33 pm in reply to: (get_page_by_title() function has been deprecated scince 6.2.0) #1415264Hi,
Thank you for your feedback and that it is solved.
Enjoy the theme and have a great day.
Best regards,
GünterHey Guenter,
Strange – no, I cannot reproduce on my dev install.
Anything special on these installs ?
Best regards,
GünterHi,
Filter will be in 5.6.6:
searchform.php
This is the default that a form collects all input on submit.
Try this (adding the disabled attribute):
Best regards,
GünterHi,
If this is a solution I can add a filter for next release.
Just let me know.Best regards,
GünterHi,
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ünter -
AuthorPosts