Pricing table not working

Home Forums Legacy Support Support queries Setup issues Pricing table not working

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #167752
    bio
    Spectator
    Hi, Like in your demo (one instructor)  I would like to create 3 pricetables on the homepage. But my page is only showing test: [pmpro_levels] or [vibe_pmpro_levels] in stead of the tables like in your demo. Can you help me to present the membershiplevels the same as in your demo (http://preview.themeforest.net/item/wplms-learning-management-system/full_screen_preview/6780226?_ga=2.98332888.613529484.1530355900-1288307453.1511015564)?   Many thanks.
    #167875
    Mark Morgan
    Spectator
    Hello, Please add the below given php code in your wplms-customizer Plugin-> wplms-customizer.php file.   if (!function_exists('vibe_pmpro_levels')) { function vibe_pmpro_levels( $atts, $content = null ) { $pmpro_levels_page_id = get_option('pmpro_levels_page_id'); if(!is_numeric($pmpro_levels_page_id)) return; global $pmpro_page_name; require_once(PMPRO_DIR . "/preheaders/" . $pmpro_page_name . ".php"); global $pmpro_page_name; ob_start(); if(file_exists(get_stylesheet_directory() . "/paid-memberships-pro/pages/" . $pmpro_page_name . ".php")) include(get_stylesheet_directory() . "/paid-memberships-pro/pages/" . $pmpro_page_name . ".php"); else include(PMPRO_DIR . "/pages/" . $pmpro_page_name . ".php"); $return = ob_get_contents(); ob_end_clean(); return $return; } add_shortcode('vibe_pmpro_levels', 'vibe_pmpro_levels'); }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Pricing table not working’ is closed to new replies.