Replies
- Brajesh Singh on February 11, 2019 at 5:33 pm in reply to: [Resolved] Report button not showing on posts #20837
No problem.
I am glad it is resolved.Best regards
Brajesh - Brajesh Singh on February 11, 2019 at 5:18 pm in reply to: Moderation Pro not moderating posts & comments #20835
Hi Crystal,
Thank you.Over the weekend, I tested with Youzer and the report button seems to work fine. Have logged to your site today and seems the button is looking as expected there.
Please let me know if you find any abnormalities.
Regards
Brajesh - Brajesh Singh on February 11, 2019 at 5:17 pm in reply to: [Resolved] Report button not showing on posts #20834
Hi Crystal,
I just checked on the site and I can see the buttons there.Please recheck.
Regards
Brajesh - Brajesh Singh on February 11, 2019 at 5:13 pm in reply to: [Resolved] Auto delete "Users" buddypress notifications after 60 days #20833
Hi Tosin,
Thank you for the patience.
I am writing a blog post and will be linking today.Regards
Brajesh - Brajesh Singh on February 11, 2019 at 5:12 pm in reply to: [Resolved] Report button not showing on posts #20832
Hi Crystal,
I am sorry, It seems some local issue. Please try clearing the browser cache and checking again.PS:- The buttons are not visible to author of the post. We do not let users report their own posts. Please do note that.
Regards
Brajesh - Brajesh Singh on February 10, 2019 at 9:50 pm in reply to: [Resolved] Buddypress site wide activity as homepage for logged in users #20824
Thank you Tosin.
I sincerely appreciate your kind words and support for all these years 🙂Best regards
Brajesh - Brajesh Singh on February 10, 2019 at 9:38 pm in reply to: how to make this code work properly to put ads in buddypress activity #20822
Hi Lucas,
I am guessing it is only happening with adsense.
Adsense does not seem to be supported in content loaded via ajax. You will most probably need to do extra works for ithttps://support.google.com/admanager/answer/2694377
Regards
Brajesh Hi Andrey,
I am sorry for the inconvenience.Please post the code to your theme authors and ask them for support. It is most probably theme is controlling the redirect.
The above snippets work on default wp/bp setup.
Regards
Brajesh- Brajesh Singh on February 10, 2019 at 12:35 pm in reply to: how to make this code work properly to put ads in buddypress activity #20818
Hi Lucas,
Thank you.
Can you please share the code and the answer to following question.1. Is it happening in all cases if you use adsense?
2. or is it only happening on loading new activities(load more/filters)Did you inject the adsense library code in header before adding the ads snippet?
Regards
Brajesh - Brajesh Singh on February 10, 2019 at 12:32 pm in reply to: [Resolved] Buddypress site wide activity as homepage for logged in users #20817
Hi Tosin,
Thank you for asking.For 2,4
/** * For logged in user, Redirect to activity if trying to access home page */ function buddydev_redirect_tot_activity_for_loggedin() { if ( ! is_user_logged_in() ) { return; } if ( is_front_page() ) { bp_core_redirect( bp_get_activity_directory_permalink() ); } } add_action( 'bp_template_redirect', 'buddydev_redirect_tot_activity_for_loggedin' );1.- Depending on your setup, you may or may not need it. I am not putting any code for it as from previous posts by you, I am aware you have other redirects setup.
4. Use any existing plugin for it. It is 4-5 line of code but I am trying to avoid causing conflict with your existing setup.
Regards
Brajesh