Forum Replies Created
-
Author
-
jaybiniParticipant
I’m really new with facebook apps , how can this be achieved i want to retrieve the gender , birthday, interests, location(country & city). How can i achieve this please help
February 13, 2014 at 12:19 in reply to: display **** in profile tab when user is not a friend #10946jaybiniParticipanti don’t know how to write the conditions, for example can u make the content of “name” be **** for public users and appears for friends
thank youjaybiniParticipantthe function compatibility_score is giving me score of 1 for all members even if they are have different gender
jaybiniParticipantI did it and still not working
This is my code now i made small numbers to c if its working its still gives me 80 match and so whatever
add_action('after_setup_theme','kleo_my_match');
function kleo_my_match() {
global $kleo_config;
$kleo_config['matching_fields']['starting_score'] = 1;
/*required for initial match. If the sex preference matches it will continue to the specified fields below
$kleo_config['matching_fields']['sex'] = 'I am a';
$kleo_config['matching_fields']['looking_for'] = 'Looking for a'; */
//sex percentage
$kleo_config['matching_fields']['sex_percentage'] = 0;
//single value fields like select, textbox,radio
$kleo_config['matching_fields']['single_value'] = array (
'Gender' => 2,
'Marital status' => 3,
'Country' => 5,
'City' => 5,
'Occupation' => 8,
'Annual Income' => 9,
'Education' => 8,
'Political Views' =>2,
'Religion' => 1,
'Body Type' => 2,
'Ethnicity' => 6
);
//multiple values fields like multiple select or checkbox
$kleo_config['matching_fields']['multiple_values'] = array (
'Interests' => 2,
'Languages Spoken' => 3
);
}
jaybiniParticipantI want to fix the matching system since i changed the sex fields to “gender” instead of “I am a” and “looking for” so that if gender is man when search for a woman it gets him 49% matching for example, now it gives the same match whether its a man or woman, i dont want a man searching for a man and woman for a woman
jaybiniParticipant1. I made the same but to “recent topics” but where can i edit the html code of recent topics ?
2. I want also to make the same for “Forum categories” i used before for the blog posts categories the following code
<?php
$catquery = new WP_Query( 'cat=1&posts_per_page=5' );
while($catquery->have_posts()) : $catquery->the_post();
include('latest-news.php');
endwhile;
?>
jaybiniParticipant#1. Where can i change the “Name” of members in breadcrumbs into “username” instead
is not mentioned in the topics and it still viewed as name all the other code worked for me but the breadcrumbs still show “Name”
jaybiniParticipantI had a jquery line of code overlapping the cropping javascript so i moved it and worked
thank youjaybiniParticipanti fixed it i have to enter the group to make it work.
Anyway i have another issue, when i click on about me for example it disappears and its contents appear , and so on when i click on any other tab when i click on looking for , contents appear teh tab disappear and about me tab appears again :S
i updated the theme and its still like that
jaybiniParticipantI tried adding lifestyle tab but it didn’t appear
$bp_tabs[‘lifestyle’] = array(
‘type’ => ‘regular’,
‘name’ => __(‘Life Style’, ‘kleo_framework’),
‘class’ => ‘regulartab’
);from where do i get the tabs names ‘lifestyle’, ‘visual-apperance’, ‘base’ and so on
what can i do ?jaybiniParticipantI used configure SMTP and give me an error
“An error was encountered while trying to send the test e-mail.
SMTP Error: Could not connect to SMTP host.”I’m suposed that i had put the right info
jaybiniParticipantits not working still the existing one overwrites this plugin i need to change the emails
please helpjaybiniParticipant1. when it says who’s online this represent all users on the website who are online or my friends who are online ?
2. if i want to limit it to premium membership is all users are going to appear too ?
3. I don’t want users to be flooded with messages from random people on the website.that’s what I want to reach
Could u help me please
thank ujaybiniParticipantafter making a button in the member’s profile , i want to make the chat “one to one” conversation for example u can’t talk to several people in the same time u have to close the conversation to start another one.
how can this be done ?jaybiniParticipanti deactivated bbpress and installed again and worked
jaybiniParticipantThis reply has been set as private.jaybiniParticipantThank you Sir
I noticed that i have to edit it from the main file sweetdate/framework/widgets/widget_recent_posts.php
not to copy it to the sweetdate-child folder right ?I want to make only the last latest post appears in a big view , like what i posted earlier in http://www.people.com/people/
Thank you
jaybiniParticipantyea , thank u for the update , i made the restriction but what’s happening now is it only works on sending the message, i want the premium member sends and receives messages only, other members can’t receive unless they are premium members so if they are free members they can’t access the message until they select the premium membership
jaybiniParticipantyea i already did that, but what i want is to remove the “public message” written in the profile page above the “private message”
jaybiniParticipantHey sqadmin,
where can i find the recent_posts-3 code so i can edit it?
iI want to edit the html add some <p> <span> and so onjaybiniParticipantone last thing , I just noticed that only signed in users can c the recent posts. how can i make guests c the posts too ?
-
AuthorPosts