Hi,
I am using a child theme and trying to remove the priority and hook the new priority .But no luck i cant find any changes
i have tried this also
add_filter( 'wc_gzd_frontend_hook_priority', 'my_theme_change_gzd_priorities', 10, 3 );
function my_theme_change_gzd_priorities( $prio, $hook, $class ) {
if ( 'checkout_payment' === $hook ) {
$prio = 20;
}
return $prio;
}
Is there any other filters available to override the plugin priority
Thanks in advance