Replies
- Brajesh Singh on August 9, 2016 at 1:06 pm in reply to: [Resolved] Auto rename uploaded Mediapress files for security #5006
Thank you for the feedback.
Will certainly add tutorials to show compatibility with the new plugin in future. Currently my hands are full, so please use the above approach for now(and you may ping me in 15 days for the new plugin).
Thank you
Brajesh - Brajesh Singh on August 9, 2016 at 1:02 pm in reply to: Feedback / Request : BP Member Type Generator + Conditional Profile Fields #5005
Hi Lavish,
I am sorry I could not find time. I will look at it tonight.Thank you
Brajesh Hi,
Thank you for the clarification. The code for loading newest activity is part of bussypress.js(that comes with your theme or loaded via the theme compatibility).Here is the code section in that js file that does it.
/** Activity HeartBeat ************************************************/ // Set the interval and the namespace event if ( typeof wp !== 'undefined' && typeof wp.heartbeat !== 'undefined' && typeof BP_DTheme.pulse !== 'undefined' ) { wp.heartbeat.interval( Number( BP_DTheme.pulse ) ); jq.fn.extend({ 'heartbeat-send': function() { return this.bind( 'heartbeat-send.buddypress' ); } }); } // Set the last id to request after var first_item_recorded = 0; jq( document ).on( 'heartbeat-send.buddypress', function( e, data ) { first_item_recorded = 0; // First row is default latest activity id if ( jq( '#buddypress ul.activity-list li' ).first().prop( 'id' ) ) { // getting the timestamp timestamp = jq( '#buddypress ul.activity-list li' ).first().prop( 'class' ).match( /date-recorded-([0-9]+)/ ); if ( timestamp ) { first_item_recorded = timestamp[1]; } } if ( 0 === activity_last_recorded || Number( first_item_recorded ) > activity_last_recorded ) { activity_last_recorded = Number( first_item_recorded ); } data.bp_activity_last_recorded = activity_last_recorded; last_recorded_search = bp_get_querystring('s'); if ( last_recorded_search ) { data.bp_activity_last_recorded_search_terms = last_recorded_search; } }); // Increment newest_activities and activity_last_recorded if data has been returned jq( document ).on( 'heartbeat-tick', function( e, data ) { // Only proceed if we have newest activities if ( ! data.bp_activity_newest_activities ) { return; } newest_activities = data.bp_activity_newest_activities.activities + newest_activities; activity_last_recorded = Number( data.bp_activity_newest_activities.last_recorded ); if ( jq( '#buddypress ul.activity-list li' ).first().hasClass( 'load-newest' ) ) { return; } jq( '#buddypress ul.activity-list' ).prepend( '<li class="load-newest"><a href="#newest">' + BP_DTheme.newest + '</a></li>' ); }); });Most probably the buddypress.js file is not getting loaded on your page where you have used the shortcode. Please check for that.
- Brajesh Singh on August 9, 2016 at 12:57 pm in reply to: [Resolved] MediaPress – "Site-Wide Activity" Posts Not Working #5003
Hi Carl,
Thank you for the mail and details. I am sorry but I was not able to recreate it. Will it be possible to provide me a temporary account for testing purpose.Thank you
brajesh Hi Mike,
I am sorry for the confusion. Please see here
https://buddydev.com/mediapress/topics/getting-started/mediapress-wall-gallery/- Brajesh Singh on August 7, 2016 at 5:52 am in reply to: [Resolved] BP Auto activate Auto Login-redirect to profile on Signup“ #4988
Marking it closed as the plugin did work for me but not for Nicole. Most probably some local cashing issue. Have issued a refund and I am considering it as resolved.
Thank you
Brajesh - Brajesh Singh on August 7, 2016 at 4:33 am in reply to: [Resolved] BP Auto activate Auto Login-redirect to profile on Signup“ #4986
Hi Nicole,
If you mail us the access via contact form one of us will look into it otherwise yes, You can get refund any time you want. - Brajesh Singh on August 7, 2016 at 4:25 am in reply to: [Resolved] BP Auto activate Auto Login-redirect to profile on Signup“ #4984
Hi Nicole,
You can edit the plugin but the problem is this plugin is tested with WordPress 4.5.3 and BuddyPress 2.6.2 and I am not sure why is it not working on your site.Please open the file and see for this function in the class
active_user_for_wpsIt is responsible for activating/logging in the user. Please do let me know what issue you find there.
- Brajesh Singh on August 7, 2016 at 4:07 am in reply to: [Resolved] BP Auto activate Auto Login-redirect to profile on Signup“ #4981
Hi Nicole,
Please try disabling the plugin that is causing Modal popup and then Let us check one more time. I am sorry for the inconvenience. - Brajesh Singh on August 7, 2016 at 3:52 am in reply to: [Resolved] BP Auto activate Auto Login-redirect to profile on Signup“ #4978
Hi Nicole,
Thank you.
So, The problem is user not getting logged in? I believe It is most probably a caching issue otherwise people will not get redirected to their profile(The plugin will not know where to redirect if the user was not logged in).Can you please try registering account in a new browser and let me know if that works? Also, Is there any site level caching plugin used by you?
Thank you
Brajesh