-
Author
-
July 6, 2016 at 21:55 #128308steffemParticipant
Hi
I would like to require my customers to enter their phone number, i have done this on register page but i cant find how to do it at the little sign up button at top right corner. Can you help me with this?
Best regards
July 7, 2016 at 15:06 #128388LauraModeratorHello, you need to add it to the general-register-modal.php found at page.parts (first copy it to child theme then edit it there, so it looks like sweetdate-child/page-parts/general-register-modal.php )
You will need to add it there using input type html http://www.w3schools.com/html/html_form_input_types.asp
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 🙂
July 7, 2016 at 15:10 #128389steffemParticipantthat is way too hard for me, could not understand that, can I just make the sign up button redirect to mysite.com/register?
July 7, 2016 at 16:32 #128399LauraModeratorHello, yes you can do it by editing the header.php , copy it to child theme and edit it, find
COPY CODE<?php if(get_option('users_can_register')) { ?> <li class="header-register-button"><a href="http://mysite.com/register"><i class="icon-group hide-for-medium-down"></i> <?php _e("SIGN UP", 'kleo_framework'); ?></a></li> <?php } ?>
Replace it with
COPY CODE<?php if(get_option('users_can_register')) { ?> <li class="header-register-button"><a href="#"><i class="icon-group hide-for-medium-down"></i> <?php _e("SIGN UP", 'kleo_framework'); ?></a></li> <?php } ?>
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
You must be logged in to reply to this topic.