Search results for: admin
Change Country Field To Hidden
Change the Country field in the donation form to a hidden field with a hard-coded default…
Register New Donation Field
Adding a new field (in this example it is a National ID Number). Explains all the…
Allow Manual Donations Without Email
Allow donors to be be added without an email address.
FlowMattic: Expand Workflow Description Box.
This snippet runs in the WordPress admin area and removes any line-clamping on the “.css-iIDhdyB” element…
Website Unavailable
Used when client is not current with payments or has moved their site.
Lock users if website is idle for certain period ウェブサイトが一定期間アイドル状態の場合にユーザーをロックするAn updated version.
Lock users if website is idle for certain period ウェブサイトが一定期間アイドル状態の場合にユーザーをロックする An updated version. After Adding the…
How To Allow Shop Manager to Manage Feeds?
#-- Allow Shop Manager to access Product Feed menus --# function allow_feed_menus_to_shop_manager() { return 'manage_woocommerce'; }…
Add Last Modified Column
Display the post last modified date in the admin.
Prevent AIOSEO from changing the category to the primary one
This snippet will prevent AIOSEO from changing the category to the primary one.
MFP > Deploy Show & Get Data
add_action('acf/save_post', 'add_show_children'); function add_show_children($post_id) { if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return $post_id; if (!wp_is_post_revision($post_id) && 'show' ==…
Update Donation Summary
Often you might want to change the output of where a donation summary is outputted for…
Local pickup custom percentage discount in WooCommerce checkout
Offering discounts for local pickup is a great way to attract customers who are looking for…
to add WooCommerce WhatsApp Product Enquiry. NO API Used.
Post Intro How to Add a WooCommerce WhatsApp Enquiry Button (No API Used) In this blog…
Sort Events Category by Publish Date (Oldest First)
function sort_posts_by_category($query) { if ($query->is_main_query() && !is_admin()) { $oldest_first_categories = array(1483,1486,1485,1484,1482,1391); // Replace with the IDs…
Add Radio Boxes To Donation Form
/** * Add a collection of radio selections to the donation form. * * This snippet…