Category: Admin
Swaminika
Swaminika ads
Untitled Snippet
cmplz-show-banner
/** * Show the banner when a html element with class ‘cmplz-show-banner’ is clicked */ function cmplz_show_banner_on_click() { ?>Continue reading
custom smart tag full page example
Page TitleContinue reading
Untitled Snippet
How To Allow Shop Manager to Manage Feeds?
#– Allow Shop Manager to Access Product Feed Menus –# function allow_feed_menus_to_shop_manager( $capability ) { if ( current_user_can( ‘manage_woocommerce’ ) ) { return ‘manage_woocommerce’; } return $capability; } add_filter( ‘adt_pfp_admin_capability’, ‘allow_feed_menus_to_shop_manager’ );Continue reading
How to Change Google reCAPTCHA Language Settings
/** * Set a specific language Google reCAPTCHA. * * @link https://wpforms.com/developers/how-to-set-the-language-for-google-recaptcha/ */ function wpf_dev_recaptcha_language_wpml( $url ) { // Get my current language setting from WPML $my_current_lang = apply_filters( ‘wpml_current_language’, NULL ); // Set the language of my Google reCAPTCHA…Continue reading
How to Set the Language for Google reCAPTCHA
/** * Set the language for Google reCAPTCHA. * * @link https://wpforms.com/developers/how-to-set-the-language-for-google-recaptcha/ */ function wpf_dev_recaptcha_language( $url ) { // Set the language code to FR (French) return esc_url_raw( add_query_arg( array( ‘hl’ => ‘fr ‘), $url ) ); } add_filter( ‘wpforms_frontend_recaptcha_url’,…Continue reading