Skip to content

Instantly share code, notes, and snippets.

View poripa's full-sized avatar

Tate poripa

  • Tokyo
View GitHub Profile
@poripa
poripa / um-fields.php
Created February 3, 2017 08:23
WPML-Ultimate Member Compatibility: Display the translated placeholder labels and selection strings on the frontend
<?php
// to fix the placeholder translation problem, changed placeholder="'.$placeholder. to placeholder="'.__( $placeholder, UM_TEXTDOMAIN ). also added the code at 2520 to 2525.
class UM_Fields {
function __construct() {
$this->editing = false;
$this->viewing = false;
$this->timestamp = current_time('timestamp');
@poripa
poripa / sp-gallery.php
Created January 8, 2017 09:09
Ultimate Member Gallery: Hide the Gallery Tab on the profile page of specific roles
@poripa
poripa / um-members.php
Created January 8, 2017 09:06
Ultimate Member Directory: Members who haven't logged in for more than 6 months do not appear in the member directory
<?php
class UM_Members {
function __construct() {
add_filter('user_search_columns', array(&$this, 'user_search_columns'), 99 );
add_action('template_redirect', array(&$this, 'access_members'), 555);