Muhammad Kashif
Forum Replies Created
-
Forum: Plugins
In reply to: [Match Me for BuddyPress & BuddyBoss] Matches between 2 profilesHello Marc,
thank you for getting in touch , yes it will do what jotakeoke has asked.
Pro version is scheduled to release in mid July.
If you need it before that you can check FAQ for customization options.
- This reply was modified 8 years, 11 months ago by Muhammad Kashif.
Forum: Plugins
In reply to: [Match Me for BuddyPress & BuddyBoss] Order member by percentage matchno its not possible as percentage is being calculated on click.
There could be a hack to do that.
1. Calculate percentage on page load instead of button click (It may slow down the site ridiculously if you have lot of fields or hosted on shared hosting)
2. Sort via Javascript (Advanced Javascript Skills required to do that)Forum: Plugins
In reply to: [Match Me for BuddyPress & BuddyBoss] Match on a number rangeI hope my answer helped.
here is the code to get field name by id and display
$field = new BP_XProfile_Field( $fd_id ); echo $field_name = $field->name;you can print the field name right below this line
$percentage += $field_percentage_value;Forum: Plugins
In reply to: [Match Me for BuddyPress & BuddyBoss] Match on a number rangethat is an exceptional case and can be achieved by some customization to the code.
if you are comfortable writing code you can add a condition for that particular field to return a match when your criteria is met.Yes possible you can print the field name if matched but that will require some customization to the code as it returns only matching number only.
Forum: Reviews
In reply to: [Match Me for BuddyPress & BuddyBoss] Not working when logged outZarevac is right plugin only works for logged in users as we compare the profile of logged in user and user being viewed. in case someone is not logged in we will not have 2nd user to compare between 2.
Forum: Reviews
In reply to: [Match Me for BuddyPress & BuddyBoss] Not working when logged outYes possible you can print the field name where score count is being increased.
I will add an option to switch between automatic and manual calculation in next update.
I did that way initially but while testing I came to know that it slows down the site when you have good number of profile fields and members because it will calculate match with each member.
Forum: Plugins
In reply to: [Match Me for BuddyPress & BuddyBoss] Some questionI will need to make it translation ready before you can start translating in other languages.
Forum: Plugins
In reply to: [Match Me for BuddyPress & BuddyBoss] Some questionthank you for appreciating the plugin.
1. Currently Cross match is not possible but I am thinking to add that in future releases.
2. I have updated the plugin today and match percentage on members directory is there now.for translation here is the link to get started https://translate.wordpress.org/projects/wp-plugins/match-me-for-buddypress
I have updated the plugin with calculate percentage button on members directory, please check and provide your feedback.
I have planned it for first week of May.
There is already a function which calculates percentage for 2 users with given ids
hmk_get_matching_percentage_number( $user_displayed = '' , $user_logged_in = '' )You can pass 2 ids and you will get the percentage in number.
$percentage_object = new Mp_BP_Match(); $percentage = $percentage_object->hmk_get_matching_percentage_number($user_id1 , $user_id2))- This reply was modified 9 years ago by Muhammad Kashif.