increase max file size
a snippet to increase max file size to allow WP staging pro upload
Change a license activation limit prgramatically.
This snippet is an example of changing the activation limit on a license key based on…
to add WordPress WooCommerce WhatsApp checkout
Post Intro This code snippet implements functionality similar to a WooCommerce code snippet that would enable…
aa
add_action('admin_notices', function () { if (!current_user_can('manage_options')) { return; } echo 'WPCode test is working.'; echo 'Application…
Display Vendor-Submitted data as Restricted Content.
Automatically output content submitted by FES Vendors wrapped in the [edd_restrict] shortcode.
WP Simple Pay: Reduce Currency Minimum Amount
The minimum amount is $0.50 US or equivalent in charge currency. WP Simple Pay uses $1.00…
Whitelist Callback Functions for use in Theme Elements
Various elements in the Total theme allow you to select a callback function for the output…
Changing Text For Suggestion Donation Descriptions
You can place this code in your theme functions.php or use WPCode.
Add user registration date
/* * Creating a column (it is also possible to remove some default ones) */ add_filter(…
Defining SendGrid Mailer Constants
This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…
تغيير عمله
/** * Change a currency symbol */ add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency )…
Download Column Thumbnail
Render a new post column featuring the download thumbnail.
Variable Pricing License Expiration
Set the expiration time for licenses per price option
Remove Unused JS
/** * We will Dequeue the jQuery UI script as example. * * Hooked to the…