Remove Stats Summary Block
Remove the campaign summary block (funds raised, number of donors, etc).
Untitled Snippet
HaNoiRental Lọc Loại phòng >Phòng trọ >Căn hộ chung cư > Dưới 1 triệu > 3…
change media owner
Allows the admin to assign any media library file from one user to another
How to Change CSV Export Delimiter
This snippet will modify the CSV separator symbol to be a semicolon instead of a comma.
Ensure Webfont is Loaded (non-Elementor)
function custom_font_display( $current_value, $font_family, $data ) { return 'swap'; } add_filter( 'font_display', 'custom_font_display', 10, 3 );
Milestone Sales Alert
Emails the admin when a specific download has been sold X times.
Commissions payment_id email tag
This adds support for the {payment_id} email tag to Commissions Notifications
Untitled Snippet
function youtube_dashboard() { $api_key = "AIzaSyBzzf22Vs5sMf1eoCuhN3-0Qtnj0EKu7Bk"; $channel_id = "102319916649-hmjdaecid7f96ql384nd80ie8mn13fjj.apps.googleusercontent.com"; // ganti channel kamu $url = "https://www.googleapis.com/youtube/v3/channels?part=snippet,statistics&id=$channel_id&key=$api_key";…
Untitled Snippet
add_filter( 'woocommerce_product_single_add_to_cart_text', 'saphie_custom_add_to_cart_text' ); add_filter( 'woocommerce_product_add_to_cart_text', 'saphie_custom_add_to_cart_text' ); function saphie_custom_add_to_cart_text() { return 'ADD TO BAG'; }
Customize the error message shown on the WPForms Password Reset form when the reset link is invalid or expired
/** * Customize the error message shown on the WPForms Password Reset form * when the…