Works well, but when clicking ‘Find Results’ on that tab, the page reloads completely, scrolling to the top and closing the tab.
This makes it hard to find the results again (you have to scroll down, find the ‘Test’ tab, and click on this tab again to see the search results).
Is there any way for the results to just refresh in the tab window without the whole page reloading?
This is the shortcode we are using
[searchwp_search_form engine="pdf_searches" var="searchvar" button_text="Find Results"]
[searchwp_search_results engine="pdf_searches" var="searchvar" posts_per_page=4]
Results available below:
<h1>[searchwp_search_result_link direct="true"]</h1>
[searchwp_search_result_excerpt]
[/searchwp_search_results]
[searchwp_search_results_none]
No results found, please search again.
[/searchwp_search_results_none]
[searchwp_search_results_pagination direction="prev" link_text="Previous" var="searchvar" engine="pdf_searches"]
[searchwp_search_results_pagination direction="next" link_text="Next" var="searchvar" engine="pdf_searches"]
Thank you!
]]>Theme: Hello theme for Elementor
Plugins: Elementor, Elementor PRO, WooCommerce, Crocoblock suite, Cart flows, lite speed cache
Issue: Even though my AJAX add to cart buttons work, the page still reloads every time, I would like for it to work as intended and not reload the page when the cart is updated.
What I have already tried:?Disabling every plugin, disabling my theme, tweaking with configurations from plugins and WooCommerce, checking and unchecking? ‘Enable AJAX add to cart buttons on archives’ setting under Woocommerce.
I honestly do not know what else I can do, if anyone can provide any insight it would be greatly appreciated.
Thank you!
]]>Theme: Hello theme for Elementor
Plugins: Elementor, Elementor PRO, WooCommerce, Crocoblock suite, Cart flows, lite speed cache
Issue: Even though my AJAX add to cart buttons work, the page still reloads every time, I would like for it to work as intended and not reload the page when the cart is updated.
What I have already tried: Disabling every plugin, disabling my theme, tweaking with configurations from plugins and WooCommerce (Yes, the AJAX add to cart configuration in WooCommerce is turned on)
I honestly do not know what else I can do, if anyone can provide any insight it would be greatly appreciated.
Thank you!
]]>// show missing consent warning on shop pages
add_action( 'woocommerce_archive_description', 'RCB_Payment_Notice' );
function RCB_Payment_Notice() {
// check consent only if RCB is running
if( function_exists('wp_rcb_consent_given') ) {
// PayPal
if( wp_rcb_consent_given("http", "ts", ".paypal.com")['cookieOptIn'] ) {
if( isset($_COOKIE['con_fail_pp'])) {
unset($_COOKIE['con_fail_pp']);
setcookie('con_fail_pp',false,-3600);
}
} else {
if( !isset($_COOKIE['con_fail_pp'])) {
setcookie('con_fail_pp',true);
}
echo '<p class="rcb_paymen_notice" id="RCB_PP">my notice goes here.</p>';
}
// Stripe
if ( wp_rcb_consent_given("http", "__stripe_sid", "*")['cookieOptIn'] ) {
if( isset($_COOKIE['con_fail_stripe'])) {
unset($_COOKIE['con_fail_stripe']);
setcookie('con_fail_stripe',false,-3600);
}
} else {
if( !isset($_COOKIE['con_fail_stripe'])) {
setcookie('con_fail_stripe',true);
}
echo '<p class="rcb_paymen_notice" id="RCB_Stripe">another notice.</p>';
}
}
}
That works perfectly well, exept when I turn on WPSC. Looks like WPSC makes everything in woocommerce_archive_description static, so changes will not get displayed.
I played with the wp_cache_post_change function, but that does not work either.
if( $clear_cache && function_exists('wp_cache_post_change') ) {
$GLOBALS["super_cache_enabled"]=1;
global $post;
wp_cache_post_change($post->ID);
)
I could not find a wp_cache_page_change function, so I’m asking if anybody can help me out here. Right now I had to disable caching for my shop pages to make it work but that is not a viable solution.
So is there any way to tell WPSC to reload the shop page?
Thanks!
The problems:
1) If in Behavior menu the ‘Load form using AJAX’ is ‘ON’ the form will not be rendered.
2) If I choose AJAX to send the form the page will reload every time, when it shouldn’t.
3) If I create a Custom CSS under Appearance, it doesn’t work at all.
4)A few hours after I put the plugin to work, I received 2 SPAM in my email notification, is this normal? How can I avoid this?
It seems like the plugin is unstable and malfunctioning.
How can I fix the issues so I can keep using this plugin?
Thanks
When Sidecart WooCommerce is enabled the link of all the products used as external/affiliate just reload the page. This is only at product pages, while in category view the link works fine.
?Thanks in advance!
]]>I’ve tried disabling plugins to solve the issue but haven’t found something that works yet.
Any help would be greatly appreciated! Thanks.
]]>It appears that when the user consents to the use of cookies on our website hollywood-brunnen.com, the confirmation is saved for the particular session. When closing the browser and reopening the site, the cookie notice prompt shows again.
I’m using the latest version of the GDPR Cookie Compliance Plugin and WordPress. Hosted on Kinsta and using their Kinsta CDN (which is apparently compatible according to your documentation).
What could potentially the problem be in this case?
Thank you very much for your help.
Kind regards,
TNRFX
Highly appreciate the help (if you can give me step by step how to fix this).
Thank you!!