Create Course – Add Full Description

Home Forums Legacy Support Support queries Other issues Create Course – Add Full Description

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #5712
    wyatt322
    Spectator
    Adding text in the full course description is not showing in the live course page
    #5723
    MrVibe
    Keymaster
    Acknowledged. I am working on fixing this bug right now. Will update the WPLMS Front end plugin soon.
    #5729
    wyatt322
    Spectator
    thanks - it is possible to have just one course description box with full text editing options? Instead of the current 2 boxes, short course and full course description.
    #5879
    MrVibe
    Keymaster
    The update with the fix would be released tomorrow. Although it is possible, but if we remove the excerpt block then except for modern child theme, the content would duplicate in the remaining theme layouts. But yes it is possible to remove it in the new front end. Add below code to functions.php of child theme to remove the short description area.  
    add_filter('wplms_course_creation_tabs','remove_course_short_description');
    
    function <span style="line-height: 1.5;">remove_course_short_description($fields){</span>
    
    unset($fields['create_course']['fields'][3]); //3 for short, 4 for full description
    
    return $fields;
    
    }
    #6144
    wyatt322
    Spectator
    Did you release the update for the full description?    
    #6146
    wyatt322
    Spectator
    just seen the update and now updating plugin
    #6426
    sandy
    Member
    Thanks for updating us.
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Create Course – Add Full Description’ is closed to new replies.