返信先: 最新版のWelcartでも、新規会員登録時にSecurity check2のエラーで表示される

フォーラム バグ報告 最新版のWelcartでも、新規会員登録時にSecurity check2のエラーで表示される 返信先: 最新版のWelcartでも、新規会員登録時にSecurity check2のエラーで表示される

#87916
monge
参加者

ご返信ありがとうございます。
下記のように記載しておりますが、こちらでお分かりになりますでしょうか?

==
add_action(‘init’, ‘my_welcart_template’, 9);
function my_welcart_template(){
add_filter(‘usces_template_path_single_item’, ‘usces_template_path_single_item’);
add_filter(‘usces_template_path_member_form’, ‘usces_template_path_member_form’);
}
function usces_template_path_single_item( $path ){
$path = get_stylesheet_directory() . ‘/welcart/single_item.php’;
return $path;
}
function usces_template_path_member_form( $path ){
$path = get_stylesheet_directory() . ‘/welcart/member/member_form.php’;
return $path;
}