changes the display of a page
-
How do I change the layout of a page ( courses, lp-checkout )?
Can’t we with elementor
-
Hi secchi,
Thank you for contacting us.
For pages like Archive Courses or Single Course, you can easily change the layout using our Elementor-based plugin, Thim Elementor Kit, which is available for free on WordPress.org. You can find more information on how to edit these pages here.
As for the lp-checkout page, it’s built using shortcode. You can edit it with Elementor by adding content above or below the shortcode area.
You can also try installing this beta version to fix any issues with the lp-checkout page.
Best regards,
Brianvu-tpThank you very much for your reply, I downloaded tim , that’s very good!!
1 . but for the checkout page I would just delete the command part ( https://prnt.sc/Fa8CzbtsrVj5). how can we do?
2 . can we also modify this page (https://prnt.sc/iu7OHJSM3Fg8 ) , if so how to proceed?
thank you very much for your answers
Hi secchi,
We’re glad you’re finding Thim Elementor Kit helpful!
Regarding your questions:
- To remove the section you highlighted in the checkout page screenshot, you can add the following CSS to your site:
.lp-checkout-form__before {
display: none !important;
}2. The page you linked in your second question appears to be the single course page. You can indeed modify this page using the Thim Elementor Kit. Please refer to this documentation for instructions.
Best regards,
Brianvu-tpThank you for your precious information,
just now I have to delete the part ( .lp-checkout-form__before { display: none !important; })
Is it now possible to be automatically redirected to the course page after login?
thank youI have two other small questions:
- is it possible to lock the following lecons as long as the user has not viewed the previous lesson?
( https://prnt.sc/tyk8WbjVbriC ) - I personalize as you told me , and parsed when I display : single course,
and parcontre when I display I do not have the small right module that appears, as presented on the demo video, how displayed this module?
https://prnt.sc/dcZJ6tumKX00
https://prnt.sc/e4gq4aW13l9w
thank you very much
Hi secchi,
Regarding your new questions:
- Automatic Redirection After Login: To automatically redirect users to the course page after login, you can use a plugin called “After Login Redirect.”
- Locking Lessons Until Previous Lesson is Viewed: To lock subsequent lessons until the previous lesson is completed, you can use our LearnPress Content Drip add-on. Please review the documentation carefully to ensure it meets your specific requirements before purchasing.
- Displaying Extra Information on Single Course Page: To display the “Extra Information” on the single course page, you can use the Course Extra widget. After adding this widget, the information entered in the Extra Information section of your course settings will be displayed on the single course page.
Best regards,
Brianvu-tphello,
Thank you again for your answers,
actually I installed the extra course module widget,
but it is the right frame that does not display ( https://prnt.sc/Wb1HThYj966T https://prnt.sc/0xQoujJ0mFVV )
must check an option to see it show?-
This reply was modified 2 months, 3 weeks ago by
secchi.
Another small question,
can you force the redirect on the login form, on the course page, instead of the user profile page?
https://prnt.sc/TmPkxPA1P9PL
with the” extension this function for disconnection but not the connection
thank you very much-
This reply was modified 2 months, 3 weeks ago by
secchi.
Hi secchi,
Thank you for your continued questions.
Regarding the right sidebar you’re referring to, it’s composed of individual widgets like “Course Image,” “Course Price,” “Course Buttons,” and others. You’ll need to add these widgets to your sidebar area to recreate the complete block.
As for forcing redirection to the course page after login from the profile page login form, you can use the following hook:
apply_filters( 'learn-press/login-redirect', $url_redirect, $user );
This hook is located in ‘wp-content/plugins/learnpress/inc/class-lp-forms-handler.php’. You can create a custom function in your child theme’s functions.php file to modify the $url_redirect variable and redirect users to the course page instead of the profile page.
Best regards,
Brianvu-tphello
for redirection,
I changed the variable by the url of the course page,
then, on the login form it works,
but on the registration form it shows a blank page…
https://prnt.sc/A5L5MoRitjxy
https://prnt.sc/BrIZcAPDnIIm
Do you know why?😉 other small problem, I can not display the progress bar of the courses, yet it seems to me that it is the module ( course offer end ) but it does not appear.
https://prnt.sc/dmevg_J_8ztK
https://prnt.sc/GhYMfNKfIx40
https://prnt.sc/jhzN-x4ktJGV
Thank you in advance.Hi secchi,
Thank you for your response.
For the redirection after registration, you will need to use a different hook than the one used for login. You can use the following hook to redirect after registration:
apply_filters( 'learn-press/register-redirect', $url_redirect, $new_customer );
This hook is located in ‘wp-content/plugins/learnpress/inc/class-lp-forms-handler.php’. You can create a custom function in your child theme’s functions.php file to modify the $url_redirect variable and redirect users to the course page after registration.
For the progress bar display, please note that a dedicated “Progress Bar” widget is not currently included within the Thim Elementor Kit.
Best regards,
Brianvu-tphello
for the progress bar,
the percentage progresses with the defilement of the page…
Is there a setting?
https://prnt.sc/vWjJLNG3L-7t
https://prnt.sc/GMu75eP58uyhI will again abuse your patience and help. 😉
I wanted to know how to remove the command block’ on the lp-profile page..?
https://prnt.sc/HRsoG2ANaDCnHi secchi,
Thank you for your response and for pointing out the behavior of the “Progress Tracker” widget. You are correct, it displays the page scroll percentage, not the course progress. As mentioned earlier, a dedicated course progress bar widget is not currently available in Thim Elementor Kit.
Regarding removing the “Orders” tab from the lp-profile page, you can use the following hook:
apply_filters( 'learn-press/profile-tabs', $default_settings );
This hook is located in wp-content/plugins/learnpress/config/profile-tabs.php.
To remove the “Orders” tab, you can add the following code to your child theme’s functions.php file:
function my_theme_remove_learnpress_orders_tab( $default_settings ) { if ( isset( $default_settings['orders'] ) ) { unset( $default_settings['orders'] ); } return $default_settings; } add_filter( 'learn-press/profile-tabs', 'my_theme_remove_learnpress_orders_tab', 20 );
If you are satisfied with our support, we would greatly appreciate it if you could leave us a 5-star review. A positive rating is a significant motivation for us to continue our hard work, and it’s very important to us.
Thank you very much for your feedback.
Best regards,
Brianvu-tp
- You must be logged in to reply to this topic.