CLP bugs- text and saving bugs

Home Forums WPLMS AddOns Custom Learning Paths CLP bugs- text and saving bugs

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #129724
    Superbobrik
    Participant
    Hello Found 2 issues with CLP 1. If you add button shortcode into step description and save the LP, everything will be shown correctly. But if you then make any changes or just save LP one more time from admin, all shortcodes and links will be changed to wrong links, check this: Normal: After one more saving: As you see, lots of "\" appeared so the link does not work. 2. If the text is too long and Read more appears, then we got 2 issues: -If the break is placed in the middle of the word, the � will appear and after pressing read more, you will see �...�. Tis issue is only with cyrillic language, there is no such issue with latinica! -Next thing is for all languages- it it "...", it remains after you press read more and the text looks weird. Could you please help and give a code how to remove read more and text limit? It is needed really much
    #129754
    H.K. Latiyan
    Participant
    Hi, Yes this is already a known issue and I have already fixed it on my test setup and same will be available in the next update of the plugin. Let me know if its urgent for you.
    #129755
    Superbobrik
    Participant
    Could you tell me time when you plan to release it? And will there be a possibility to turn off or increase letters limit, I actually do not need read more button, I need to show users all the description.
    #129818
    H.K. Latiyan
    Participant
    Hi, The update will be released soon. ----------- No there will be no setting to turn off the read more button, but I'll add a filter on the limit and therefore after the update I can give you a one line of code which you can use to increase the limit of the words.
    #130417
    Superbobrik
    Participant
    Hello Just saw an update and installing it now You wanted to provide me with a code "I can give you a one line of code which you can use to increase the limit of the words."- could you please do so?
    #130437
    H.K. Latiyan
    Participant
    Hi, Yes here is the code: add_filter('wplms_clp_step_description_length',function($length){   $length = 300;   return $length; }); In the above code I have set the limit to 300, you can increase it according to your requirements. You need to add this code in the wplms-customizer.php file present in your wplms customizer plugin.
    #130570
    Superbobrik
    Participant
    Hello. Everything works nicely, thank you for help!
    #130662
    H.K. Latiyan
    Participant
    Thanks for the update.
Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘CLP bugs- text and saving bugs’ is closed to new replies.