Adding link to registration page - by Stefan

This topic has 8 replies, 2 voices, and was last updated 9 years, 1 month ago ago by Eva Kemp

  • Avatar: StefanStanchev
    Stefan
    Participant
    January 31, 2015 at 14:30

    Hello

    I need some help for a little adding to the registration page. I want to add some text and a link wich leads to the terms and conditions page. I’m imaginating it to be something like “by clicing register you agree to the terms and conditions”. I’m typing the text in the text field and addink manualy link with the link button. The registration page is set on template for custom registration page but the text i’m trying to add is not visible in the client part. Can you help ?

    7 Answers
    Avatar: Eva
    Eva Kemp
    Support staff
    January 31, 2015 at 15:05

    Hello,

    To add more content on Registration page you need edit the file et-registration.php in wp-content/themes/blanco directory. We recommend to make any modifications in a child theme not to lose changes after theme update.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: StefanStanchev
    Stefan
    Participant
    February 1, 2015 at 10:29

    Thx alot

    Avatar: StefanStanchev
    Stefan
    Participant
    February 1, 2015 at 10:59

    I’v readed the documentation but still can’t undeastand how to choose withch css files do i have to enqueue to my function.php file in the child theme directory. The parent theme have 8 css files and here is where i stuck. How to undeastand witch css file must be enqueued to the child theme.

    Avatar: StefanStanchev
    Stefan
    Participant
    February 1, 2015 at 12:56

    I’m adding the script and after that i add the function witch is enqueueing the funcion.php file to the stylesheet. So my code for now is as it goes `<?phpscript( $handle, $src, $deps, $ver, $in_footer ); ?>
    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ ); wp_enqueue_ ` but this is function for 1 css file style sheet.

    Avatar: Eva
    Eva Kemp
    Support staff
    February 2, 2015 at 12:20

    Hello,

    You need use style.css file.
    Please add this code to functions.php file of your child theme:

    <?php
    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
    }

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: StefanStanchev
    Stefan
    Participant
    February 2, 2015 at 16:04

    Eva Kemp your knowledge is sexy. THANK YOU SO MUCH !

    Avatar: Eva
    Eva Kemp
    Support staff
    February 2, 2015 at 16:49

    Hello @StefanStanchev,

    Thank you for your feedback.
    If there are any questions feel free to contact us.

    Regards,
    Eva Kemp.

  • Viewing 8 results - 1 through 8 (of 8 total)

The issue related to '‘Adding link to registration page’' has been successfully resolved, and the topic is now closed for further responses

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.