Forum Replies Created
-
AuthorPosts
-
Actually I would prefer it to be a link that only becomes an input and submit combo if you click it. Saleswise it would be much better to have it more sublime. Best, El
Hi Basilis,
not a stellar reply by you guys since it used to work flawlessly. Only since the update do we start having these issues.
Best,
ElActually it turns out that I need to manually apply those filters after the search results return from the ajax function call. Please let me know how to change the output accordingly. Appreciated.
Hi Victoria,
that solution sounds like it only works if you have a custom accordion module added to the site. It only removes the tabs but does not convert them… I guess.Best,
ElmarHi there,
I was able to piece together some CSS fixes from other cases that improved the situation. More config options for enfold with woocommerce would be awesome for future releases.
Best,
ElJanuary 13, 2020 at 5:19 pm in reply to: Enfold cleans out all custom tags in page – a lot of work is now gone #1172882Hi Victoria,
unfortunately it is not resolved. All custom tags are cleaned out when I access a Product or Page that is built with the Advanced Layout Editor. How do I keep this from happening? It does not seem to happen once I re-save a page and add all the codes back it… but obviously I do not want this to happen in the first place.
Best,
ElmarJanuary 10, 2020 at 6:55 pm in reply to: How to avoid shop listing items getting messed up (only one item per line) #1172286Hi Mike,
thank you for pointing me in the right direction. It was an old css snippet that interfered. Appreciated!
Best,
ElmarJanuary 9, 2020 at 5:53 pm in reply to: How to avoid shop listing items getting messed up (only one item per line) #1171891Sorry wrong link
January 8, 2020 at 8:51 pm in reply to: Enfold cleans out all custom tags in page – a lot of work is now gone #1171600Hi Victoria,
Enfold > Select Your Editor > Use Block Editor
Best,
ElJanuary 8, 2020 at 7:05 pm in reply to: Enfold cleans out all custom tags in page – a lot of work is now gone #1171560Ok, it is the WP-classic editor setting in the Enfold config that kills everything. If I turn it off then at least my not yet saved pages are not yet trashed.
Hi Tina,
its strange that it used to work fine. Thank you for tracking this down!
Best,
ElThis reply has been marked as private.Did you see my link I posted a while back? It can be solved with JavaScript event handlers!
Here is the link (number 1 answer is the script):
https://stackoverflow.com/questions/41594997/ios-10-safari-prevent-scrolling-behind-a-fixed-overlay-and-maintain-scroll-posiHi Ismael,
nope doesn’t work. Please test this on iOS. This is getting ridiculous.
Best,
ElmarActually I think it might be related to this iOS bug and the only solution seems to be to add a little js. Can you help to implement a fix in enfold?
Best,
ElGuys,
this blocks ALL scrolling… also that off the actual menu. Please – help to fix this we need a real solution here.
Best,
ElHi Yigit,
the issue is still unresolved. When can we expect this to work?
Best,
ElOctober 14, 2019 at 4:13 pm in reply to: WP caught error in admin-ajax after upgrading to 4.6.2? #1147863Paul, my pleasure. Glad its working for you now. Best, El
Hi Jordan,
please close.
Thx man!
Hi there,
I rebuilt the index and that seemed to have done the trick. Just as a note for anyone else.
Best,
ElHi there,
actually both suggestions have no effect. Ideas?
Best,
ElmarHi Yigit,
please let me know the fix to get this working again.
Best
ElmarAny updates? This is really bad for us and we need this to work!
Thanks
October 9, 2019 at 6:57 am in reply to: WP caught error in admin-ajax after upgrading to 4.6.2? #1146396Hi Ismael,
it kind of fixed the search but now the function.php Relevanssi mods don’t work anymore. we narrow the search to only products but this is no longer taken into account.
See: https://kriesi.at/support/topic/relevanssi-search-broken-after-update/
Best,
ElHi Yigit,
sorry – forgot the browser cache ;). Now the search does display all results although we filtered it to only show products. Here is the code in our functions.php. That is no longer working. Users now get a wild mix of blog content, video and products.
/**
* Search with Relevanssi
**/
function avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)
{
$function_name = ‘avia_relevanssi_search’;
return $function_name;
}
add_filter(‘avf_ajax_search_function’, ‘avia_init_relevanssi’, 10, 4);function avia_relevanssi_search($search_query, $search_parameters, $defaults)
{
global $query;
$tempquery = $query;
if(empty($tempquery)) $tempquery = new WP_Query();$tempquery->query_vars = $search_parameters;
$tempquery->query_vars[‘post_type’] = ‘product’;relevanssi_do_query($tempquery);
$posts = $tempquery->posts;return $posts;
}/**
* Adding variations to Relevanssi
**/
function rlv_index_variation_skus($content, $post) {
if ($post->post_type == “product”) {
$args = array(‘post_parent’ => $post->ID, ‘post_type’ => ‘product_variation’, ‘posts_per_page’ => -1);
$variations = get_posts($args);
if (!empty($variations)) {
foreach ($variations as $variation) {
$sku = get_post_meta($variation->ID, ‘_sku’, true);
$content .= ” $sku”;
}
}
}return $content;
}
add_filter(‘relevanssi_content_to_index’, ‘rlv_index_variation_skus’, 10, 2);—
Best,
ElHey Yigit,
I just exchanged the files. Unfortunately it still doesn’t work.
Best,
ElHi Yigit,
Thx for checking back with your guys and good to know that it can be fixed fast.
Let’s hope there is also a quick fix for the navigation glitch.
Best,
ElThis reply has been marked as private.Here is the bug in enfold that causes this:
Hi guys, here is the bug in the relevanssi adaption in enfold. This used to work flawlessly:
[07-Oct-2019 11:46:05 UTC] PHP Fatal error: Uncaught TypeError: Argument 2 passed to Avia_Relevanssi::handler_init_ajax_search() must be of the type array, string given, called in /web/wp-includes/class-wp-hook.php on line 286 and defined in /web/wp-content/themes/enfold/config-relevanssi/class-avia-relevanssi.php:70
Stack trace:
#0 /web/wp-includes/class-wp-hook.php(286): Avia_Relevanssi->handler_init_ajax_search(‘avia_relevanssi…’, ‘numberposts=5&p…’, Array, Array)
#1 /web/wp-includes/plugin.php(208): WP_Hook->apply_filters(‘avia_relevanssi…’, Array)
#2 /web/wp-content/themes/enfold/functions-enfold.php(255): apply_filters(‘avf_ajax_search…’, ‘get_posts’, ‘numberposts=5&p…’, Array, Array)
#3 /web/wp-includes/class-wp-hook.php(286): avia_ajax_search(”)
#4 /web/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(”, Array)
#5 /var/www/ in /web/wp-content/themes/enfold/config-relevanssi/class-avia-relevanssi.php on line 70October 7, 2019 at 1:54 pm in reply to: WP caught error in admin-ajax after upgrading to 4.6.2? #1145755Hi guys, here is the bug in the relevanssi adaption in enfold. This used to work flawlessly:
[07-Oct-2019 11:46:05 UTC] PHP Fatal error: Uncaught TypeError: Argument 2 passed to Avia_Relevanssi::handler_init_ajax_search() must be of the type array, string given, called in /web/wp-includes/class-wp-hook.php on line 286 and defined in /web/wp-content/themes/enfold/config-relevanssi/class-avia-relevanssi.php:70
Stack trace:
#0 /web/wp-includes/class-wp-hook.php(286): Avia_Relevanssi->handler_init_ajax_search(‘avia_relevanssi…’, ‘numberposts=5&p…’, Array, Array)
#1 /web/wp-includes/plugin.php(208): WP_Hook->apply_filters(‘avia_relevanssi…’, Array)
#2 /web/wp-content/themes/enfold/functions-enfold.php(255): apply_filters(‘avf_ajax_search…’, ‘get_posts’, ‘numberposts=5&p…’, Array, Array)
#3 /web/wp-includes/class-wp-hook.php(286): avia_ajax_search(”)
#4 /web/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(”, Array)
#5 /var/www/ in /web/wp-content/themes/enfold/config-relevanssi/class-avia-relevanssi.php on line 70 -
AuthorPosts