klonerom
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Display custom field values for product variations@whoaloic
Hi,
I was looking a solution for a long time too and your share helps very much. Thanks !After some tests I note your code is great for one product attribut and works very well.
But when I have 2 product attributes (so in frontend, 2 select lists in my single product), the custom field displayed is not always correct.
The value displayed is often one of other variation than the selected variation.I am tried to understand what happen in the code but my jquery experience si not enought…
So have you note this king of behaviour ?
And have you any clue to help to solve that ?Thanks for your help
Forum: Plugins
In reply to: [Namaste! LMS] Displaying course fee even if customer in not loginI agree for the course content.
My question is only about the course price.
In fact in my case I use [namaste-course] shortcode for enrollment. But when student is not logged in, informations displayed by this shortcode are only “You need to be logged in to enroll in this course”. I don’t see the course price.
And after student logged in, the price is displayed.So I would like to know how student could see course price in the course page when he is not logged in ? Is it a related shotcode ?
Thanks,
Forum: Plugins
In reply to: [Namaste! LMS] How could I change course author ?Hey,
Just for information, I’am using this code :
function allowAuthorEditing() { add_post_type_support( 'namaste_course', 'author' );} add_action('init','allowAuthorEditing');And now I have in parameters of my course page the author selection which is displayed.
Romain
Forum: Plugins
In reply to: [Namaste! LMS] plugin translationI have followed your last link and it is ok.
Thanks for your help !Forum: Plugins
In reply to: [Namaste! LMS] When "student" role is assigned for a user ?Thanks for your help.
I am going to study what you provide me.Forum: Plugins
In reply to: [Namaste! LMS] When "student" role is assigned for a user ?Thanks for your quick reply.
So, do you know if is it possible to assign automaticaly (not manually) “student” role to a user after enrollment process to a course ?
Example : My user is connected as a “suscriber” to my website and if he enroll in a course his role will change to “student”.
Thanks,
Forum: Plugins
In reply to: [Watu Quiz] Shortcode to show grades and results ?ok
thank youForum: Plugins
In reply to: [Namaste! LMS] window of "Payment for course" display my home pageThanks for your precious help, that worked !
Forum: Plugins
In reply to: [Namaste! LMS] window of "Payment for course" display my home pageIn fact, I don’t know AJAX.
I just looked for a function to hide the dashboard for all users except administrator. But when I have used it, the namaste payment process was modified.So now I look for an other function which will be able to hide dashboard and won’t change namaste payement process.
For my understanding, why the namaste payment process is modified with this function ?
Is it possible to go towards paypal payment page just after click on the enroll button without display the popup ?Thanks,
Forum: Plugins
In reply to: [Namaste! LMS] window of "Payment for course" display my home pageAfter some investigations my issue comes from my function.php file.
I have a function which allows me to redirect towards home page if you are not administrator :
add_action(‘admin_init’, ‘no_mo_dashboard’);
function no_mo_dashboard() {
if (!current_user_can(‘manage_options’) && $_SERVER[‘DOING_AJAX’] != ‘/wp-admin/admin-ajax.php’) {
wp_redirect(home_url()); exit;
}
}Now my issue is : how keep this process and your process ?
I you have any ideas ?
Thanks,Forum: Plugins
In reply to: [Namaste! LMS] Displaying issue for all courses in a same pageThanks for your answer.
After some tests, my issue cames from a filter category fonction I have added before.
It is now ok.Forum: Themes and Templates
In reply to: [Hueman] Home page / new post type : style and order issuesHi,
No idea to display posts (with an other post type than ‘post’) in blog like default display (2 posts per row) ?Thanks,
RomainForum: Plugins
In reply to: [Black Studio TinyMCE Widget] Error: Invalid argumentSorry for my late return,
In fact, I have had others difficulties with others plugins. As I was at the begining of my project, I have decided to reinstall WP to have a cleaner version.
Now it is ok your plugin works very well.
Thank for your help.Forum: Plugins
In reply to: [Black Studio TinyMCE Widget] Error: Invalid argumentAfter check the browser javascript error console I have this message :
Deprecated TinyMCE API call: <target>.onNodeChange.add(..)Forum: Plugins
In reply to: [Black Studio TinyMCE Widget] Error: Invalid argumentThanks for your quick reply,
My theme is HUEMAN.
I have switched to WP default theme and others : I always have the message.Thanks,