Untitled Snippet
// Disable Gutemberg add_filter( 'use_block_editor_for_post', '__return_false', 10 );
Preload First Post Image
Preload First Post Image
Google Tag Manager
Ahrefs
Google tag
Código do Google Tag Manager
modify woocommerce countries list
modifies Woocommerce built in country names to Armenian Regions disabling the rest
MemberPress: Restrict Signups for US-Based Users
This code snippet will restrict signups for US-based Users on MemberPress registration pages. Additionally, it ensures…
MemberPress: Filter Email Recipients Based on Expired Memberships
The code snippet updates the email recipient lists by removing email addresses of users whose membership…
MemberPress: Load All Currently Enqueued Styles In MemberPress Courses for Popup Maker plugin
By default, if the ReadyLaunch Courses/Lessons template is enabled, the MemberPress Courses add-on won’t enqueue 3rd-party…
Automatically Set Featured Image from First Image in Post
Automatically Set Featured Image from First Image in Post
WooCommerce: Restrict Shipping Methods by User Role (Logged In, Logged Out, Custom Roles)
This snippet allows you to control which shipping methods are visible at checkout based on the…
Untitled Snippet
@ini_set( 'upload_max_size' , '120M' ); @ini_set( 'post_max_size', '120M'); @ini_set( 'max_execution_time', '300' );
Welcome Cards
4 cards to display service offering
Automatisches Löschen des Papierkorbs deaktivieren
function wpb_remove_schedule_delete() { remove_action( 'wp_scheduled_delete', 'wp_scheduled_delete' ); } add_action( 'init', 'wpb_remove_schedule_delete' );