-
Michael replied to the question Require User to agree with Site Terms and Conditions upon signup? in the forum Boss. theme 8 years, 10 months ago
FYI: Currently I have added an Acceptance box into the normal BP Registration page
Which works fine outside WP Social Login.
Would it be possible to add some Custom JS code to include this Acceptance box if users Register using WP Social Login?
Pseudo code inspiration:
add_action('login_footer',…
[Read more] -
Michael replied to the question Require User to agree with Site Terms and Conditions upon signup? in the forum Boss. theme 8 years, 10 months ago
I have also tried to follow this guide:
https://wordpress.org/support/topic/feature-request-checkbox-to-accept-tc?replies=3But there is a mistake in the JS code and it depends on the “Agreeable” plugin which currently doesn’t work.
Best regards,
Michael -
Michael replied to the question Require User to agree with Site Terms and Conditions upon signup? in the forum Boss. theme 8 years, 10 months ago
There is also https://premium.wpmudev.org/project/terms-of-service/
but at $19 / month that is pretty expensive? I am not sure if it will work with WP Social Login.
Best regards,
Michael -
Michael replied to the question Require User to agree with Site Terms and Conditions upon signup? in the forum Boss. theme 8 years, 10 months ago
Hi guys,
I am still looking for a solution to this problem. It appears that
http://codecanyon.net/item/wp-accept-to-register-terms-of-service-p-policy/6278256 does not work with BP registration page https://wordpress.org/plugins/agreeable/ has bugs which make it unusable.
http://codecanyon.net/item/i-agree/5271798 does not work with BP…[Read more] -
Michael replied to the question Featured Image Size in the forum Social Learner 8 years, 10 months ago
Here is an example of the associated code from a “single” post:
background-image: url(/wp-content/uploads/2016/02/PI-day-624x101.png);
background-image: url(/wp-content/uploads/2016/02/interview_1455870962-624x416.jpg);
As you will notice from this code both single post images are constrained to a relatively low-quality 624px width.
Best regards,
Michael -
Michael replied to the question Featured Image Size in the forum Social Learner 8 years, 10 months ago
I have tried to change options in (see below picture). Small / Big only changes the height but the image dimensions remain the same (624px wide).
Best regards,
Michael -
Michael replied to the question Featured Image Size in the forum Social Learner 8 years, 10 months ago
Hi @pallavi,
The image quality is fine in the Blog Post Feed (around 1280px wide by 500 px).
I notice that all my individual (single) Blog posts in the Social Learner theme is 624px wide and around 420 high. Can I change this somehow?
Best regards,
Michael -
Michael replied to the question Featured Image Size in the forum Social Learner 8 years, 10 months ago
Hi @pallavi,
I notice that all my individual (single) Blog posts in the Social Learner theme is 624px wide and around 420 high. Can I change this somehow?
The image quality is great in the Blog Post Feed but not on Single Posts.. (624 x around 420 high).
Best regards,
Michael -
Michael replied to the question Ideas for the future version of Social Learner (2.0?) in the forum Social Learner 8 years, 10 months ago
Not related to Social Learner per se but I agree with @jeffghost that the Boss registration page could need a redesign to make it a bit more modern and increase user conversion (https://www.buddyboss.com/support-forums/topic/how-to-make-registration-page-look-better/#post-62715).
Here is some inspiration:…[Read more]
-
Michael replied to the question How to : Make registration page look better ? in the forum Boss. theme 8 years, 10 months ago
Agreed,
Perhaps BuddyBoss can get some inspiration for a more modern registration page here:
http://userproplugin.com/userpro/#registration/Including an option for “User must Agree to Terms and Conditions” – more professional IMHO – see attached image.
Best regards,
Michael -
Michael replied to the question How to : Make registration page look better ? in the forum Boss. theme 8 years, 10 months ago
Perhaps BuddyBoss can get some inspiration for a more modern registration page here:
Including an option for “User must Agree to Terms and Conditions” – more professional IMHO – see attached image.
Best regards,
Michael -
Michael replied to the question How to : Make registration page look better ? in the forum Boss. theme 8 years, 10 months ago
Perhaps BuddyBoss can get some inspiration for a more modern registration page here:
Best regards,
Michael -
Michael replied to the question Require User to agree with Site Terms and Conditions upon signup? in the forum Boss. theme 8 years, 10 months ago
It appears that agreeable is buggy https://wordpress.org/support/plugin/agreeable
So far no luck finding another solution. Only alternative is a $15 Codecanyon plugin which has not been updated in two years 🙁
It needs to work with social login as well…
Best regards,
Michael -
Michael replied to the question Require User to agree with Site Terms and Conditions upon signup? in the forum Boss. theme 8 years, 10 months ago
It appears that agreeable is buggy https://wordpress.org/support/plugin/agreeable
So far no luck finding another solution. Only alternative is a $15 Codecanyon plugin which has not been updated in a year 🙁
It needs to work with social login as well…
Best regards,
Michael -
Michael started the question Require User to agree with Site Terms and Conditions upon signup? in the forum Boss. theme 8 years, 10 months ago
Can anyone recommend a plugin or solution for this? It is quite urgent.
I have tried https://wordpress.org/plugins/agreeable/ but it doesn’t work well with the Boss theme
See the last line in attached picture.
Thank you in advance. 🙂
Best regards,
Michael -
Michael replied to the question Boss. Theme 2.1.3 Fix – Titles in BuddyPress pages in the forum Boss. theme 8 years, 10 months ago
Following the Boss 2.1.2 update I and other users discovered that the Browser Title read test on BP pages.
It was promptly fixed by BuddyBoss and lead to Boss 2.1.3. 🙂
Best regards,
Michael -
Michael replied to the question Make WordPress standard gallery responsive in Boss / Social Learner? in the forum Social Learner 8 years, 10 months ago
Will just bump this one in case it got missed during the recent Boss 2.1.3 update.
I really appreciate your input.
Best regards,
Michael -
Michael replied to the question Registration Birthday Picker – Minimum Age requirement in the forum Social Learner 8 years, 10 months ago
The JS code works:
$('select#field_601_year option').each(function(){
var legit_year = GetTodayYear() - 13;
var current = $(this);
if ( current.val() > legit_year ) {
current.remove();
}
});function GetTodayYear() {
var tdate = new Date();
var yyyy = tdate.getFullYear();
return yyyy;
}However it doesn’t filter for month/day -…[Read more]
-
Michael replied to the question Registration Birthday Picker – Minimum Age requirement in the forum Social Learner 8 years, 10 months ago
I think it can be done using JS:
https://wordpress.org/support/topic/minimum-birthdate-age?replies=6I will try to follow the guide but please feel free to add suggestions if you have experience in this matter.
Best regards,
Michael -
Michael replied to the question Registration Birthday Picker – Minimum Age requirement in the forum Social Learner 8 years, 10 months ago
I think it can be done using JS:
https://wordpress.org/support/topic/minimum-birthdate-age?replies=6I will try to follow guide but please feel free to add suggestions if you have experience in this matter.
Best regards,
Michael - Load More