/* Change the Homepage URL inside Envira Breadcrumbs * * @link https://enviragallery.com/docs/how-to-change-the-homepage-url-inside-envira-breadcrumbs/ */ add_filter( ‘envira_breadcrumbs_data’, ‘test_envira_breadcrumbs_data’, 10, 5 ); function test_envira_breadcrumbs_data( $breadcrumbs, $album_id, $gallery_id, $separator, $album_post_id ) { //Change the title and url to your own $breadcrumbs[0][‘title’] = ‘Envira Gallery…Continue reading
/* 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