jurasjo
Forum Replies Created
-
I’m using form by pasting code like that in the file of LifterLMS
<?php /** * LifterLMS Course Meta Information Wrapper End * @author LifterLMS * @package LifterLMS/Templates */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> </div><!-- .llms-meta-info --> <?php echo do_shortcode( '[contact-form-7 id="742" title="okurs"]' ); ?>
Sending works but, but Special Email Tags not. I have found info that:
If you put the contact form 7 inside a widget, template or any other theme file, the tags / shortcodes like [_post title] will not work!
so probably there is nothing to be done to achieve that from LifterLMS side.You are right. With extension, Woocommerce is taking care of things.
In addition to that topic:
There is this Courses link in the menu. After is clicked we are moved to courses but on the bottom there is another link “View all My Courses”. What is the difference between Courses and that page which is shown after We clicked that link?Behavior which You are describing is true for “specific” course page I believe and it works for me.
I would like to have price on the tiles on the Course Catalog page.
Additional question:
Maybe there is a solution to have navigation from navigation.php(Wooc) also on the My Courses page(LifterLMS) and no menu generated by LiftelMS?
After LifterLMS WooCommerce is enabled there is no reason to use that menu. Order history will be handled by Woocommerce and Redeem Voucher link can be added to Wooc menu.
Ok. I have found that it must be done trough LifterLMS WooCommerce not LifterLMS.
Works fine !
Sent a submit feature request: https://lifterlms.com/contact
Thanks
Forum: Plugins
In reply to: [LifterLMS - WP LMS for eLearning, Online Courses, & Quizzes] Free stampI made this not clear maybe.
Added access plan. Added 3 Memberships to that plan (they have set different prices).
I wanted to set access plan price to “0” but I couldn’t save because of missing price notice.
So I have checked this check-box “Is Free” and after saving there is this
<span class="lifterlms-price">FREE</span>
on the course page in Enrollment frame.I assume that You are saying me that there should be a possibility to have price “0” without “Is Free” checked?
THX. Code works. I will use it for now. Hope for fix in the future ??
Forum: Plugins
In reply to: [LifterLMS - WP LMS for eLearning, Online Courses, & Quizzes] Free stampFor clarity:
I have tried to set price to “0” but “free..” was checked automatically and that “FREE” sign showed.
Thx but for particular membership the author can’t be changed on edit screen.
If I’m adding course as me “Author1” a Can change it to “Autor2” and the “Author2” is visible as author of the course on the course page and the tile.
This kind of action can’t be done if I’m working on membership page.
One related question:
Can It be differenced for courses and memberships?
Any news in this case?
THX. Looks promising.
Forum: Plugins
In reply to: [WooCommerce] How to display empty star ratings/not rated yetAd.1 Maybe this code help. I’m using this and works for me.
// Woocommerce rating stars always add_filter('woocommerce_product_get_rating_html', 'your_get_rating_html', 10, 2); function your_get_rating_html($rating_html, $rating) { if ( $rating > 0 ) { $title = sprintf( __( 'Rated %s out of 5', 'woocommerce' ), $rating ); } else { $title = 'Not yet rated'; $rating = 0; } $rating_html = '<div class="star-rating" title="' . $title . '">'; $rating_html .= '<span style="width:' . ( ( $rating / 5 ) * 100 ) . '%"><strong class="rating">' . $rating . '</strong> ' . __( 'out of 5', 'woocommerce' ) . '</span>'; $rating_html .= '</div>'; return $rating_html; }