marbaque
Forum Replies Created
-
Forum: Plugins
In reply to: [LearnPress - WordPress LMS Plugin] Customize Plugin With Child ThemeI you know php you can edit the template files. First, copy the /learnpress folder inside the plugin to your theme folder. Then you’ll find the files to edit inside the /single-course folder… hope it helps.
Forum: Plugins
In reply to: [LearnPress - WordPress LMS Plugin] Prerequisites lesson+1 on this
Forum: Plugins
In reply to: [LearnPress - WordPress LMS Plugin] remove courses page in learnpressYes the plugin includes the template files in the /learnpress folder, however you need basic skills in php for changing some stuff. If you want to completely modify it, advanced skills are needed for you to accomplish it.
I only managed to modify stuff, for example, removing price tag from the courses page, and removing tabs in the course landing page… stuff like that.
- This reply was modified 6 years ago by marbaque.
Forum: Plugins
In reply to: [LearnPress - WordPress LMS Plugin] remove courses page in learnpressFor your first question, you have to grab the learnpress folder inside de plugin that has all the templates and copy it to you theme or child theme. Then you can modify the landing page for the courses. You can use the plugin called “show current template” to which one you have to modify. At least, that is how I did it.
Forum: Plugins
In reply to: [LearnPress - WordPress LMS Plugin] Language Misbehaviour in WP 5.1have you tried to re-sync the language template and then the german language? I have had that behavior in other plugins because the translation template is not updated with the latest strings. Loco Translate can sync the template with new strings if found in the plugin or theme. Hope this helps.
Forum: Plugins
In reply to: [LearnPress - BuddyPress Integration] Redirect Login from LearnpressHave you found any solution, I am facing a similar problem. When a new user clics on enroll to course, gets redirected to buddypress profile page which does not allow to login or register.
You can choose sections to be open to anyone… That’s a way. Select the option “Preview” in the section editor.
Forum: Plugins
In reply to: [LearnPress - WordPress LMS Plugin] Add extra fields for registration formThank you @ashleycam3ron, but how do you manage to get user directed to BuddyPress register form when clicking “enroll in course” button?
Forum: Plugins
In reply to: [Invitation Based Registrations] Invite Only registrationsThank you @lightzok
Forum: Plugins
In reply to: [BadgeOS] Post navigation conflictAwesome, thank you. That should do! it works!
Forum: Plugins
In reply to: [BadgeOS] Elementor + Badge OS Conflict@wooninjas it’s good to know support is going to be available. I appreciate it, and will working on setting up badgeOS on a LMS in the upcomming days.
- This reply was modified 6 years, 9 months ago by marbaque.
Forum: Plugins
In reply to: [BadgeOS] Elementor + Badge OS ConflictThank you, I’m going to check MyCred too.
Forum: Plugins
In reply to: [BadgeOS] Elementor + Badge OS ConflictI had a similar issue with BadgeOS not being compatible with my theme’s post navigation. Unfortunately, there is little or no documentation and support is absent. Good luck.
Forum: Plugins
In reply to: [Next Page] Error with WP 4.5.2I am getting the same error… did you find a way to fix it?
Forum: Fixing WordPress
In reply to: Archivos de autorThank you Michael, for some reason I deleted this part from the template, I’m using Sage to build the theme, so this should pretty straightforward.
This is the author section, and its working now
<?php if (!have_posts()) : ?> <div class="alert alert-warning"> <?php _e('Sorry, no results were found.', 'sage'); ?> </div> <?php get_search_form(); ?> <?php endif; ?> <?php while (have_posts()) : the_post(); ?> <?php get_template_part('templates/content', get_post_type() != 'post' ? get_post_type() : get_post_format()); ?> <?php endwhile; ?>