-
Paul Wong-Gibbs replied to the topic cookie bp-activity-oldestpage "httponly" and or "Secure" in the forum Requests & Feedback 10 years, 2 months ago
Hi
Good question. You can’t without making changes to the BuddyPress files, which we wouldn’t recommend. This is a great idea for a feature enhancement so I’ve gone ahead and opened a ticket. We’ll have it fixed for BuddyPress 2.6 (I’m working on the patch right now).
Thanks for the suggestion!
-
rosyteddy started the topic How to explain to the members the discrepancy between "Comments" and "Favorite" in the forum How-to & Troubleshooting 10 years, 2 months ago
How to explain to the members the discrepancy between “Comments” and “Favorite” ?
They can comment to a blog post from wherever they want – the blog page itself or in the stream.But when they have got a link to a blog page and reading it or they have to come to read a blog at some later date they can still comment BUT they cannot favorite it as…[Read more]
-
Paul Wong-Gibbs replied to the topic Add @mentions in plugin in the forum How-to & Troubleshooting 10 years, 2 months ago
Try running the custom content through the
bp_activity_at_name_filterfilter. -
Georgio started the topic Names show twice on the profile cover image in the forum How-to & Troubleshooting 10 years, 2 months ago
Hi
I installed the plugin Buddypress Cover and it shows a user’s name twice. I would like that the name be shown only once. screenshotIs it possible? Thanks in advance.
____________________________________PS I posted here because I am not sure whether this problem is related to the plugin or not as its screenshots don’t show this…[Read more]
-
the affordable care act wiki's profile was updated 10 years, 2 months ago
-
Michele Riva replied to the topic There was a problem cropping your profile photo. in the forum How-to & Troubleshooting 10 years, 2 months ago
Same problem here, I’ve tried to upload an image called “believe.jpg” but it’s not working… I’ve tried with php7, php5.4 and php5.6, nothing seems to fix the problem 🙁
-
Henry Wright replied to the topic How to create activity streams based on words or hashtags? in the forum How-to & Troubleshooting 10 years, 2 months ago
Sure! Accepted operators are
=,!=,>,>=,<,<=,IN,NOT IN,LIKE,NOT LIKE,BETWEEN,NOT BETWEEN,REGEXP,NOT REGEXPandRLIKE.So perhaps try
NOT LIKE. -
David Bisset replied to the topic How to delete the Name field from Registration? in the forum How-to & Troubleshooting 10 years, 2 months ago
Using Gravity Forms is one solution, yes. It’s easy once you have the plugin itself PLUS the “user registration” plugin they offer which i think is open only for the developer license. It completely replaces the BuddyPress registration form. I use it for a variety of sites that need more complex registration forms (there of course is a tradeoff,…[Read more]
-
Paul Wong-Gibbs replied to the topic what widget ? in the forum How-to & Troubleshooting 10 years, 2 months ago
It’s hardcoded. If you know how to customise a theme and write PHP, you can see the implemetnation: https://meta.trac.wordpress.org/browser/sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/functions.php#L355
bbPress does have shortcodes, I’d suggest doing that instead. I don’t know what the shortcode is, I’d suggest searching on…[Read more]
-
Paul Wong-Gibbs replied to the topic How to delete the Name field from Registration? in the forum How-to & Troubleshooting 10 years, 2 months ago
Right now, you can’t. It’s a mandatory and required field, and very much hardcoded throughout BuddyPress.
You *might* be able to not show the form if you replace the sign-up process with a Gravity Form (I think that’s it — one of the form plugins). I know @dimensionmedia has done this; I’m not sure he regularly reads these forums, but if he…[Read more]
-
Paul Wong-Gibbs replied to the topic BP Pages Not Displaying in the forum How-to & Troubleshooting 10 years, 2 months ago
By that, I mean, what do links to individual blog posts look like, and do they load?
-
Paul Wong-Gibbs replied to the topic BP Pages Not Displaying in the forum How-to & Troubleshooting 10 years, 2 months ago
Do WordPress post permalinks work? Have you tested them to be sure?
-
Paul Wong-Gibbs replied to the topic Add @mentions in plugin in the forum How-to & Troubleshooting 10 years, 2 months ago
@btees It probably hasn’t been documented. 😀
First, see if a
mentions.min.jsormentions.jsis loaded on the screen you want at-mentions support added to. If it is, try adding the CSS classbp-suggestionsto the textarea that your users will be typing in, and test again. If that doesn’t work, open up thementions.jsscript and start…[Read more] -
Oscar Estepa replied to the topic Disable All RSS Feeds – update in the forum Creating & Extending 10 years, 2 months ago
No problem! hope it helps!!!
-
Georgio replied to the topic How to make the admin bar transparent? in the forum How-to & Troubleshooting 10 years, 2 months ago
Wow, it works like a charm! Thank you very much and have a nice day!
-
Oscar Estepa replied to the topic Disable All RSS Feeds – update in the forum Creating & Extending 10 years, 2 months ago
No particular reason, Buddypress 2.4.3 is using ‘bp_actions’ hook to add its actions instead of ‘wp’ and according to WordPress you need to use the exact same hook with the exact same priority in order to remove a previously inserted action, i.e., now BuddyPress is adding its functions as:
add_action('bp_actions',…[Read more] -
Georgio replied to the topic How to make the admin bar transparent? in the forum How-to & Troubleshooting 10 years, 2 months ago
Sorry, I didn’t explain it well: I want to keep the admin bar for non-admins (it is usefull for the notifications etc) but make disappear the word “Pretitude” (that gives access to dashboard).
Well, after using your code, non-admins don’t have access to dashboard any more, but the word Pretitude stays visible and points to the home page. This…[Read more] -
Henry Wright replied to the topic How to create activity streams based on words or hashtags? in the forum How-to & Troubleshooting 10 years, 2 months ago
I guess I can add as many terms as I like now?
We’ve specified
ORas the relationship between the activity queries so you can add as many as you like. For example:array([Read more]
'column' => 'content',
'value' => 'philippine tube-nosed fruit bat',
'compare' => 'LIKE'
),
array(
'column' => 'content',
'value' => 'nyctimene… -
Henry Wright replied to the topic How to create activity streams based on words or hashtags? in the forum How-to & Troubleshooting 10 years, 2 months ago
Ah, that’s not quite how to use it. You should filter inside the function you’re hooking to
bp_after_has_activities_parse_args. For example:add_filter( 'bp_after_has_activities_parse_args', function( $retval ) {[Read more]
$filter_query[] = array(
'relation' => 'OR',
array(
'column' => 'content',
'value' =>… -
Henry Wright replied to the topic How to create activity streams based on words or hashtags? in the forum How-to & Troubleshooting 10 years, 2 months ago
So here’s my stab at the problem:
$filter_query[] = array([Read more]
'relation' => 'OR',
array(
'column' => 'content',
'value' => 'philippine tube-nosed fruit bat',
'compare' => 'LIKE'
),
array(
'column' => 'content',
'value' => 'nyctimene rabori',
'compare' => 'LIKE'… - Load More