Change Amount Donated

Change what amount is shown as donated for a particular campaign.

Enable Comments

Adds comment support to the download post type

Disable Pages and Post from Appearing in Wordpress Search Results

Using WPCode, apply the following code snippet to effectively disable certain pages from appearing in the…

WP Simple Pay: Change Custom Amount Field Input Type

Changes the `type` attribute on the `input` tag. This helps some mobile keyboards have a better…

CHARITABLE_DEBUG mode

This code snippet will define the `CHARITABLE_DEBUG` constant as `true`. See https://www.wpcharitable.com/documentation/charitable-debug-mode/.

Make Product Non Purchasable for Wholesale Customer if Product Stock is Less Than Certain Amount

This snippet will allow you to make a product unavailable for purchase by wholesale customers if…

Download Details Featured Image

Add the featured image to output of Download Details widget

WP Simple Pay: Google GA4 Payment Conversion Tracking

Execute a script the first and only time a payment confirmation is viewed.

تغيير عمله

/** * Change a currency symbol */ add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency )…

Set Fixed Donation Amount

Automatically set the donation amount and recurring period for donations.

GOOGLE AD

google.com, pub-8822076209599189, DIRECT, f08c47fec0942fa0

WooCommerce Wholesale Lead Capture Re-send Email Button in User Profile

This snippet will add a resend email button under User profile.

Post class update

add_filter( 'body_class', function( $classes ) { $acc_type=tmwp_get_user_role(); if (!$acc_type) $acc_type='anonymous'; return array_merge( $classes, array('acc-type-'.strtolower($acc_type),tmwp_get_page_class()) ); }…

1 65 66 67 68 69 215