-
Author
-
February 16, 2018 at 19:42 #188895
liveforgym
ParticipantHello there,
I would like to find out how to disable the default registration process and only go through paid memberships pro. I would like to keep the Facebook registration, but it all has to go through paid memberships pro. For now the membership is free, but I will add a premium membership later where members can upgrade their account. When I set the login page, it shows two signups. One for wordpress and one for paid memberships pro. Please could you help me with changing it to only register through paid membership pro.
Your assistance is greatly appreciated.
Great theme by the way. It is such a good website to work with.
Kind regards,
ChrisFebruary 17, 2018 at 16:55 #188940Kieran_SQ
ModeratorHi Chris,
If you would like to disable the BuddyPress registration and let PMPro handle this exclusively you can go to WP Admin > Settings > BuddyPress > Pages and unset the values for register and activation.
You can then use custom menu items to ‘Register’ and direct them to your PMPro pricing page.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 1, 2018 at 23:09 #190247liveforgym
ParticipantHi there,
My apologies for my delay in replying.
Ive done what you’ve said. However, there are some things I would like to find out.
How do I create a drop down option like http://www.bodybuilding.com (if you click on the user icon at the top, a drop down menu appears).
I would like the facebook registration to be a part of the registration, but it needs to go through the free member option in paidmemberships pro. Right now Ive set the registration to go through membership levels page. As you will see if you click on the register pages.
I’m having trouble with my login page at the top menu. It directs to the gd-login page. Ive deleted this plugin, but it still directs there.
I will be creating a premium section (well Ive already created the membership level but hidden it from registration) once Ive decided what will be included.
So what I would like is the following:
1. To have all registrations go through paidmemberships pro. This includes registration via Facebook. If people don’t want to register through Facebook, then the registration would be the default paidmembershipspro page (which would be the free member as it is now). When someone registers now, it goes through wordpress, then I have to assign their membership level. I want their membership to be assigned by default. Whether it is registration through Facebook or via membership level page. No registration option anywhere via wordpress.
2. To have a drop down from the top menu like bodybuilding.com.
3. To have the same features as a wordpress registration, such as password reset.
4. To have everything handled through paidmembershipspro.
5. I will create the GoPricing tables for each member level. The levels will be Free, Premium and Trainer. For now only the free member is available (as you can see on the site right now), but I will add the premium membership later (well open it up for registration later is what I mean). The trainer option will always be hidden, as this is only for those that are on my main site https://www.liveforgym.com/personal-trainers/. They all register as free members (either via facebook or normal paidmembershipspro registration), then I assign the Trainer level. This is not an option for the public via direct registration or level upgrade. Free members can upgrade to premium (as the default upgrade option allows), but they cannot upgrade to trainer. The trainer level will of course have the highest level as they need to see all pages. They are also given moderator privileges for the site.
I apologize for this being a long message. I understand if you cannot explain to me how to do this, but maybe you could tell me what your cost would be. I am running a very tight budget, so I would like to know what you would charge.
I have a large following that are waiting for this site to be ready, so I would appreciate the help. I have two licenses for this theme as I find it the best Ive ever seen and will always use it.
Looking forward to hearing from you.
Kind regards,
ChrisMarch 2, 2018 at 00:41 #190255Kieran_SQ
ModeratorHi,
I will assign this ticket to a higher level of support to assist you in your query. They’ll be in touch as soon as they can, Monday to Friday, East European Time.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 2, 2018 at 13:09 #190282liveforgym
ParticipantHi there,
Thank you for that. I will wait for their reply.
I wanted to ask. I am having some troubles with my slider on the homepage. I have added it, but there is a gap at the top with a + sign. Like I can add an element.
community.liveforgym.com
Please could you tell me why it is doing that.
Kind regards,
ChrisMarch 5, 2018 at 15:38 #190561Radu
ModeratorHi,
For the gd-login link from top menu , you will have to remove the menu item that links to gd-login from wp-admin -> appearance- > menus -> top menu -> remove login page, then look in top right of the page click on “Screen Options” and check KLEO then from KLEO section add login instead the old one.
1. You can use the next snippet that will lock any new member if it’s logged and he has no membership to levels page
COPY CODEadd_action( 'template_redirect', 'my_membersip_restrict' ); function my_membersip_restrict() { global $pmpro_pages, $post; if ( is_user_logged_in() && !pmpro_hasMembershipLevel() ) { if (isset($post->ID) && !in_array($post->ID, $pmpro_pages)) { wp_redirect( pmpro_url() ); } } }The snippet will be pasted in wp-content/themes/kleo-child/functions.php
NOTE : The Kleo Child Theme needs to be installed and activated.
2. To can have a similar menu to that you will need to enable megamenu for child elements

