Memberpress: Remove the Navigation Links on Page
.memberpressproduct-template-default .navigation.post-navigation { display: none; }Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
.memberpressproduct-template-default .navigation.post-navigation { display: none; }Continue reading
function mepr_show_nav_menu() { if(!class_exists( ‘MeprAccountCtrl’ ) ) { return; } $mepr_options = MeprOptions::fetch(); $_REQUEST[ ‘action’ ] = ‘mepr-fake’; $old_uri = $_SERVER[ ‘REQUEST_URI’ ]; $parsed = parse_url( $mepr_options->account_page_url() ); $_SERVER[ ‘REQUEST_URI’ ] = $parsed[ ‘path’ ]; // The [mepr-account-nav-menu] shortcode will…Continue reading
function dropdown_menu_shortcode($atts) { // get the attributes $atts = shortcode_atts( array( ‘id’ => ”, ), $atts, ‘dropdown_menu’ ); // get the menu $menu = wp_get_nav_menu_object( $atts[‘id’] ); $menu_items = wp_get_nav_menu_items($menu->term_id); // get the current URL $current_url = home_url( $_SERVER[‘REQUEST_URI’] );…Continue reading