Removing Options (right side) from Registration page?
Permalink
Image attached... right column has options to be notified, etc. Client wants them removed. The only CSS is a class of 'span5' which is shared by the left column and who knows what else, so I can't just hide the div by that class. If I could find out where the div is actually echoed from, I could add a new class, but I can't find it. It's not in register.php.
Awesome! I was not expecting it to be that easy. Thank you.
Do you have any idea how I can change the "success" message? It just gives a "return to Home" link and I have no idea where that is, either. I've been screwing around with line 283 in register.php since I last posted to no avail.
Attached file... I just want it to redirect to a different page or else change the "Return to Home" link to say something else and have a different link.
Attached file... I just want it to redirect to a different page or else change the "Return to Home" link to say something else and have a different link.
Editing that message is more complicated as you'd need to do some overrides (that I don't have time now to go through).
Try this:
- Go to sitemap
- Select the page where you want to redirect to after registeration
- Click the "Properties" menu of that page
- See the "Page ID" number next to the page name from that page and remember that
Now, edit your template where you have the link to the registration page. To the end of that link add this: "?rcID=123" where you replace the "123" with the page ID you just looked for.
So after this change the registration link should look something like this:
/register/?rcID=123
After the registration it should now redirect the user to that page. But of course someone might end up to that page e.g. from Google without that parameter when they would still see the original message.
Try this:
- Go to sitemap
- Select the page where you want to redirect to after registeration
- Click the "Properties" menu of that page
- See the "Page ID" number next to the page name from that page and remember that
Now, edit your template where you have the link to the registration page. To the end of that link add this: "?rcID=123" where you replace the "123" with the page ID you just looked for.
So after this change the registration link should look something like this:
/register/?rcID=123
After the registration it should now redirect the user to that page. But of course someone might end up to that page e.g. from Google without that parameter when they would still see the original message.
You have been extremely helpful to me these past few days. Thank you so much!
Edit the attribute you want to hide and uncheck the "Show on Registration Form." option.