3. I saw those on your main menu, did you had solved that ?
4. see 1
You can link only a membership level using this kind of link http://rdu.local/kleo/membership-account/membership-checkout/?level=1 replace 1 from the end with the afferent level ID that you want to be used only for trainers.
With all of those explained you should be able done your project without spending money.
—
Reply 2:For the gap from there make sure that there is no padding or margin in the row or column where the slider it’s placed and in revolution slider settings check to be auto.

Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 6, 2018 at 18:34 #190703liveforgym
ParticipantHi there,
Thanks for your reply. I have installed the child theme and its changed a lot of me settings. Where do I need to add the code snippet you have given me to the functions.php file? Also where do I edit it. via FTP or through WordPress?
Ive selected to make the login link at the top a mega menu, but it does not display a drop down form?
I’m sorry for the questions. I am not a programmer. I rely on options from the back end.
Kind regards,
ChrisMarch 7, 2018 at 12:42 #190777liveforgym
ParticipantHi there,
Ive also done what you’ve suggested regarding the slider. It still doesn’t work. It did work when I activated the child theme, but now it does not.
Also could you please help me with where I am supposed to place that code snippet. And I have selected the mega menu option, but it does not display?
Kind regards,
ChrisMarch 7, 2018 at 17:10 #190803Radu
ModeratorHi,
Code can be pasted from wp-admin -> apeparance -> edtor -> kleo-child- > functions.php or directly via ftp in the same file ( wp-content/themes/kleo-child/functions.php ).
Mega menu works only that menu has submenus and you should check mega menu for the parent, if you have multiples parents and child enable that only for parents.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 7, 2018 at 17:17 #190804liveforgym
ParticipantHello,
Sorry what I meant was where in the functions.php file should I place the code. At the bottom or in the middle somewhere?
I don’t understand what you mean by the Mega menu. Ill see if I can fix it myself.
Kind regards,
ChrisMarch 7, 2018 at 17:43 #190807Radu
ModeratorAt the end,
For the megamenu see the screenshot

Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 7, 2018 at 17:48 #190810liveforgym
ParticipantHi Radu,
Ok ill past it there.
As for the mega menu, I have already done what the screenshot says, but nothing happens. It still gives a login popup?
Kind regards,
ChrisMarch 7, 2018 at 17:53 #190811Radu
ModeratorHi,
The megamenu cannot prevent the pop-up to be shown, so there shouldn’t be a problem.

Hover features : https://seventhqueen.com/themes/kleo/pinterest/
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 7, 2018 at 18:17 #190824liveforgym
ParticipantOK maybe you didn’t understand the first question.
I wanted the form to appear in the menu as what it is in bodybuilding.com when you click on the user icon.
Kind regards,
ChrisMarch 7, 2018 at 18:32 #190825Radu
ModeratorWhat form!? the search input ? cuz in their header it’s a search input.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 7, 2018 at 18:50 #190831liveforgym
ParticipantHi there,
As per the screenshot
Kind regards,
ChrisMarch 8, 2018 at 16:07 #190936Radu
ModeratorThere is no quick solution to make that in kleo or similar.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 8, 2018 at 16:20 #190938liveforgym
ParticipantNo problem,
I thought as much.
Kind regards,
ChrisMarch 8, 2018 at 17:38 #190958Radu
ModeratorNo problem
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.