• Skip to primary navigation
  • Skip to main content

RocketGeek

Home of WP-Members, The Original WordPress Membership Plugin

  • WordPress Plugins
    • WP-Members
      • FAQs
      • Quick Start
      • Documentation
      • Extensions
    • Advanced Options
      • Documentation
      • Purchase the Plugin
      • Get the Pro Bundle
    • Download Protect
      • Documentation
      • Purchase the Plugin
      • Get the Pro Bundle
    • Invite Codes
      • Documentation
      • Purchase the Plugin
      • Get the Pro Bundle
    • MailChimp Integration
      • Documentation
      • Purchase the Plugin
      • Get the Pro Bundle
    • PayPal Subscriptions
      • Documentation
      • Purchase the Plugin
      • Get the Pro Bundle
    • Salesforce Web-to-Lead
    • Security
      • Documentation
      • Purchase the Plugin
      • Get the Pro Bundle
    • Text Editor
      • Purchase the Plugin
      • Get the Pro Bundle
    • User List
      • Documentation
      • Purchase the Plugin
      • Get the Pro Bundle
    • User Tracking
      • Documentation
      • Purchase the Plugin
      • Get the Pro Bundle
    • Memberships for WooCommerce
    • WordPass
  • Blog
    • Basics
    • Tips and Tricks
    • Filters
    • Actions
    • Code Snippets
    • Shortcodes
    • Design
    • Release Announcements
  • Store
    • Cart
    • Checkout
  • Contact
  • Log In
  • Show Search
Hide Search
Home » Search for "short code"

Search Results for: short code

wpmem_notify_filter

Description

Filters the email and some of the email settings.

Parameters

$arr
(array) (required) An array of information for the email process:

  • subj – the email subject
  • body – the email body/content
  • user_id – the user’s ID
  • user_login – the user’s username
  • user_email – the user’s email address
  • blogname – the name of the blog (get_option ( ‘blogname’ ))
  • user_ip – the user’s IP address at registration
  • reg_link – the URL of the page the user registered on
  • act_link – the link to the user’s profile to activate the user
  • exp_type – the user’s subscription type (PayPal Extension Only)
  • exp_date – the user’s expiration date (PayPal Extension Only)
  • wpmem_msurl – the URL of the User Profile shortcode page, if set
  • do_shortcodes – true|false boolean to enable the WP-Members email shortcodes (default: true)
  • add_footer – true|false boolean to enable adding the footer to the email (default: true)
  • disable – true|false boolean to disable sending the email (default: false)
  • headers – the email headers
  • admin_email – the email to send notification to (pre_filtered with wpmem_notify_addr)

$wpmem_fields
(array) (optional) The WP-Members fields array.

$field_data
(array)(optional) An array of the registration data.

Usage

Changelog

Introduced in version 2.9.8

Source

wpmem_email_filter is located in inc/email.php

WP-Members 3.0.9

Chad Butler · Jan 11, 2016 ·

This article is provided free. Find out how you can get full access to premium content, including how-to articles and support forums, as well as priority email support and member exclusive plugin extensions..

 

WP-Members 3.0.9 contains a number of small additions and a few fixes.  It is primarily a feature release as the fixes are primarily improvements.  Continue Reading →

Generate Random Display Name Part 2

Chad Butler · Dec 12, 2015 ·

This tutorial is an extension of the tutorial Generate Random User Display Name and Nickname that describes a process to generate random display names for users. In this tutorial we will explore how to add a process to the User Profile page that would allow users to select a new randomly generated display name from a list of choices.

The concept here is that we don’t want users selecting their own display names so that they fit within a specific rule set.  Preventing the user from choosing their own display name that fits the rule set makes it easier to manage.

This is a good tutorial for anyone that wants to build more complex user dashboards, but to implement it you should familiarize yourself with the part 1 of the tutorial as this will only be extending that process.  Continue Reading →

WP-Members version 3.0 released

Chad Butler · Jun 23, 2015 ·

This article is provided free. Find out how you can get full access to premium content, including how-to articles and support forums, as well as priority email support and member exclusive plugin extensions..

 

I have been waiting a long time to finish and release WP-Members 3.0 and that day has finally come!

This is a major update and will be but the beginning of a lot of updates and improvements in the plugin.

Before I go into details for the update, please let me be clear – this is a major version release, not an incremental update. So please, test the update prior to upgrading a production site.  While I always do my best to be responsive to issues, especially when updating, keep in mind this plugin now has more than 60,000 active installs, so it can get hectic around version release time.

When in doubt, test it first!  And if you have questions, let me know.

Continue Reading →

wpmem_ul_user_rows

Description

This filter allows you to filter each user’s data to be displayed in the user list as an array.

Parameters

$rows
(array) (required) An array of the user’s data.

Example

add_filter( 'wpmem_ul_user_rows', 'my_ul_user_rows' );

function my_ul_user_rows( $rows ) {

    /*
     * This example adds a row to the user's profile in the 
     * main user list that links to a hypothetical contact 
     * page that needs the user's ID (which is a field 
     * available in the array).
     */
     
     $link = site_url() . 'contact/?contact_id=' . $rows['ID'];
     
     $name = $rows['first_name'];
     
     $rows['link'] = '<a href="' . $link . '">' . $name .  '</a>';

    return $rows;
}

Changelog

Introduced in version 1.5.

Source

wpmem_ul_user_rows is located in includes/class-wp-members-user-list.php

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 32
  • Page 33
  • Page 34
  • Page 35
  • Page 36
  • Interim pages omitted …
  • Page 52
  • Go to Next Page »

Ready to get started?

Join Today!

© 2025 · butlerblog.com · RocketGeek is built using WordPress, WP-Members, and the Genesis Framework

  • butlerblog.com
  • WP-Members Support Subscription
  • Terms of Service
  • Privacy Policy
  • Refund Policy