/* Display Adsense Ads inside your gallery images lightbox * * @link https://enviragallery.com/docs/display-adsense-ads-in-lightbox/ */ add_filter( ‘envirabox_inner_below’, ‘envira_add_ads’, 11, 2 ); function envira_add_ads( $template, $data ){ //Replace my-ad-script-here with your actual Adsense Ad script $template .=’ my-ad-script-here ‘; return $template; }Continue reading
function mp_membership_renewal_date() { if (!is_user_logged_in()) { return ‘You need to be logged in to view this information.’; } global $wpdb; $user_id = get_current_user_id(); // Query to get all active MemberPress transactions for the current user $transactions = $wpdb->get_results($wpdb->prepare( “SELECT txn.*,…Continue reading
function mp_membership_status() { if (!is_user_logged_in()) { return ‘You need to be logged in to view this information.’; } global $wpdb; $user_id = get_current_user_id(); // Query to get all active MemberPress transactions for the current user $transactions = $wpdb->get_results($wpdb->prepare( “SELECT txn.*,…Continue reading
/* Adding Date, Author, Category, Taxonomy To Featured Content output * * @link https://enviragallery.com/docs/adding-date-author-category-taxonomy-to-featured-content/ */ function envira_fc_date_terms( $content, $posts, $data, $post ) { if ( isset($data[‘config’][‘id’]) && !empty($data[‘config’][‘id’]) ) { $gallery = get_post( intval( $data[‘config’][‘id’] ) ); } // Build…Continue reading
function mp_custom_membership_info() { if (!is_user_logged_in()) { return ‘You need to be logged in to view this information.’; } global $wpdb; $user_id = get_current_user_id(); // Query to get all active MemberPress transactions for the current user $transactions = $wpdb->get_results($wpdb->prepare( “SELECT txn.*,…Continue reading
function mepr_account_nav_courses_link($link) { if (current_user_can(‘administrator’)) { // Set the user-role-based condition return ‘/admin-courses/’; // If the user matches the user-role-based condition, apply this URL } else { return ‘/user-courses/’; // If the user DOESN’T match the user-role-based condition, apply this…Continue reading
function mepr_account_nav_courses_link($link) { // Change the link URL from the default to the new courses URL return ‘/courses/’; } add_filter(‘mepr-account-nav-courses-link’, ‘mepr_account_nav_courses_link’);Continue reading
add_action(‘admin_head’, function() { echo ‘ ‘; });Continue reading
add_filter( ‘wp_calculate_image_srcset’, ‘__return_false’ );Continue reading
/** * Shortcode [targets_priority] * Displays an improved Bootstrap table with color-coded progress bars/badges. */ function crx_targets_priority_shortcode($atts) { if (!is_user_logged_in()) { return “ Please log in to see your priority ranking. “; } global $wpdb; $T = crx_get_targets(); $user_id =…Continue reading