This topic has 8 replies, 2 voices, and was last updated 9 years, 9 months ago ago by Eva Kemp
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 ?
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.
Thx alot
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.
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.
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.
Eva Kemp your knowledge is sexy. THANK YOU SO MUCH !
Hello @StefanStanchev,
Thank you for your feedback.
If there are any questions feel free to contact us.
Regards,
Eva Kemp.
The issue related to '‘Adding link to registration page’' has been successfully resolved, and the topic is now closed for further responses