Category: Admin
MemberPress: Extend Grace Period for Renewals
function mepr_extend_renewal_grace_days( $days ) { return 1; } add_filter( ‘mepr-grace-expire-days’, ‘mepr_extend_renewal_grace_days’ );Continue reading
G-T2XZDKK0J5Continue reading
G-T2XZDKK0J5Continue reading
Mail Chimp
HubSpot tracking code
bp-custom.php Multiblog
define( ‘BP_ENABLE_MULTIBLOG’, true );Continue reading
Output og:image that uses the Large Size Image
add_filter( ‘aioseo_thumbnail_size’, function( $imageSize ) { return ‘large’; } );Continue reading
Removing Otter Pro upsell notification
$notifications = get_option( ‘themeisle_blocks_settings_notifications’, array() ); if ( ! isset( $notifications[‘dashboard_upsell’] ) || $notifications[‘dashboard_upsell’] !== true ) { $notifications[‘dashboard_upsell’] = true; update_option( ‘themeisle_blocks_settings_notifications’, $notifications ); }Continue reading