Tagged: gravity forms
-
AuthorPosts
-
June 1, 2014 at 11:06 pm #273040
Hi support team,
When I registered an user with http://artistandbeer.com/Registrar/, Gravity Forms send an email for activate the user.
When I click in the link of email the system jumps to site but the information of activation dont’t appears in main content, appear overlapped with header.
http://artistandbeer.com/wp-content/uploads/2014/06/gravity_user_activation_page.gif
Can you help me?,
Thanks so much!!
Xavier.
June 2, 2014 at 1:25 pm #273233With this information of Gravity Forms support team I can customize the user activation page, but is not integrated with theme and overlapps with header.
Can you help me please?
Thanks s much!!!
Xavier.
Gravity Forms support team
———–
Hi Xavier,To customize the activation page take a look at the following tutorial: http://gravitywiz.com/customizing-gravity-forms-user-registration-activation-page/
The emails are generated by WordPress so you would need to use some WordPress hooks to modify them: http://www.gravityhelp.com/forums/topic/shared-solution-customizing-activation-email
Regards,
——-June 3, 2014 at 1:56 am #273652Hi any response?, the activation page not run ok :( in integration of Gravity Forms and enfold..
Thanks so much!!..
Xavier.
June 3, 2014 at 5:00 am #273712Hi!
Would you be able to provide us with your site admin and username and password so I can check it out please.
I would like to take a look at how the page is coded and check out Gravity Forms settings etc.When replying to this message with the login information, please mark the reply as private.
Best regards,
ChrisJune 3, 2014 at 8:39 am #273772Hey!
Download this zip file: http://www.mediafire.com/download/8wvcbh24bcfpl5a/gfur-activate-template.zip and unzip it. Then upload the resulting folder into your theme directory (wp-content/themes/enfold/ or into your child theme directory). Then open up the functions.php file and insert this code:
/** * Gravity Forms Custom Activation Template * http://gravitywiz.com/customizing-gravity-forms-user-registration-activation-page */ add_action('wp', 'custom_maybe_activate_user', 9); function custom_maybe_activate_user() { $template_path = STYLESHEETPATH . '/gfur-activate-template/activate.php'; $is_activate_page = isset( $_GET['page'] ) && $_GET['page'] == 'gf_activation'; if( ! file_exists( $template_path ) || ! $is_activate_page ) return; require_once( $template_path ); exit(); }
Cheers!
PeterJune 3, 2014 at 9:49 am #273796This reply has been marked as private.June 4, 2014 at 4:53 pm #274562Hi, guys, how is this issue?
Thanks so much!!
Xavier.
June 5, 2014 at 9:14 am #275006Hey!
Please contact the Gravity Forms plugin authors for help. It seems like the templates I provided here: http://www.mediafire.com/download/8wvcbh24bcfpl5a/gfur-activate-template.zip are not used but I’m not sure why. Maybe the code on github is outdated or some additional tweaks are required…
Cheers!
PeterJune 5, 2014 at 10:09 am #275024This reply has been marked as private. -
AuthorPosts
- The topic ‘activation page gravity forms overlapped in header, not appear in main content’ is closed to new replies.