17873 comments found.
i want add custom shortcode , I cannot find its position in the code.
Can you help me point it in the code so I can insert it can you help me
https://i.ibb.co/s6Yw5Jv/Screenshot-2021-05-10.pngThis area is currently not customisable, we are adding provisions in our react script to customise this in our next update.
Hi,
There is a glitch in redirecting from normal page (e,g. frontpage) to the dashboard area (user is logged in) when i click to the dropdown profile menu. The page becomes blank. I have to reload the page twice, thrice, even more than that to display the dashboard page. What might be the issue?
not sure, try disabling caching on that page and recheck.
how to restrict instructor/student from uploading media in default wp media, instead enabling them to upload to drive only?
this option is not yet available.
post admin-ajax.php is taking 3s to load. it is causing a serious issue in my website speed.
i checked the gtmetrix and found admin-ajax.php action=wplms_get_signon_security
is the only reason causing this issue. how can i remove this action. this is haappening when i am loading my homepage only
this is resolved now.
please let me know how is this possible with wplms. in outschool an instructor can set an intro video: https://youtu.be/LF9qvOgPoTQ?t=292
i want the same in wplms
This is possible, we shared this fix to a user and can share with you as well. Are all the videos youtube videos ?
yes please let me know how is this possible? or share the link of that user’s topic
Can I extend this – https://wplms.io/downloads/wplms-application-forms/ such that they have to pay an application fee and fill in custom field when they are applying for a course. They can then be accepted or rejected. (application fee wont be refunded)
No, I would recommend using “External link” in the course, which redirects the user to a page which can have a gravity/ninja form and you can collect payment on form submission. The user can then manually add students in the course
Oh I see. But is there a way we can use a script to automate instead of manually adding user to course
Yes, both ninja forms and gravity forms has hooks and we need user’s email or ID and Course name/ID and user can be enrolled by 1 simple function :
bp_course_add_user_to_course($user_id,$course_id)in short this can be easily added.
Amazing, I’ll let you know when I purchase and need to use the hook
Hello,
Is it possible to make access to a course expire after a set date after enrolling. For example, access to the course should expire after 90 days after enrolling.
Yes this is default behaviour, you enter a maximum course duration during which the user must complete the course.
Please explain full procedure of email setup i have tried a lot, but can’t find. please attach screenshots as well.
please see docs.wplms.io
VR video can be play in wplms player
is 360 or vr video can be play in wplms player?
Yes, we’re actually working on this and this could be available in the next WPLMS update.
member profile layout in PWA doesn’t match with the one i create using elementor, especially color, margin and align
This fix is coming up in the update.
i have vibebp version 1.5.5. how do i update to the latest?
WP admin – updates, click on “check again” and you should see the update.
ok…done….it will be better to have “All Courses” as buddypress menu. I manage adding it from Pages, but the layout in dashboard is quite different with the normal page layout, just like it happens in member profile layout before the new update. Please fix this too.
in short, adding page in pwa menu has a different layout (especially margins, padding and text color) while viewing in the pwa itself.
This fix is coming up in vibebp update. 1.5.6 is not the update which has this fix.
i have purchased wplms 2 times with same account in envato.
the question is.
do i have 6 months support for both the products?
currently i am using one liscence for your forum website and i manage all the topics from there.
If these are two different user and accounts then yes, you need to renew them saperately.
My error
/public_html/wp-content/plugins/vibe-bbb/classes/class.settings.php on line 53
/public_html/wp-content/plugins/vibe-zoom/includes/class.settings.php on line 27
wplms_plugin/includes/theme/class.course.component.php on line 120
Please make sure you have the latest plugin version the line numbers do not match to any errors. Possible messages can indicate missing settings in the settings of these plugins. If you can post on wplms.io/support it would be really great.
Course page broken – WPLMS 4!
It is quite weird that this time you have decided to release a new WPLMS Version 1.5.6.1 update whilst VibeBP remained unchanged on Version 1.5.6.
Nevertheless, all course pages are broken. This is becoming a huge setback.
Please help: https://wplms.io/support/forums/topic/course-page-broken-wplms-4/#post-356684
Vibebp1.5.6.1 is also coming up. If you are using service workers try changing the version and refer are the service worker to update the cached files in your browser.
I honestly do not follow what you are saying!
Everything was working fine until the new release updates for WPLMS and VibeBp is still missing. I did update/remove the cache files, even used the incognito window but nothing works: the course page is broken so as course units and app page – also behaving so strange.
Please can you check it because I did share my user credentials.
Please update the FTP details on the topic.
The FTP details have been provided: https://wplms.io/support/forums/topic/course-page-broken-wplms-4/#post-356692
Thank you, please reply on the topic.
while creating a course by an instructor, is there a way to disabled certain course fields e.g. course duration ?
yes, it is possible to set a default value and disable it, you can also add custom fields which you can use later on. refer link
See I don’t have that option for Course Navaigation https://prnt.sc/12ojy75
ok…i forgot to install the plugin
Hi, is there anyway I update to V4.x but still keep old course status, means not use PWA? I want to the keep the discussion/comment as V3.x style, just like normal blog comment style
Yes, this is exactly what is coming up in the next 4.1 update. You will be able to retain the version 3.x framework along with version 4.x app.
Hi!
Is there a way to add a loading gif when login? Once you complete user and password, or login with social media credential the screen stays a while without any sign of work till it reloads and redirect to backend. Is a little confusing.
We’ve added a loading icon on the button in our upcoming update of the vibebp plugin.
Ok, nice. One question. The notification bell only shows logged in user actions? when an instructor upload any news or update the students from that course get any notification?
Hello
I got this code from ALEX
add_filter(‘vibebp_vars’,function($vars){ $vars‘settings’[]=[‘type’=>’text’,’id’=>’username’,’label’=>_x(‘Username’,’login’,’vibebp’),’value’=>’’,’class’=>’input’]; return $vars; }); //Process custom field add_filter(‘vibebp_register_user_bypass’,function($flag,$body){ if(is_array($body)){ foreach($body as $key => $value){ if($value[‘type’] == ‘username’ && !empty($value[‘value’])){ if(username_exists( $value[‘value’] )){ $flag = 0; } } } } return $flag; },10,2); //Process custom field add_filter(‘vibebp_register_user_args_signup’,function($user_args,$body){ if(is_array($body)){ foreach($body as $key => $value){ if($value[‘type’] == ‘username’ && !empty($value[‘value’])){ $user_args[‘user_login’] = $value[‘value’]; } } } },10,2);
return $user_args;
however, the username is not saved it gets replaced with the email, kindly check the code
Please continue the discussion on support topic itself.
Where do I get this service worker version? I am getting an error while analzing my app in pwabuilder.com. When i enable service worker in vibebp settings and got to service worker tab, service worker version is blank.
It is there in wp admin – vibebp – settings – service worker, need site link to get more details
service worker is working fine…but not able to detect in pwabuilder
The only reason this would happen is when the scope of the service worker mis-matches with scope of manifest. please see : https://docs.wplms.io/pwa#pwa-plus-icon-does-not-appear
I still don’t get it. When I check the menifest generated, there i found “scope”: ”//”, do I need to change it to something?
the scope should be / if your wordpress is installed on TLD. For sub-domains scope : ”/subfolder/” where wordpress is installed.
this is really confusing. I tried everything I could, still service worker is not detected. I got only 60 score in pwabuilder because of not detecting the service worker
the scope in your manifest.json file is a double slash (/) , if you access the file via FTP and change it to single slash ( / ) the issue should be resolved.
"scope":"/"
atlast…haha…it works…..i thought of giving up…
The notifications next to the dropdown profile menu doesn’t work whenver there is an activity going on between instructor and student like “student has subscribed new course”. I have already configured the touch points also. https://prnt.sc/12khfj8
This is live notifications, this video might help : https://www.youtube.com/watch?v=Rnq1qphg9aw , there is another buddypress notifications which is different from this one.
so is there any indicator like a dot near the buddypress notifications so that user can easily get notified?
Yes the count appears on the bell icon
how come instructor can also able to join his own as well as others’ courses?
Enable WP admin – WPLMS – Course manager – Instructor can add students to course , then use this https://www.youtube.com/watch?v=HTLVNePHMBU
no i mean instructor himself is able to take course created by himself..so the no of student enrolled is affected
Currently, he has to enrol himself to the course to be able to pursue it as a student.
haha…expecting more changes in next update….like instructor shouldn’t be able to enroll courses created by himself or others….still there are other bugs as well….
Please do share the bugs with us.
I have purchased support, but still https://wplms.io/support/ does not let me create a ticket
Please check now.