Nite4Nite Posted August 26 Share Posted August 26 I have a client that wants their course built in Spanish- it seems the course button complete & continue buttons text cannot be changed to Spanish. Link to comment
tuanphan Posted August 27 Share Posted August 27 I guess we can use CSS to rename text. If you share link to page, we can check easier. Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Nite4Nite Posted August 29 Author Share Posted August 29 @tuanphan https://www.copingpower-tiered.org/spanish-speaking-parent-kickoff-course/lesson-1-title-6wdzr-wkm3z Here is one example page where the "complete and continue" button does not seem editable. Additionally, within the drop down buttons in the form there is english text "Select and Option" that does not seem to be editable to be spanish. Ideally, all text on the page would be able to be spanish, not english. Link to comment
tuanphan Posted August 31 Share Posted August 31 You try this to Website Tools > Custom CSS span.course-item__next-lesson-text.course-item__next-lesson-text--incomplete { visibility: hidden; position: relative; } span.course-item__next-lesson-text.course-item__next-lesson-text--incomplete:before { visibility: visible; content: "new complete text"; position: absolute; left: 50%; transform: translateX(-50%); width: 100%; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Nite4Nite Posted Thursday at 03:25 PM Author Share Posted Thursday at 03:25 PM @tuanphan this works but unfortunately since i have an english and a spanish course on the same website, I only want to change certain buttons to be in spanish, with this method you created above this changes the "complete and continue" button for all courses both english and spanish. Link to comment
tuanphan Posted yesterday at 02:09 AM Share Posted yesterday at 02:09 AM You can add this to Individual Page Header Injection <style> span.course-item__next-lesson-text.course-item__next-lesson-text--incomplete { visibility: hidden; position: relative; } span.course-item__next-lesson-text.course-item__next-lesson-text--incomplete:before { visibility: visible; content: "new complete text"; position: absolute; left: 50%; transform: translateX(-50%); width: 100%; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment