-
Oscar Estepa started the topic [Resolved] BP Activity Privacy – Submit button disappears after submitting in the forum Third Party Plugins 8 years, 5 months ago
Hi @megainfo,
WP 4.5.2
BP 2.5.9
BP Activity Privacy 1.3.8After clicking submit button to send a new activity, the whole div “#whats-new-options” gets a display:none applied to it, therefore it disappears for users.
The problem seems to be line 224 on this…[Read more]
-
bp-help replied to the topic BP Block Non Friends Activity in the forum Installing BuddyPress 10 years, 3 months ago
@informerfrk
You failed to mention it is a paid plugin and being that you are a new developer according to this thread: https://buddypress.org/support/topic/i-am-a-new-buddypress-plugin-developer-and-busy-to-create-a-new-plugin/
I don’t think it would be wise at this juncture in your development to expect people would pay for a small mod of the…[Read more] -
et replied to the topic Filtering Activity Stream in the forum How-to & Troubleshooting 10 years, 4 months ago
@megainfo hello, I tried to use your code but at the time of ordering by date, but does not take into account the date of comments to an activity, you have no idea how I could fix it
-
Hope replied to the topic Making Activity Time just like FB time in the forum How-to & Troubleshooting 10 years, 9 months ago
Hi @megainfo,
Thanks a lot for the code, it works great for the activity comments while it doesn’t for the activity updates although it makes sense! I’m checking where the problem could be.
Thanks a lot for your help!
Hope -
Scott Seitz replied to the topic BuddyPress Activity Privacy in the forum Third Party Plugins 10 years, 9 months ago
Hi Mounir (@megainfo). I stumbled across another php notice when pulling up my members page:
PHP Notice: Undefined property: stdClass::$activity_count in /Applications/MAMP/htdocs/wordpress/wp-content/plugins/buddypress-activity-privacy/includes/bp-activity-privacy-filters.php on line 114
Can you please add the second argument to the if…[Read more]
-
Hope replied to the topic Making Activity Time just like FB time in the forum How-to & Troubleshooting 10 years, 9 months ago
Hi @megainfo,
Thanks for your quick reply & for the code! Actually I want to keep today’s format as “..ago” and change every date before today to the exact data+time.
Your code changes the whole activity time to the exact data+time. What can be done to keep the time_since for today’s activities only?
Thanks
Hope -
Scott Seitz replied to the topic BuddyPress Activity Privacy in the forum Third Party Plugins 10 years, 9 months ago
Here’s another quick fix Mounir ( @megainfo ). In the current AP version, the .bp-ap-selectbox shows on a streamed comment (not threaded comment) on the user’s own profile where the user has the ability to delete the comment, but not the parent activity. It fortunately has no effect if the user attempts to change it — it just creates some…[Read more]
-
Scott Seitz replied to the topic BuddyPress Activity Privacy in the forum Third Party Plugins 10 years, 9 months ago
Hi again Mounir ( @megainfo ). I recently changed the “Logged In Users” label via the en_US.po file and it didn’t change the label in the select boxes. After some investigation, I found that with the addition of the wonderful new admin controls you gave us recently, you store the results of the admin screen changes in the wp_options table and…[Read more]
-
Scott Seitz replied to the topic BuddyPress Activity Privacy in the forum Third Party Plugins 10 years, 10 months ago
Many thanks @megainfo! That will work beautifully! Sorry I didn’t get around to emailing you yesterday afternoon when I first found it and saved you the trouble of tracking it down.
What are the chances of an administrative control to disable the beautiful new select box? As wonderful as it is, it doesn’t match my other select boxes 🙁
-
Scott Seitz replied to the topic BuddyPress Activity Privacy in the forum Third Party Plugins 10 years, 10 months ago
Hi @megainfo. I really appreciate all the work you’ve put into this much needed plugin! I found one easily rectifiable problem with the snippet of code in the bp_visibility_activity_filter() function you added for the re-inclusion of @mentions.
// mentioned members can always see the acitivity whatever the privacy level
[Read more]
if (… -
Florence Baby replied to the topic [Resolved] How to show total friends of display user (2) in the forum How-to & Troubleshooting 11 years, 2 months ago
-
bp-help replied to the topic New great plugin, buddypress-wall by @megainfo in the forum Third Party Plugins 11 years, 2 months ago
@megainfo
Thanks for the info. I will give it a try! -
Hugo Ashmore replied to the topic How to override core template function in the forum How-to & Troubleshooting 11 years, 3 months ago
@megainfo Actually you’re quite correct… well almost, there are filters and they were committed but think the commit was rolled back as I found a few issues and the updates didn’t make it into 1.8.1 but check your trunk files you’ll see them there.
@skeary Apologies I was ahead of myself there, next release will contain them; for the moment…[Read more]
-
Hugo Ashmore replied to the topic New great plugin, buddypress-wall by @megainfo in the forum Third Party Plugins 11 years, 3 months ago
@megainfo Those are historical groups before the changeover to bbPress, then groups were automagically created from WP repo submissions as long as something or other was in the plugin header, but since that change those groups no longer function as support avenues.
-
Hugo Ashmore replied to the topic New great plugin, buddypress-wall by @megainfo in the forum Third Party Plugins 11 years, 3 months ago
@megainfo do correct me if I’m wrong but is this not another re-hash of an older plugin?
You have this line in the readme.txt https://buddypress.org/community/groups/buddypress-wall/forum/
Why it points nowhere, why are you saying the WP support forum for plugin is really checked and to post here with support issues? BP support does not offer…[Read more] -
bp-help replied to the topic BuddyPress missing Privacy Menu in the forum How-to & Troubleshooting 11 years, 3 months ago
@nerdicus99
You must have been mistaken because that was never in the BP core. It was only offered as a plugin. The privacy settings in xprofiles has been there since 1.6 but the activity post privacy was never added to the core and it took BuddyPress Activity Privacy plugin to make that happen. I would like to see this included in the core…[Read more] -
tduschei started the topic BuddyPress Activity Privacy Plugin2 in the forum Third Party Plugins 11 years, 4 months ago
Really loved the idea of your plugin and started to enjoy it until I think I screwed something up. I went into my bp-activity-privacy-filters.php and tweaked the logged in users case by adding another parameter to it. That seemed to work fine initially. Now, none of the privacy settings work when a user selects it. I have reset the…[Read more]
-
funmi omoba replied to the topic How to check if member has avatar ? in the forum How-to & Troubleshooting 11 years, 5 months ago
@megainfo, @shanebp, please what am I missing.
I put the below code in my functions.php
function current_user_has_avatar() {
global $bp;
if ( bp_core_fetch_avatar( array( 'item_id' => $bp->loggedin_user->id, 'no_grav' => true,'html'=> false ) ) != bp_core_avatar_default() )
return true;
return false;
}
and this in my header.php
<?php
[Read more]
global… -
Henry replied to the topic How to check if member has avatar ? in the forum How-to & Troubleshooting 11 years, 5 months ago
Humm.. this always seems to return true for me @megainfo
Update: issue resolved. i was defining a custom default avatar hence why the check always trued true e.g
define ( 'BP_AVATAR_DEFAULT', get_stylesheet_directory_uri() .'/img/avatar.png' );
-
bp-help replied to the topic 1.9 top features – ideas in the forum Requests & Feedback 11 years, 5 months ago
@sooskriszta
Well it would be a nice treat if It did come that early but I believe in setting realistic goals. Since others are adding ideas, I will add that I believe BuddyPress Activity Privacy plugin by @megainfo should be added to the core. It would be sweet if @megainfo would submit a patch. Anyway Cheers! 🙂 - Load More
@megainfo
Active 8 years, 9 months ago