-
Author
Tagged: Registration Page
-
September 13, 2015 at 21:00 #77430jwchameleoncorpParticipant
Hello,
When a User registers for my website, I would like to capture their email with my Email Client Manager. I currently use Aweber for my Email Client Manager.
Is there a way a way to do this?
One thought I had was to use a Gravity Form on the Registration Page, since Gravity Form has the ability to capture the email for my Email Client Manager.
Or, if you have a better suggestion, I would be eager to hear it.
Thanks for your help.
September 15, 2015 at 14:12 #77785LauraModeratorHello, right know the best option would be your suggestion or mailchimp plugin
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
September 23, 2015 at 01:02 #79060jwchameleoncorpParticipantHi @laura
Just following up on this.
When I look at the Register Page, there is no content or code on it. So I can assume it’s pulling data from somewhere else allowing the User to enter the information and populate it to their Buddypress profile. So how do I integrate a Gravity Form to capture an email on the Register Page, while still ensuring the registration process operates normally for those that sign up?
Thanks for your insight.
Cheers.
September 24, 2015 at 04:53 #79274LauraModeratorHello, what about https://wordpress.org/plugins/newsletter-sign-up/ ?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 13, 2015 at 22:21 #82136jwchameleoncorpParticipantHi @laura
I’ve done my research and I’m going to implement this idea now, but have a couple questions before I do.
The URL for the page is http://travelcuckoo.com/register
However, when I visit that page to edit it in the Admin Dashboard, the page is blank (see attached snap shot), so there is no existing code to edit or replace with new Gravity Form code.
Also, the Register link in the WP menu has a short code like this: kleo-menu kleo-register-nav (see attached snap shot)
Here are the challenges I need to fix:
1. I want to edit the register page and add the Gravity Form, yet keep the “Login with Facebook” button and the dialogue just below it that is included on the default Register Page from KLEO (see attached snap shot). The only thing I want to replace are the form fields. Those will be provided by Gravity Forms. Everything else should remain the same.
2. How do I update the Register custom link in the WP menu to show the updated Register page, or do I even need to?
Thanks for your help Laura!
Attachments:
You must be logged in to view attached files.October 14, 2015 at 05:55 #82187jwchameleoncorpParticipantHi @laura !
Looks like I was able to recreate the code on a test registration page with the Gravity Form integrated into it instead of the default KLEO form – http://travelcuckoo.com/test-register/
However, I know that I need to get the code transferred onto the real Register Page, so what is the best way to do that since there is no code on the default Register page? – http://travelcuckoo.com/register
I want to make sure I eliminate the old code without causing problems in the functionality of the theme.
Thanks!
October 15, 2015 at 21:28 #82515LauraModeratorHello, try by going to Buddypress > Pages and do not select any register page, change it to blank or something else, then in the Register page, add your code 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 16, 2015 at 23:04 #82824jwchameleoncorpParticipantHi @laura
Just to clarify…
1. Go to the settings you instructed (see attached snap shot)
2. Select any other page in the drop down. Save settings.
3. Then go back to the the Dashboard > Pages menu, find the Register Page, then enter my code.
4. Then go back to Buddypress > Pages and re-select the Register Page in the drop down. Save Settings
Is this correct?
Thank you!
Attachments:
You must be logged in to view attached files.October 17, 2015 at 23:53 #82957LauraModeratorHello, if you want a custom register page, you shouldnt use the buddypress setitngs for page register… but as this would require to edit a lot of links that points to buddypress register page, then maybe its better to just copy the register.php inside of wp-content/registration of main theme to the child theme (create registration folder and paste it inside)
Then edit the register.php
Maybe replace the content with this
And add your gravity form shortcode like [shortcode] where it says GRAVITY-FORM-SHORTCODE-HERECOPY CODE<?php get_header( 'buddypress' ); ?> <!-- MAIN SECTION ================================================ --> <section> <div id="main"> <div class="row"> <div class="twelve columns"> <?php do_action( 'bp_before_register_page' ); ?> <div id="register-page"> <?php echo do_shortcode( 'GRAVITY-FORM-SHORTCODE-HERE' ); ?> </div> <?php do_action( 'bp_after_register_page' ); ?> <div class="clearfix"></div> <br><br> </div><!--end twelve--> </div><!--end row--> </div><!--end main--> </section> <!--END MAIN SECTION--> <?php get_footer( 'buddypress' ); ?>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 18, 2015 at 01:08 #82970jwchameleoncorpParticipantHi @laura
Thanks for putting all that together. I really appreciate it.
I went to my cpanel at public_html/travelcuckoo.com/wp-content/themes/kleo but did not find any register.php or a folder named register. I opened all the subfolders and looked at all the php files in the list, but could not find a register.php file anywhere. Do you know where the file/folder might be?
October 19, 2015 at 03:48 #83073LauraModeratorHello, sorry i thought was Sweetdate theme as this topic was in that category,
For KLEO, its in buddypress > members > register.php
copy that file and paste it in child theme ( create the same folders )
Then replace content withCOPY CODE<div id="buddypress"> <?php do_action( 'bp_before_register_page' ); ?> <div class="page" id="register-page"> <?php echo do_shortcode( 'GRAVITY-FORM-SHORTCODE-HERE' ); ?> </div> <?php do_action( 'bp_after_register_page' ); ?> </div><!-- #buddypress -->
And add your gravity form shortcode 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 19, 2015 at 22:19 #83271jwchameleoncorpParticipantHi @laura
Haha! Yeah, I forget I originally submitted the ticket when I was using Sweet Date but since moved to KLEO. Sorry about that.
Anyway, I created an entire copy of the buddypress folder located in public_html/travelcuckoo.com/wp-content/themes/kleo and copied/pasted it to public_html/travelcuckoo.com/wp-content/themes/kleo-child
Then inside the new buddypress folder I went to public_html/travelcuckoo.com/wp-content/themes/kleo-child/buddypress/members and found the register.php file.
I backed up a copy of the file, then opened the file and pasted your code (with my Gravity Form short code added) so it looked like this:
————————————-
<div id=”buddypress”>
<?php do_action( ‘bp_before_register_page’ ); ?>
<div class=”page” id=”register-page”>
<?php echo do_shortcode( [gravityform id=”1″ title=”false” description=”false”] ); ?>
</div>
<?php do_action( ‘bp_after_register_page’ ); ?>
</div><!– #buddypress –>
————————————-
Unfortunately the result was a blank page (see attached). Wondering if I made an error?
Thanks for all your help! 🙂
Attachments:
You must be logged in to view attached files.October 19, 2015 at 22:51 #83282LauraModeratorHello, might need to edit some stuff as it was originally for sweetdate, can you share ftp credentials? 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 21, 2015 at 03:30 #83455LauraModeratorHello, i will need ftp password too please 🙂 Thanks!
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 21, 2015 at 06:47 #83499LauraModeratorHello, the connection is successful but the login authentication fails, could you change the password and share it again? 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 21, 2015 at 07:31 #83505LauraModeratorHello, not working, do you have a cpanel? 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 22, 2015 at 03:28 #83650LauraModeratorThat password worked perfectly 🙂 I am working on your code, will let you know soon 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 22, 2015 at 03:39 #83652LauraModeratorHello, should be done 🙂 Added the shortcode to the page instead then disabled the buddypress register page, you will see an advice to repair it, do not click it
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 22, 2015 at 03:48 #83655jwchameleoncorpParticipantWow! That was fast! Thanks Laura 🙂
Quick question…
When trying to do it on my own, I created a Test Register Page http://www.travelcuckoo.com/test-register/
If you compare it to the current register page ( http://www.travelcuckoo.com/register ) you configured, the test register page has the Facebook Login option, verbiage above the form, and the option to configure with a side bar.
Do I add that directly on the page, or does that require more back end code?
October 23, 2015 at 05:20 #83818LauraModeratorHello, the login with facebook you added, is not functional, is just the button 🙂
You can add the same to the register page but the facebook button wont work as you added itHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 23, 2015 at 07:21 #83823jwchameleoncorpParticipantOops! You’re right. 🙁
Okay, well how to I add it correctly?
October 23, 2015 at 22:52 #83931LauraModeratorHello, that would require some custom development, maybe try to install a plugin for social login that has shortcodes 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 30, 2015 at 21:16 #85130jwchameleoncorpParticipantHola @laura !
Hope you are well.
First and foremost, I want to thank you for all your help. I love working with you. 🙂
I wanted to follow up with somethings I’ve learned since you added the code for the registration page.
1. When I was trying to do it myself and initially created the “test register page” at http://www.travelcuckoo.com/test-register/, it appeared that the blue “Login in with Facebook” was just a non-functioning icon/button. However, now that I’ve tried it again, it does function. (see attached snap shot “facebook login error 3”)
2. When I try to login using the the top menu “Login/Register” link, and click the blue “Login in with Facebook” button in the pop up modal, I get the same error as issue number one (see attached snap shot “facebook login error”). Go to http://travelcuckoo.com and try it.
3. When I try to login using the blue “Login in with Facebook” bbPress login widget in the Community section of the Home Page, I get the same error as issue number one (see attached snap shot “facebook login error”). Go to http://travelcuckoo.com, scroll half way down, and try it.
So it seems that the blue “Login with Facebook” button is trying to work properly in all cases, but adding/changing the code for the registration page we created together has somehow caused a conflict with the functionality.
Can we try to fix the issue together please?
Hope you are well and thank you for all your help. 🙂
Attachments:
You must be logged in to view attached files.October 31, 2015 at 01:08 #85165LauraModeratorHello, please go to the facebook app development, make sure that your website url is at the apps settings and details 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 31, 2015 at 22:02 #85239LauraModeratorHello, well actually that is the register page, but to use your custom register page you might prefer not to select in in buddypress settings ( because it would override your page content ) Or you could edit the buddypress register.php page template… which is more difficult but maybe a developer can do it for you. About the button, you could add it to the page just before the form shortcode in pages > edit page
P.S: Thanks you! 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
November 1, 2015 at 02:48 #85301LauraModeratorHello 🙂
Well i actually never ran with the bulls, i’m from cuba by since i was 8 i live here in palma.
Here is very nice, beach everywhere and a good weather, just like cuba. 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts
The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.