-
r-a-y posted a new activity comment 13 years, 7 months ago
Cheers!
-
r-a-y posted a new activity comment 13 years, 7 months ago
Cool! Glad it worked for you. Spent too much time looking into this!
Just an FYI, I attempted to post the same poll multiple times. The poll will only display once on a page; the rest won’t be rendered. I’m guessing this is a feature! 😉
-
r-a-y posted a new activity comment 13 years, 7 months ago
It’s a problem with WP.
See this ticket:
https://core.trac.wordpress.org/ticket/17106-
Thanks Ray, I’ve also forwarded this information to polldaddy, but they haven’t posted my comments yet:
http://blog.polldaddy.com/2009/11/06/polldaddy-now-supports-oembed/#comment-17233
-
Ray, I’m going to put this in the wp-oembed file, via your patch… should this then work with BP or is there still a problem with polldaddy as stated early and port 8080?
-
Genius @r-a-y ! This works great on the front end as well of BuddyPress… and with this people now have a way to get polls into the BP sites! Thanks!
-
Cool! Glad it worked for you. Spent too much time looking into this!
Just an FYI, I attempted to post the same poll multiple times. The poll will only display once on a page; the rest won’t be rendered. I’m guessing this is a feature! 😉
-
P.S. sent you a couple of dollars for you to buy a Starbucks or a Beer with! Thanks again.
-
Cheers!
-
-
-
-
-
r-a-y posted on the forum topic Allowing Users to Customize Their Background Image in the group How-To and Troubleshooting: 13 years, 7 months ago
FWIW, I’m working on my own plugin for this, which is coming out when I’ve finished my theme. No time table for release.
Screenie:
Allows you to upload unlike the plugin above and supports groups. What my plugin currently doesn’t have is a default selection of custom backgrounds.
-
r-a-y posted on the forum topic How to Remove and Add Items in "bp_get_displayed_user_nav" in the group How-To and Troubleshooting: 13 years, 7 months ago
@nahummadrid – This is a known bug. Using bp_core_remove_nav_item() will remove access to those pages as well. Right now, I’d suggest hiding the nav item via CSS or by hacking the $bp global to remove the item.
-
r-a-y posted on the forum topic Remove Following & Followers from Profile Nav (bp_setup_nav) in the group How-To and Troubleshooting: 13 years, 7 months ago
@shanebp, @nahummadrid – The problem is BP Follow uses an older method to add items to the nav. The plugin needs to be updated to use the newer BP conventions; I’m thinking of asking Andy for contributor access. In the meantime, you need to make sure your code runs after BP Follow. Change:
add_action( 'bp_setup_nav', 'sc_remove_nav_tabs', 15 );
… -
r-a-y posted on the forum topic facebook like video resizing? in the group oEmbed for BuddyPress: 13 years, 7 months ago
This feature is upcoming in the next release.
-
r-a-y posted on the forum topic filter for page? in the group oEmbed for BuddyPress: 13 years, 7 months ago
@onyx808 – FYI, this format is going to change in the next release as I’m phasing out this code. (Bad code by me!). It will be available in a filter instead. The better option is to remove the filter entirely when you’re on the homepage: `if ( bp_is_front_page() ) { remove_filter( ‘bp_get_activity_content_body’, ‘ray_bp_oembed’, 9 ); remove_filter( […]
-
r-a-y posted a new activity comment 13 years, 7 months ago
Actually, that’s only for the autodiscovery. I’m looking into this, however can you try putting this in a WP blog post and see if it works? If it doesn’t, it’s a WordPress thing.
-
r-a-y posted a new activity comment 13 years, 7 months ago
I’ve deleted your post in that other thread because it was an old thread. Feel free to create a new topic about it.
So I’ve just tested PollDaddy’s oEmbed and it appears to be a problem with PollDaddy.
PollDaddy’s oEmbed item links to this:
http://polldaddy.com/oembed?url=http%3A//polldaddy.com/poll/4877339/&format=json
Which fails as it…[Read more]
-
r-a-y posted on the forum topic Displaying certain members in a page by shortcode? in the group How-To and Troubleshooting: 13 years, 7 months ago
Ahh cool! 🙂
-
r-a-y posted on the forum topic Order/sort activity by "most favorites" in the group How-To and Troubleshooting: 13 years, 7 months ago
@celsosoares – I haven’t debugged your code fully, but this section:
WHERE meta_value = 'favorite_count' ORDER BY meta_value
should be:WHERE meta_key = 'favorite_count' ORDER BY meta_value DESC
— Also, the documentation for theinclude
parameter indicates that you have to pass a comma-delimited list of activity IDs. So you’ll need to change…[Read more] -
r-a-y posted on the forum topic How to list user from a specific profile data ??? in the group How-To and Troubleshooting: 13 years, 7 months ago
@beppe999 – That’s one way of doing it. It’s a quick way to achieve what you want, however you lose the ability to properly paginate and to grab a specific amount of members.
-
r-a-y posted a new activity comment 13 years, 7 months ago
The following plugin can help:
http://www.joseairosa.com/2010/06/29/wp-restful-wordpress-plugin/A lot of custom coding will need to be done though.
-
r-a-y posted on the forum topic Displaying certain members in a page by shortcode? in the group How-To and Troubleshooting: 13 years, 7 months ago
First, you’ll need to know how to create a shortcode:
https://codex.wordpress.org/Shortcode_APIThen, you’ll need to add the shortcode parameters you just created from the article above in a BP members loop:
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-members-loop/ -
r-a-y posted on the forum topic Update avatar automagically in the group How-To and Troubleshooting: 13 years, 7 months ago
Check out the “bp_core_mysteryman_src” and “bp_core_fetch_avatar” filters located in /bp-core/bp-core-avatars.php.
This article details a little bit of how to do it:
http://wpmu.org/how-to-add-a-custom-default-avatar-for-buddypress-members-and-groups/ -
r-a-y posted on the forum topic Admin not receiving New User Registration emails in the group How-To and Troubleshooting: 13 years, 7 months ago
Please read the second point in the “Registration” section:
https://codex.buddypress.org/getting-started/faqs/specific-faqs/#register -
r-a-y posted on the forum topic Multiple headers – any danger? in the group Creating & Extending: 13 years, 7 months ago
You should preferably use:
In the example above, if header-example.php doesn’t exist, it will always fallback to the default header.php.
-
r-a-y posted on the forum topic BuddyPress Is Free in the group How-To and Troubleshooting: 13 years, 7 months ago
Yup, BuddyPress will always be free! If you paid for it, try and get a refund 😉
There will never be a paid version.However, there are some 3rd-party premium themes and plugins that you can add to BuddyPress, which will cost a bit of moolah.
-
r-a-y posted on the forum topic How to get started after successfully installing Buddypress? in the group Installing BuddyPress: 13 years, 7 months ago
Hi,
Try reading these sections of the BuddyPress codex:
https://codex.buddypress.org/getting-started/configure-buddypress-components/#forums-setup - Load More
@r-a-y
Active 4 months, 4 weeks ago
P.S. sent you a couple of dollars for you to buy a Starbucks or a Beer with! Thanks again.
Cheers!