How do I remove the navigation at the top of the Credit Card payment page? I think it confuses people.
Did you ever figure this out? When they are in the order process, I would like them to only see order type buttons, not all the nav buttons for the membership area. My guess is that it could be done with a simple "if statement" in site.php, but it's not simple to me. Any suggestions greatly appreciated.
You need to edit some templates to achieve it. Please edit files amember/application/default/views/signup/signup.phtml amember/application/cc/views/cc/info.phtml and on top of these files add the following code PHP: <?php $this->layoutNoMenu = true; ?> Actually I recommend to use themes instead of alter default templates. Please have a look http://www.amember.com/docs/Themes_and_Templates
Ceasar, Thank you for the code snippets. That is very helpful. I struggled for hours trying to figure it out on my own. Also, I have a question about custom themes (as you are instructing). I didn't want to hijack this thread, so I put the question here: http://www.amember.com/forum/threads/question-about-creating-a-simple-custom-theme.19090/
Works great. I also added snippet in... /amember/application/cart/views/cart/_basket.phtml ..., which took the nav menu out of the basket. I used custom theme as instructed: /members/application/default/themes/custom/cart/_basket.phtml