Hi!
I would like to increase the amount of words that are shown before the read more tag in the description of custom learning path steps. It seems to use a different setting than the one found in WPLMS > miscelanous.
Could you let me know how to? Or even better, disable the read more tag by default in custom learning paths, it is messing a bit with the buttons I use in it.
Kind regards
This reply has been marked as private.
thanks for pointing this out. I wrote I tiny bit of code to overcome it.
function longer_desc_clp() {
return 500;
}
add_filter( 'wplms_clp_step_description_length', 'longer_desc_clp' );
@dantwah,
Really, appreciate your effort.
Closing this topic
Great, Dantwat! This worked for me as well. Was looking for this :)