Forum Replies Created
-
Author
-
alexhorieParticipant
thank you, it is really working, was something here the problem, one more thing only, where i can add this same code in the login part?
thank you!
alexhorieParticipantHello, why for me still the same? i cleaned the cache and looks the same problem….
alexhorieParticipanti just changed and the code is there, i tried to add the code you sent me, but didnt work…
thank you!!!
alexhorieParticipantHi, i was trying to figure out and i saw something about iframe from the social login that i use, i dont know if you can help with that, but i need edit the css from that iframe i think
Attachments:
You must be logged in to view attached files.alexhorieParticipantohh for some reason i copy the wrong code lol sorry! but in the #192194 is what i added, just without the
alexhorieParticipant`<div class=”six columns”>
<input type=”text” id=”reg-username” name=”signup_username” class=”inputbox” required
placeholder=”<?php _e( “Username”, ‘kleo_framework’ ); ?>”>
</div>
<div class=”six columns”>
<input type=”text” id=”fullname” name=”field_1″ class=”inputbox” required
placeholder=”<?php _e( “Your full name”, ‘kleo_framework’ ); ?>”>
</div>alexhorieParticipantTHanks, kind worked, but looks like a bit weird, there is some way to avoid that?
this is what i did<?php echo do_shortcode(“[do_widget id=oa_social_login-7]”); ?><input type=”text” id=”reg-username” name=”signup_username” class=”inputbox” required
placeholder=”<?php _e( “Username”, ‘kleo_framework’ ); ?>”>Attachments:
You must be logged in to view attached files.alexhorieParticipantAh thanks, but the users kind get angry, i dont think they going to send me all those info, imagine, you try to make a profile, dont works ann someone ask all those things, i ll be angry.
but there is some way to limit the size of the photo?February 14, 2018 at 01:00 in reply to: This still working ? Increase profile profile image size – Increase avatar size in buddypress #188598alexhorieParticipantthanks!
now it worked!!February 13, 2018 at 04:47 in reply to: This still working ? Increase profile profile image size – Increase avatar size in buddypress #188498alexhorieParticipantHi, i dont know why, but didnt work….
February 7, 2018 at 00:53 in reply to: This still working ? Increase profile profile image size – Increase avatar size in buddypress #188003alexhorieParticipanti increase 100px, but dont looks like is working, the avatar thumb is the one in the members page right?
if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) )
define( ‘BP_AVATAR_THUMB_WIDTH’, 220 ); //change this with your desired thumb widthif ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) )
define( ‘BP_AVATAR_THUMB_HEIGHT’, 220 ); //change this with your desired thumb heightif ( !defined( ‘BP_AVATAR_FULL_WIDTH’ ) )
define( ‘BP_AVATAR_FULL_WIDTH’, 780 ); //change this with your desired full size,weel I changed it to 260if ( !defined( ‘BP_AVATAR_FULL_HEIGHT’ ) )
define( ‘BP_AVATAR_FULL_HEIGHT’, 780 ); //change this to default height for full avataralexhorieParticipantahhh now i understand, sorry, i cannot use horizontal search outside members directory?
alexhorieParticipantHi, I did all that
was in horizontal mode already, I added to the directory, but still shows in vertical…https://trans4date.com/members2/
Attachments:
You must be logged in to view attached files.alexhorieParticipantHello, i added the code, but the pages still the same…
Attachments:
You must be logged in to view attached files.alexhorieParticipantthey appear, but in the vertical way, not in horizontal…
Attachments:
You must be logged in to view attached files.alexhorieParticipantHi
i made this test https://trans4date.com/members2/in the page code i used for test, but only shows on vertical, the [bps_display form=2913] is the one who is in the members-directory new page that you create and works horizontal, but in another page vertical only.
[bps_display form=2913]
[bps_display form=2836]
alexhorieParticipantHello thank you!!
but when i still try use the custom profile search dont shows there [bps_display form=2913]
do you have some idea why?alexhorieParticipantAh is ok for me, because the only modifications i have there is about the numbers of users in the web site.
you can install new child theme please!Thank you!
alexhorieParticipantanother thing that i tried is add this
[bps_display form=880]in other pages, i only able to add the vertical one, the horizontal never works.
I even made a test page to showhttps://trans4date.com/teste-search-bar/
code that i using in the page
[bps_display form=880] (this one im using form horizontal, but shows vertical)
[bps_display form=2762]
alexhorieParticipantI deleted that code for the advance search and still my horizontal bar dont works, i dont want any custom changes there, i just want the original.
The horizontal form in the theme options is on
also i did this in the content, a custom search field and is not working[bps_display form=880]
alexhorieParticipantAll the modifications in the child theme is about everything i asked here.
in the css file i have only the one that i copy from here and in the end dont worksalexhorieParticipantHello, the horizontal search bar still not working, only works the vertical search
alexhorieParticipantThank you
but i have custom gender fields, for people online and total members im using this code that i got here in the support before, but for increase my custom genders is not working, also i want increase the offline numbers of the custom gender.there is this in the code you sent me, is the custom means i can add the custom gender here and increase the number of users?
case ‘custom’:
$image = ( $image == ” ) ? get_template_directory_uri() . ‘/assets/images/icons/steps/status_01.png’ : $image;$field = $field != ” ? $field : false;
$value = $value != ” ? $value : false;
$online = $online == ‘yes’ ? true : false;
$number = bp_member_statistics( $field, $value, $online );
break;the code im actually using
add_filter( ‘kleo_online_users_count’, ‘kleo_my_online_users’, 10, 2);
function kleo_my_online_users($number, $value) {
switch ($value) {
//ALL MEMBERS ONLINE
case FALSE:
return $number+13;
break;case “Woman”:
return $number+8;
break;case “Man”:
return $number+6;
break;case “M2F Pre-op”:
return $number+1000;
break;default:
return $number;
break;
}}
add_filter( ‘bp_get_total_member_count’, ‘kleo_my_total_members’,99 ,1 );
function kleo_my_total_members($number) {
$incremented_number = ( $number + 1000 );
return $incremented_number;
}alexhorieParticipantalexhorieParticipantbut in the page i testing is not working, gives me 0
i tried other fields and all give me 0 -
AuthorPosts