Hi Vibe,
While creating a course's the EVENTS section is not loading whether to select the existing events or to add a new event. After i skip and go to next section, create a unit and then go back to events again and click on create event, it shows up now, so it approximately takes 8 min to just load that part. Can you help us load the sections faster or guide us what to do to load them and save quickly. ?
http://prntscr.com/ct5kly -- DOES NOT LOAD.
After 8 min :
http://prntscr.com/ct5mb5 -- After Entering Event name & Clicked on Create Event nothing happens and Save Events is greyed out.
This reply has been marked as private.
This reply has been marked as private.
are you able to check this issue?
We are not being able to replicate the issue on our test setup .
There is some js error appearing in your edit course page when creating or adding the events .
Please check :
http://prntscr.com/cte76o
and this error can appear due to two reasons .
Either there is another select2.js version is being called on that page
Or select2 is not loading in sequence .
This seems to site specific issue as we have never seen such issue before form any user or neither we are able to replicate it .
PS : you can try deactivating third party plugins and check your scripts .
This reply has been marked as private.
Well I tried to check your site fornt end but I was getting some strange issue whenver trying to load the edit course page :
http://prntscr.com/cu3w7i
The idea is to deregister the select2.js of pmpro and enqueue the select2 of wplms theme on the edit course page .
This reply has been marked as private.
This reply has been marked as private.
This reply has been marked as private.
This reply has been marked as private.
Please try adding the given code in your wplms-customizer.php file in wplms customizer plugin :
add_action('wp_head','add_sleect2_again');
function add_sleect2_again(){
global $post;
$edit_page=vibe_get_option('create_course');
if($post->ID==$edit_page){
remove_action('init','pmprorh_enqueue_select2');
echo '<script src="'.VIBE_URL .'/assets/js/old_files/select2.min.js"></script>';
}
}
This reply has been marked as private.
We checked your scripts and mostly find them to be fine .
We suspect that this can be due to zopim chat widget .
Can you please try removing the zopim chat from your fornt end edit page ?
This reply has been marked as private.