-
r-a-y posted a new activity comment 13 years, 7 months ago
You somehow have a space in your username. Do you login as “Menelik Seth” or something else?
I’ve pinged @johnjamesjacoby to look into it; he can fix your problem with the site.As for me being a Jedi Master, I’m far from that, but we all start somewhere! 🙂
-
r-a-y posted on the forum topic Need help with PM function in forums in the group How-To and Troubleshooting: 13 years, 7 months ago
You’d probably want to echo the result.
Use the following in topic.php:
bp_forum_send_private_message_link()
And not:
bp_forum_get_send_private_message_link()
-
r-a-y posted on the forum topic Showing random group members in the group How-To and Troubleshooting: 13 years, 7 months ago
bp-dev.org references an outdated version of BuddyPress. There currently does not appear to be a random parameter for the group members loop. One way around this is by using BP_Groups_Member::get_all_for_group() combined with a regular members loop. With BP_Groups_Member::get_all_for_group() (available in /bp-groups/bp-groups-classes.php). Pass…[Read more]
-
r-a-y posted on the forum topic Showing profile fields outside of profile in the group How-To and Troubleshooting: 13 years, 7 months ago
This should give you some tips:
https://buddypress.org/community/groups/creating-extending/forum/topic/get-buddypress-profile-field-value -
r-a-y posted on the forum topic Get IP address that can pass current $user_ID? in the group How-To and Troubleshooting: 13 years, 7 months ago
You can’t change that because WordPress doesn’t save the user’s IP address by default, so you’ll have to wait until the user next logs in to your site to save the IP.
-
r-a-y posted on the forum topic Compatibility with U BuddyPress Forum Editor – Not working in the group oEmbed for BuddyPress: 13 years, 7 months ago
The forum editor plugin is probably hyperlinking the oembed link before posting; this will indeed not render the oembed content.
Not sure why it wouldn’t show the link at the very least though.
I don’t have the time to look at this at the moment, but I’ll try to remember to get to this. -
r-a-y posted on the forum topic Add a new Tab in the group Miscellaneous: 13 years, 7 months ago
Sorry hnla, you’re right; if you’re not using ajax, the code should be:
<a href="YOUR LINK">Another Forum Loop</a>
tubruk – if you upgrade BP, you will lose your changes made to bp-default/_inc/ajax.php. I would recommend the filter available in the bp_dtheme_ajax_querystring() function.
-
r-a-y posted on the forum topic Blog post comments in activity stream? in the group How-To and Troubleshooting: 13 years, 7 months ago
Try setting your activity stream filter to “No filter” or “Show Blog Comments” and see if that helps.
Also like claudeg said, it might be a plugin conflict. If you have “Block Activity Stream Types” enabled, you might have accidentally blocked blog post comments.
-
r-a-y posted on the forum topic Activity stream not showing comments in the group How-To and Troubleshooting: 13 years, 7 months ago
Try this WordPress Disqus plugin to import your existing Disqus comments back onto your blog:
https://wordpress.org/extend/plugins/disqus-comment-system/ -
r-a-y posted on the forum topic All Old Topics in the Forum Page is Gone in the group How-To and Troubleshooting: 13 years, 7 months ago
Check to see if the forum topics exist in the database.
The DB table is “wp_bb_posts”. If there are posts in that table, then that’s good! You could then try repairing the database table.
Could also be a plugin conflict. If you’re running any caching plugins, try flushing the cache, or disabling the plugin.
-
r-a-y posted on the forum topic Profile page link problem in the group How-To and Troubleshooting: 13 years, 7 months ago
Check out this plugin:
https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/Also check out this thread:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/remove-automatic-links-in-profile -
r-a-y posted on the forum topic Add a new Tab in the group Miscellaneous: 13 years, 7 months ago
“YOUR LINK” is the link you want to set. This is only useful if you want to link to a new page (like your new forum loop) and you don’t want to use AJAX. However, it seems like you want to use AJAX, so you’ll have to manipulate the AJAX querystring so BuddyPress knows how […]
-
r-a-y posted on the forum topic Suggested Posts Plugin (for Multisite Preferably) in the group How-To and Troubleshooting: 13 years, 7 months ago
Adding post tags to activity meta sounds like an idea. Though, you’ll still need to craft a DB query to pull only activity blog items that match your tags.
Re: switch_to_blog() queries – see:
https://mu.wordpress.org/forums/topic/15951 -
r-a-y posted on the forum topic get buddypress profile field value! in the group Creating & Extending: 13 years, 7 months ago
The function you’re looking for is:
bp_get_profile_field_data()
An example use case:
$field = bp_get_profile_field_data(
array(
'field' => 1, // where 1 is the field_id or it can be the field name
'user_id' => bp_displayed_user_id()
)
);echo '<a href="//university.com/shchedule.jsp?' . $field . '">Schedule…[Read more]
-
r-a-y posted on the forum topic How to display the User Post Count in Topic.php in the group How-To and Troubleshooting: 13 years, 7 months ago
If get_IP() can handle passing a $user_id, then yes it would work when you use that code snippet on a forum topic page.
-
r-a-y posted on the forum topic Suggested Posts Plugin (for Multisite Preferably) in the group How-To and Troubleshooting: 13 years, 7 months ago
You want to search sitewide blog posts? That would be taxing! An efficient method would be to use the activity loop and filter by blog posts and the “search_terms” paramater (which in this case would be your xprofile field). One problem with this approach is blog posts, by default, are truncated when they are saved as […]
-
r-a-y posted on the forum topic How to display the poster’s user role in forums for that specific group in the group How-To and Troubleshooting: 13 years, 7 months ago
Not sure. I haven’t used the BP Unread Posts plugin before, but if that plugin modifies the $topic_template global, then it will probably interfere with the code.
-
r-a-y posted a new activity comment 13 years, 7 months ago
Try the 0.6-beta for now. I believe it might fix what you’re asking for. Let me know if it doesn’t.
-
r-a-y posted a new activity comment 13 years, 7 months ago
You have to put the code where you want it to show iin your bbPress template.
-
r-a-y posted on the forum topic How would I do Video Transparency? in the group oEmbed for BuddyPress: 13 years, 7 months ago
@xberserker – Try the 0.6-beta.
It should already have a filter to add the transparent values.
- Load More
@r-a-y
Active 4 months, 4 weeks ago