kmzak
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
it’s in theme functions php
Yes i have removed this code
add_filter( ‘wcfm_is_allow_store_name’, ‘__return_false’ );
and replaced with
add_filter( ‘wcfm_is_allow_store_name’, function( $is_allow ) { if( is_wcfm_registration_page() ) { $is_allow = false; } return $is_allow ; } );
https://pasteboard.co/K6Aq7n9.png
can I get an email-id ill send the login details
- This reply was modified 3 years, 8 months ago by kmzak.
Nope the store name is still asked in vendor registration
i used inside functions php & also removed cache
add_filter( ‘wcfm_is_allow_store_name’, function( $is_allow ) { if( is_wcfm_registration_page() ) { $is_allow = false; } return $is_allow ; } );
Hi, watend to delete store name from registration
i added
add_filter( ‘wcfm_is_allow_store_name’, ‘__return_false’ );
and it works well, but this even deletes inside store settings, i dint wanted to delete – from vendor> setting… needed it to be deleted only from registration Page
Viewing 3 replies - 1 through 3 (of 3 total)