function custom_purchase_info_shortcode() { global $wpdb; // Get the current user ID $user_id = get_current_user_id(); // Get the latest MemberPress transaction for this user $latest_transaction = $wpdb->get_row( $wpdb->prepare( “SELECT * FROM {$wpdb->prefix}mepr_transactions WHERE user_id = %d ORDER BY id DESC LIMIT…Continue reading
add_action(‘wp_footer’, function() { ?>Continue reading
function my_custom_css() { echo ‘ ‘; } add_action(‘admin_head’, ‘my_custom_css’);Continue reading
function mepr_set_default_country_script() { ?>Continue reading
function replace_text_in_price_box() { ?>Continue reading
add_action( ‘wp_footer’, function() { ?>Continue reading
function exclude_protected_memberpress_posts( $query ) { // Ensure we are not in the admin area and it’s the main query if ( ! is_admin() && $query->is_main_query() ) { // Check if we are on the repeater field context if ( function_exists(…Continue reading
function mepr_load_mp_styles() { wp_enqueue_style( ‘mepr-moove_gdpr_frontend’, ‘https://your-domain.com/path/to/your/gdpr-stylesheet.css’, array(), ‘4.15.0’ ); } // Add the action to enqueue the GDPR stylesheet on the frontend add_action( ‘wp_enqueue_scripts’, ‘mepr_load_mp_styles’ );Continue reading
// Author: Sumaiya, Clikup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-25275 function trigger_flowmattic_action_on_landing() { // Get the ‘cid’ and ’email’ parameters from the URL $cid = isset($_GET[‘cid’]) ? sanitize_text_field($_GET[‘cid’]) : ”; // Fetch ‘cid’ and sanitize it $email = isset($_GET[’email’]) ? sanitize_email($_GET[’email’]) : ”; //…Continue reading
if( function_exists(‘acf_add_options_page’) ) { acf_add_options_page(); } // // 1. Register ACF Field for Menu JSON add_action(‘acf/init’, function() { if( function_exists(‘acf_add_local_field_group’) ) { acf_add_local_field_group(array( ‘key’ => ‘group_menu_json_import’, ‘title’ => ‘Menu Import’, ‘fields’ => array( array( ‘key’ => ‘field_menu_json’, ‘label’ => ‘Menu…Continue reading