Search results for: admin
WooCommerce Product Settings: Enabling Loop Custom Discount Options with Checkbox and Input Field – No Plugin
Here’s an explanation of the features we are going to add using the code snippet in…
WooCommerce Product Settings: Enabling Custom Discount Options with Checkbox and Input Field First set quantity only – No Plugin
Post More Detail Here’s an explanation of the features we are going to add using the…
Helper functions to make generating WordPress post type labels and taxonomy labels easier
Generate post type and taxonomy labels easily by specifying the singular and plural version of the…
Apply Coupon when a radio button is clicked on The WooCommerce Product Page
Apply Coupon when a radio button is clicked on The WooCommerce Product Page
Apply discount on the cheapest item in WooCommerce
Apply discount on the cheapest item in WooCommerce
Disable a Payment Gateway for a country on WooCommerce Checkout Page
Disable a Payment Gateway for a country on WooCommerce Checkout Page
Untitled Snippet
// Disable Gutemberg add_filter( 'use_block_editor_for_post', '__return_false', 10 );
Default Featured Image
Add a setting in Media for a default featured image for all posts.
WPCode Functions
For the WPCode plugin interface
MemberPress: Send Failed Transaction Notice When Admin Sets Transaction to Failed
When a website administrator changes the member’s transaction status to Failed in the WordPress Dashboard >…
Load all Customizer "Additional CSS" in Block Editor
The CSS added to the frontend via the Customizer does not get added to the block…
Add Textbox To Donation Form
Adds a textbox to a donation form - for example, to collect a referral code.
Note Orders
add_filter( 'manage_edit-shop_order_columns', 'custom_shop_order_column', 90 ); function custom_shop_order_column( $columns ) { $ordered_columns = array(); foreach( $columns as…