itsabhist
Forum Replies Created
-
Forum: Plugins
In reply to: [BP Profile Search] conditionally display search field based on conditionhi
after Enabling Select2
above code is not workingplease help
Forum: Plugins
In reply to: [BP Distance Search] auto store user locationHi
I am not software developer.
But I am trying to make this.Also requested to spare time for same if possible .
Forum: Plugins
In reply to: [BP Distance Search] auto store user locationexactly
but i think user dose not require to visit profile page .
location update can be use from anywre based on add actionadd_action( 'template_redirect', 'update_location'); funtion update_location() { //store current lat lng to user current location field }
??
Forum: Plugins
In reply to: [Nextend Social Login and Register] Google login suddenly stopped workingDuring troubleshooting it observed that
My login is working fine for existing user
But when new user register
It redirecting to localhost/register/?loginSocial=googlelInstead of
localhost/wp-login.php?loginSocial=googlelAnd new registration not working
Please help
Forum: Plugins
In reply to: [BP Distance Search] auto store user locationeagerly waiting for reply
Expecting custom function which update automatically user geolocation lat long when function run in xprofile field like “current location”
Which further can use as add_action in different situations
- This reply was modified 2 years, 9 months ago by itsabhist.
Forum: Plugins
In reply to: [Push Notification for Post and BuddyPress] Group subscription dialogHi
I am big fan this pluginI am not coder just do for hobby
I feel in function
PNFPB_icforum_push_notifications_web()
We can do smal modification so that buddypress user dose not get push notifications for self activity
$deviceids=$wpdb->get_col( "SELECT SUBSTRING_INDEX(device_id, '!!', 1) FROM {$table_name} WHERE device_id NOT LIKE '%@N%' AND device_id NOT LIKE '%!!%' AND (subscription_option = '01000' OR subscription_option = '01100' OR subscription_option = '01010' OR subscription_option = '10000')" );
We can add additional condition
userid not like bp_loggedin_user_id();
- This reply was modified 2 years, 9 months ago by itsabhist.
Forum: Plugins
In reply to: [Push Notification for Post and BuddyPress] Group subscription dialogThen I feel there is scope of improvement for buddypress activity notification should not send to same user who posted activity.
It’s my suggestion.
Forum: Plugins
In reply to: [Push Notification for Post and BuddyPress] Group subscription dialogThanks
One more thing
I feel when any user post any activity same notification receive to same user also.Is is correct the it requires to resolve.
Forum: Plugins
In reply to: [Push Notification for Post and BuddyPress] Group subscription dialogThanks
GreatCan your add additional options in group notification like only send notification for favorites post only
Forum: Plugins
In reply to: [Push Notification for Post and BuddyPress] Group subscription dialogthanks
Now showing as desired
But now showing alert as showing belowNotice: Undefined variable: cookie_name in /home/u992033758/domains/localhost/public_html/wp-content/plugins/push-notification-for-post-and-buddypress/pnfpb_push_notification.php on line 2346 Notice: Undefined index: pnfpb_group_push_notification_1 in /home/u992033758/domains/localhost/public_html/wp-content/plugins/push-notification-for-post-and-buddypress/pnfpb_push_notification.php on line 2347
Forum: Plugins
In reply to: [Push Notification for Post and BuddyPress] showing errorgreat thanks
Forum: Plugins
In reply to: [Push Notification for Post and BuddyPress] Custom notificationThanks in advance ??
Forum: Plugins
In reply to: [Push Notification for Post and BuddyPress] Custom notificationHi
Plugin URI: Plugin help page as mentioned above is not openingForum: Plugins
In reply to: [Push Notification for Post and BuddyPress] Custom notificationPlease help for building function as mentioned above ‘someting’
Which send user to notification and push notifications.
- This reply was modified 2 years, 9 months ago by itsabhist.
Forum: Plugins
In reply to: [BP Profile Search] conditionally display search field based on conditionThank You
jQuery( document ).ready( function ( $ ) { $("#field_4_match_single").change(function() { if ($(this).val() == "Teacher") { $('#field_10_like_wrap').show(); } else { $('#field_10_like_wrap').hide(); } }); $("#field_4_match_single").trigger("change"); });
task accomplished ??