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()) ); }…

MemberPress: Change the Member’s User Role After a Specific Membership Subscription Cancelation

The code automatically changes the member's user role once the subscription is canceled. This will be…

MemberPress: Set the order of payment methods

This code lets you set the order that the payment gateways that appear on the MemberPress…

MemberPress: Adjust Membership Price Based on Membership ID on Checkout Page

This snippet modifies the price of a specific membership (based on the membership ID) in MemberPress.…

تغيير عمله

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

Set featured image aspect ratio

Used for featured image in query loop or any other image the class is applied to

Modify LLMS Title for a Specific Post

This snippet modifies the title shown in llms.txt and llms-full.txt for a specific post ID.

<10

Disable recurring renewal notices for specific download

Allows renewal notice emails to be disabled for subscriptions including a certain download.

Remove Free Text

Remove the word "free" from free products

MemberPress: Add An Email Parameter That Displays A Link To The Sub-Account Signup Page

This code will create a new email parameter named {$subaccount_link}. This email parameter can be added…

MemberPress: Adjusting Paywall Cookie Expiry Time

This code snippet modifies the default expiration period (30 days) for the MemberPress paywall cookie. The…

1 70 71 72 73 74 223