jeka7000
Forum Replies Created
-
Solved in the following way:
Feed Settings -> WooCommerce Multi-Currency -> Basic Currency (primary)
First, the feed is generated in the base currency, but then automatically generated at the rate
@alekv Thanks. Resolved.
The easiest way to fix this is by updating WooCommerce to the current version.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Template Override Checker+
You can mark this function in lesson settings:
[.] Enable Course Preview
If checked, any users/guest can view this lesson without enroll courseForum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Total enrolled numberHi, @badsha_eee. Which table is responsible for this counter in the database?
Yes, it works.
@badsha_eee, thanks
I have the same problem (Remove from Cart), please fix it urgently. I bought the premium version and have a bunch of problems and errors. Bugs are very simple, fix it.
+
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Profile Image Not Working@jbaranik, can you describe in more detail what the problem is?
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] all coursesForum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Profile Image Not WorkingI have this problem too. This worked fine in previous versions.
- This reply was modified 4 years, 3 months ago by jeka7000.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] How to set course price?Install Woocommerce
@shara94 , add this in functions.php
I want to add a new separator and new links with icons in the dashboard.
how can I do it?add_filter('tutor_dashboard/nav_items', 'add_some_links_dashboard'); function add_some_links_dashboard($links){ $links['new-separator'] = array('title' => __('Title for Separator', 'tutor'), 'type' => 'separator'); $links['all-courses'] = __('Title for other links', 'tutor'); return $links; }