Skip to content

Instantly share code, notes, and snippets.

View MaryOJob's full-sized avatar
🏠
Working remotely 😈

Mary Job MaryOJob

🏠
Working remotely 😈
View GitHub Profile
@MaryOJob
MaryOJob / pmpro_polylang_translate_notloggedintext.php
Created August 31, 2021 13:49 — forked from dparker1005/pmpro_polylang_translate_notloggedintext.php
Translates the PMPro Not Logged In text while using Polylang.
<?php
// Copy from below here...
/*
* Translates the PMPro Not Logged In text while using Polylang.
* Currently set up to use US English and Spain Spanish.
*/
function my_pmpro_polylang_translate_notloggedintext( $value, $options ) {
switch ( get_locale() ) {
@MaryOJob
MaryOJob / disable_pmpropbc_send_invoice_email.php
Created September 2, 2021 17:47 — forked from dparker1005/disable_pmpropbc_send_invoice_email.php
Disables sending a invoice emails for check orders whenever an order is saved in success status.
<?php
/**
* Disables sending a invoice emails for check orders whenever an order is saved
* in success status.
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
@MaryOJob
MaryOJob / disable_email_template_memberlevel.php
Last active September 6, 2021 21:04 — forked from femiyb/disable_email_template_memberlevel.php
Disable Recurring Payment Reminder Emails for Specific Levels - PMPro
<?php // do not copy this line
/**
* This recipe will disable the recurring payment email reminders for the specifc levels stated
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
@MaryOJob
MaryOJob / pmpro-change-admin-to-email.php
Last active March 20, 2025 14:27 — forked from andrewlimaza/pmpro-change-admin-to-email.php
Add bcc for PMPro admin emails [Paid Memberships Pro]
<?php // do not copy this line
/**
* Add bcc for PMPro admin emails
* Follow this guide to add custom code to your site - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_pmpro_email_headers_admin_emails($headers, $email) {
// bcc emails already going to admin_email
if (strpos($email->template, '_admin') !== false) {
@MaryOJob
MaryOJob / my-pmpro-change-admin-email.php
Last active September 28, 2021 09:45 — forked from andrewlimaza/my-pmpro-change-admin-email.php
Change the admin email to three different recipients for all Paid Memberships Pro admin emails - Useful if you want your team to be notified on Member Notifications
<?php // do not copy this line
/**
* Change the email address to three other recipients for all admin related emails in Paid Memberships Pro.
* Follow this guide to add custom code to your WordPress site - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_pmpro_change_admin_to_email( $user_email, $email ){
if( strpos( $email->template, "_admin" ) !== false ) {
$user_email = '[email protected], [email protected], [email protected]';
@MaryOJob
MaryOJob / my_pmpro_aweber_custom_fields.php
Last active October 26, 2021 11:45 — forked from strangerstudios/my_pmpro_aweber_custom_fields.php
Send custom field(s) from WordPress to Aweber through the PMPro Aweber addon
<?php // do not copy this line
/*
* This example sends two custom fields from WordPress to AWeber through the PMPro AWeber addon.
* Go to Aweber to create your custom field(s)
* Make sure the custom field in aweber matches the input name for your custom fields added via the Register Helper extension
* Add this code to your active theme's functions.php or a custom plugin: https://www.paidmembershipspro.com/how-to-add-code-to-wordpress/
*/
function my_pmpro_aweber_custom_fields( $fields, $user ) {
@MaryOJob
MaryOJob / directory.php
Created February 16, 2022 11:53 — forked from ronalfy/directory.php
Paid Memberships Pro Directory Customization
<?php
/*
This shortcode will display the members list and additional content based on the defined attributes.
*/
function pmpromd_shortcode($atts, $content=null, $code="")
{
// $atts ::= array of attributes
// $content ::= text within enclosing form of shortcode element
// $code ::= the shortcode found, when == callback name
// examples: [pmpro_member_directory show_avatar="false" show_email="false" levels="1,2"]
@MaryOJob
MaryOJob / pmpro-limited-time-registration.php
Created March 11, 2022 18:11 — forked from JarrydLong/pmpro-limited-time-registration.php
Restrict a membership level to no longer allow sign ups after a given date (limited time offer) using Paid Memberships pro
<?php
/* Checks to see if a registration is happening after a given date; if so, prevent registration and stop new signups for the level/no longer display the level on the levels page
*/
global $pmproml_start_date, $pmproml_end_date, $pmproml_limited_level_id;
$pmproml_limited_level_id = array( 1, 2, 4 ); // change to the ID of the limited-time membership level
$pmproml_start_date = "2019/04/01"; // change to the date registration starts, in YYYY/MM/DD format
$pmproml_end_date = "2019/04/30"; // change to the date registration ends, in YYYY/MM/DD format
@MaryOJob
MaryOJob / pmpro-extra-fields.php
Created September 22, 2022 21:45 — forked from ronalfy/pmpro-extra-fields.php
PMPro - Add Extra Fields - Sync with Add User from Admin
<?php
/**
* Modified customer gist. Adds profile fields and saves them.
* Compatible with Add User from Admin Add-On
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
@MaryOJob
MaryOJob / my-pmprorh-extra-fields-admin-email.php
Created September 29, 2022 17:05 — forked from ipokkel/my-pmprorh-extra-fields-admin-email.php
Add Register Helper fields to the admin checkout notification email.
<?php
/**
* Add Custom Registration Fields and their values to the Admin Checkout Notification Email.
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/