Recently i migrated to 4.0 and i want to show 4 courses in Related Course Section on Single Course Page & In mobile view i want to show two menus in a row in footer.
This reply has been marked as private.
hi
we can try this with custom codes
please confirm this
http://prntscr.com/v3uc83
yes, i want two menus in a same row.
Also let me know how to show 4 Courses in Related courses Section on single course page: https://prnt.sc/v3ulcs
ok yes we can try this and will update you here
need time to check the same
Any update on the above for css ?
hi
please try to add this
in wp-admin>>plugins>>plugin editor>>wplms customizer plugin>>wplms-customizer.php
add_filter(‘vibe_related_courses’,function($args){
$args[‘posts_per_page’] = 4;
return $args;
});
to show 4 courses
Its not working. And also i need the CSS code for showing two footer menus in a same row in mobile view http://prntscr.com/v3uc83.
ok I need to check this will provide the code tomorrow
for sure
and for the above one, I think it's the issue of priority
I need to increase the priority will share it too tomorrow
need your patience thanks
can you provide me the code for showing 4 related courses in a row, i have been waiting for this from long time.
2 menu in footer in mobile view that i have done myself. Please provide me code to show 4 related course in a row.
hi
please add this
in wp-admin>>plugins>>plugin editor>>wplms customizer plugin>>wplms-customizer.php
add_filter('vibe_related_courses','related_courses_v4,999999);
function related_courses_v4($args)
{
$args['post_per_page'] = 4;
return $args;
}
on which criteria it shows the related courses like category or level or tag etc ? Is there a way to select on what basis it need to show the related courses.
yes we have course-category
and we can't change it