Removing the Redux Demo Mode Notice
Redux::disable_demo();Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
Redux::disable_demo();Continue reading
add_action(‘login_form_lostpassword’, function() { if (isset($_GET[‘action’]) && $_GET[‘action’] === ‘lostpassword’) { wp_redirect(‘https://your-custom-url.com/’); exit; } });Continue reading
// === CUSTOM LOGIN PAGE === add_action(‘login_enqueue_scripts’, function () { echo ‘ ‘; }); // === LIEN DU LOGO DE CONNEXION === add_filter(‘login_headerurl’, fn() => ‘https://www.mdf.nc’); add_filter(‘login_headertext’, fn() => ‘MDF NC’);Continue reading
function custom_admin_style() { echo ‘ ‘; } add_action(‘admin_head’, ‘custom_admin_style’);Continue reading
/** Removes the “Login with GoDaddy” SSO Integration. */ add_action( ‘plugins_loaded’, function() { add_filter( ‘wpaas_gd_sso_button_enabled’, ‘__return_false’, 99999999, 1 ); } );Continue reading
/** * Site Logo block: live height preview with dropdown under Dimensions and width slider removed */ if ( ! defined( ‘ABSPATH’ ) ) exit; // Default pixel heights function afs_logo_sizes_defaults() { return array( ‘small’ => 50, ‘medium’ => 80,…Continue reading
/** * Extend native WordPress shortcode block with live preview */ if ( ! defined( ‘ABSPATH’ ) ) exit; class Enhanced_Shortcode_Block { public function __construct() { add_action( ‘enqueue_block_editor_assets’, array( $this, ‘enqueue_assets’ ) ); // Ensure shortcodes work in other blocks…Continue reading