use a Sidebar

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 8 reply threads
  • Author
    Posts
    • #17795
      info17
      Participant

      Hi admins, new day new question:) sorry..
      i like to use my own sidebar for like a help menu. its possible to show wcfm-main-content with my own sidebar. and if a user click inside the wcfm menu the sidebar shows up everytime? thank you and have a nice day.

    • #17798
      WCFM Forum
      Member

      Hi,

      Good Morning 🙂

      I am not very clear with your requirement.

      Let me tell you what you can do with WCFM Menus –
      1. Totally disable WCFM menu from WCFM Admin setting -> Dashboard
      2. Add/edit/delete any WCFM menu items using some custom code

      Are you looking to add a custom “Help Menu” item?

      Feel free to reach us anytime for any assistance!

      Thank You
      Simha

    • #17799
      info17
      Participant

      hi again, i mean to put a normal standard sidebar on the left side from content..
      wc ultimate as page content and an normal sidebar on the left.. (on my theme standard sidebar is on the left side)
      if i try now to add your shortcode to a page with sidebar the standard sidebar not shoes up.. is there a way to show it..
      i need no changes etc. in the wc ultimate menu.. just like to show up the standard sidebar check printscreen 🙂 (content is wc ultimate shortcode)
      thank you

    • #17808
      info17
      Participant

      wired is when i make a normal page without your shortcode inside the sidebar display normal, when i put your shortcode inside the page is full width and no sidebar.. may you have a solution for this 🙂

    • #17810
      WCFM Forum
      Member

      Hi,

      I understand your requirement.

      Actually, WCFM uses its own template, it’s without sidebar. Full page width is preferable for Dashboard.

      If you really want to disable this and want to use your theme template then kindly add this code to your theme/child theme’s functions.php

      function wcfm_custom_dashboard_template( $page_template ) {
      	global $WCFM;
      	if ( wc_post_content_has_shortcode( 'wc_frontend_manager' ) && is_user_logged_in() ) {
      		remove_action( 'page_template', array( $WCFM->frontend, 'wcfm_dashboard_template' ), 10 );
      	}
      	return $page_template;
      }
      add_action( 'page_template', 'wcfm_custom_dashboard_template', 9 );

      Please know is this fulfill your requirement or not!

      Thank You

    • #17811
      info17
      Participant

      oh men thank you so much :):)

    • #17812
      WCFM Forum
      Member

      Hi,

      Welcome 🙂

      Is this works for you perfectly?

      Thank You

    • #17813
      info17
      Participant

      yep:)

    • #17818
      WCFM Forum
      Member

      Great, thanks for confirming me this.
      I am closing this thread for now.

      Feel free to reach us anytime.

      Thank You
      Simha

Viewing 8 reply threads
  • The topic ‘use a Sidebar’ is closed to new replies.