Tips & Tricks
Add this css in WPLMS->Customize->Add custom css
.page.page-id-10 .col-md-9.col-sm-8 {
float: right;
}
@media(max-width: 770px){
...
Fri, Jul 17, 2015 at 4:28 PM
add_filter('wplms_email_schedule','my_course_expiry_mail_settings');
function my_course_expiry_mail_settings($args){
if(is_Array($a...
Mon, Jul 6, 2015 at 1:42 PM
You need a child theme for this, because BuddyPress overwrites the dynamic sidebar functionality in WordPress. Grab the blank child theme from forums. 1. C...
Wed, Sep 23, 2015 at 5:24 PM
In this tip we will extend the subscription of all students in a course (maybe helpful if you have many students in a course). 1. Goto wp-admin -> Lms -&...
Wed, Jul 8, 2015 at 4:33 PM
Refer this link for bulk import/export in wplms:http://support.vibethemes.com/solution/articles/1000165107-bulk-import-export-wplms-via-csv
Create a c...
Fri, Jul 17, 2015 at 2:54 PM
1.Add code given below in your wp-content/plugins/wplms-customizer/wplms-customizer.php file or in your child theme functions.php.
add_filter( ...
Wed, Jul 8, 2015 at 1:59 PM
Please add the code given below to stop users to change their name in your wp-content/plugins/wplms-customizer/wplms-customizer.php.
function disable_...
Thu, Jul 9, 2015 at 2:20 PM
You can run or add your custom scripts or actions on unit load on "unit_travaerse" event . Example:
$('.unit_content').on('un...
Sat, Jul 11, 2015 at 2:13 PM
Please add this code in your wp-content/plugins/wplms-customizer/wplms-customizer.php :
function bbg_disallow_name_edit( $has_profile ) {
global $p...
Thu, Jul 16, 2015 at 1:54 PM
Add the following code in customizer_class.php of wplms customizer plugin Or in functions.php of child theme.
add_action('init',&...
Mon, Aug 10, 2015 at 10:17 AM