I have this scenario: By default, checkout page is handled by Checkout for WooCommerce plugin, but I need to prevent plugin's template from loading, and load default WooCommerce checkout template if a certain $_GET parameter is provided.
I'm looking in plugin's filters and hooks but can't really find anything helpful.
Can anyone help with a hint please?
I have this scenario: By default, checkout page is handled by Checkout for WooCommerce plugin, but I need to prevent plugin's template from loading, and load default WooCommerce checkout template if a certain $_GET parameter is provided.
I'm looking in plugin's filters and hooks but can't really find anything helpful.
Can anyone help with a hint please?
Share Improve this question asked Mar 11, 2020 at 12:16 Nicolae CojocaruNicolae Cojocaru 11 Answer
Reset to default 0Problem solved, found an undocumented hook - cfw_load_checkout_template
Example usage:
add_action('cfw_load_checkout_template', 'sd_handle_cfw_should_load');
function sd_handle_cfw_should_load($value)
{
if(isset($_GET['sdc_modal'])) {
return false;
}
return $value;
}
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744679498a4587531.html
评论列表(0条)