function mepr_must_fill_out_coupon_code( $errors ) { if( !isset($_POST[‘mepr_coupon_code’]) || empty($_POST[‘mepr_coupon_code’] ) ) { $errors[] = “You must fill out the Coupon code field before registering.”; } return $errors; } add_filter( ‘mepr-validate-signup’, ‘mepr_must_fill_out_coupon_code’, 11, 1 );Continue reading
function auto_vote_5_stars_on_publish($ID, $post) { if ($post->post_status === ‘publish’) { if (function_exists(‘kk_star_ratings_insert’)) { kk_star_ratings_insert(“5”, $ID); } } } add_action(‘publish_post’, ‘auto_vote_5_stars_on_publish’, 10, 2);Continue reading
function mepr_disable_admin_pw_changed_email( $recipients, $subject, $message, $headers ) { if( strpos( $subject, ‘Password Lost/Changed’ ) !== false ) { $recipients = array(); // no recipients } return $recipients; } add_filter( ‘mepr-wp-mail-recipients’, ‘mepr_disable_admin_pw_changed_email’, 11, 4 );Continue reading
function mepr_remove_countries( $countries, $prioritize_my_country ) { return array ( ‘DE’ => _x( ‘Germany’, ‘ui’, ‘memberpress’ ) ); } add_filter( ‘mepr_countries’, ‘mepr_remove_countries’, 10, 2 );Continue reading
// Copy the Shortcode in the Insertion box below and paste it wherever you want the copyright symbol + year to be displayed. // This will output © 2023 or the current year automatically. echo “© ” . date( ‘Y’…Continue reading
/** * @snippet Stock Availability @ WooCommerce Shop Page * @how-to Get CustomizeWoo.com FREE * @author Rodolfo Melogli * @compatible WooCommerce 7 * @donate $9 https://businessbloomer.com/bloomer-armada/ */ add_action( ‘woocommerce_after_shop_loop_item’, ‘bbloomer_show_stock_shop’, 10 ); function bbloomer_show_stock_shop() { global $product; echo wc_get_stock_html( $product…Continue reading
function redirect_to_bestellen_after_login($redirect, $user) { $redirect_page_id = get_page_by_path(‘bestellen’); //slug van de doelpagina if ($redirect_page_id) { $redirect = get_permalink($redirect_page_id); } return $redirect; } add_filter(‘woocommerce_login_redirect’, ‘redirect_to_bestellen_after_login’, 10, 2);Continue reading
// Leidt niet-ingelogde gebruikers om van de /bestellen pagina naar de /my-account pagina. // Als de gebruiker is ingelogd, kunnen ze de /bestellen pagina normaal bekijken. function redirect_non_logged_users() { if (is_page(‘bestellen’) && !is_user_logged_in()) { //doelpagina ‘bestellen’ wp_redirect(site_url(‘/mijn-account’)); //redirect bestemming ‘/mijn-account’…Continue reading
function add_freshworks_embed_code_script_in_admin() { echo ““; echo ““; } add_action( ‘admin_footer’, ‘add_freshworks_embed_code_script_in_admin’ );Continue reading