MrVibe

Forum Replies Created

Viewing 15 posts - 5,191 through 5,205 (of 5,273 total)
  • Author
    Posts
  • in reply to: Error with sending and receiving email #3205
    MrVibe
    Keymaster
    There could be an issue with your mail server, try installing Wp mandrill plugin to confirm that it is not a server issue.
    in reply to: Creating a Producer Role with certain abilities. #2882
    MrVibe
    Keymaster
    Instructor = Editor in WPLMS, so producer role should have all capabilities of Editor. Registering a new role is easy, refer : https://codex.wordpress.org/Function_Reference/add_role Producers will not be visible in All instructor page, because it only finds instructors. Once added, you'll be able to add the users of this user role in course via coauthors plugin but here's a catch, you do not want to display these users as instructors of course. You'll need to use the filter : wplms_display_course_instructor ($instructor_html,$course_id) a. Find the authors of course b. check the user role of each author c. Remove author if role matches producer. d. generate instructor_html again. example snippet:  
    
    add_filter('wplms_display_course_instructor','product_instructor',10,2);
    
    function product_instructor($instructor_html,$course_id){
    
    $instructor_ids = apply_files('wplms_course_instructor',get_post_field('post_author',$course_id),$course_id);
    
    if(!is_array($instructor_ids)){
    
    	$instructor_ids = array($instructor_ids);
    
    }
    
    foreach($instructor_ids as $key => $instructor_id){
    
    	$data = get_userdata($instructor_id);
    
    	if(in_array('producer',$data->roles)){
    
    	unset($instructor_ids[$key]);
    
    	}
    }
    $instructor = '';
    foreach($instructor_ids as $instructor_id){
    
    $instructor = '
    '.bp_course_get_instructor_avatar(array('item_id'=>$instructor_id)).'
    '.$displayname.''.$special.'
    '; $instructor .= apply_filters('wplms_instructor_meta','',$instructor_id); $instructor .='
    '; } return $instructor; }
    in reply to: Affiliate System Implementation #2876
    MrVibe
    Keymaster
    1. Try using Affiliate WP : https://affiliatewp.com/ 2. And its BuddyPress addon plugin : https://affiliatewp.com/addons/buddypress/
    in reply to: create a (landing) page without top menu #2841
    MrVibe
    Keymaster
    in reply to: Problem with BP Social Connect #2761
    MrVibe
    Keymaster
    Twitter is a known issue, as twitter api does not return email id which is required to create the account. However Facebook and Google work perfectly. facebook is also enabled on our demo site : http://themes.vibethemes.com/wplms/skins/default
    in reply to: Course Results bad translation #2760
    MrVibe
    Keymaster
    The time comes from timestamp saved in the database, we've seen this issue before but have not been able to replicate it on our systems to fix it. the %s is coming from the translation files, the %s is a label in a string which is replaced by some value from the code, which in this case would be number of months/days etc. So, check the translation files of WPLMS theme for this.
    in reply to: I want to translate QUESTIONS #2758
    MrVibe
    Keymaster
    This is located in the WPLMS-DWQA Addon plugin. We do not have translation files for this plugin and it is not set on auto-update. So you'll need to change this text directly in the code. Follow below steps : a. Go to WP Admin - Plugins - Editor - WPLMS DWQA - wplms-dwqa.php b. Locate the code : 'label'=>__('Questions','vibe'), c. Change it to : 'label'=>__('Questions in My Language','vibe'), d. Save. Hope this helps !
    in reply to: Site in two languages? #2757
    MrVibe
    Keymaster
    It is possible but there is a limitation. Possible with multilingual plugins like WPML. refer tutorial : https://wplms.io/support/knowledge-base/using-wpml-with-wplms/ Limitation : The Course directory would still show all the courses connected with all the languages.
    in reply to: My site can't translate anything #2756
    MrVibe
    Keymaster
    Please re-check my reply. If the folder exists then it should be accessible to the world, as shown in the demo link. Check the permission level of the languages folder it should be 755  
    in reply to: iPhone Menu is not working #2639
    MrVibe
    Keymaster
    Thanks for the credentials. No, we have not been able to find a solution for your site so far. This is the only such instance of this issue, and it is the first time we're seeing this.  We'll need some more time to debug this. This is not an RTL issue because other rtl sites seem to be working fine. In case you've added any custom CSS, try removing it, to see if the issue gets resolved. Thanks for patience.  
    MrVibe
    Keymaster
    For the time being you can use this plugin : https://wordpress.org/plugins/custom-forgot-mail/
    in reply to: Remove cache #2480
    MrVibe
    Keymaster
    I am not sure what you mean by unwanted data. A screenshot would help a lot. Try clearing your browser cookies, also try clearing transient cache(persistent cache added by WPLMS ), from WP Admin - WPLMS - Cache duration - set to 0
    MrVibe
    Keymaster
    We've added a forgot password mail template in WPLMS - Emails , in the coming update 1.9.9:
    in reply to: Edit Course => Save settings => As a draft ?? #2435
    MrVibe
    Keymaster
    This is because you have not given Publish access to your instructors. Go to WP Admin - WPLMS - Course Manager - Admin Approval for Course  Disable this setting.
    in reply to: How to get rid of By Vibe Themes #2425
    MrVibe
    Keymaster
    Change the Author & credits from WP Admin - WPLMS - Miscellaneous seciton
Viewing 15 posts - 5,191 through 5,205 (of 5,273 total)