Search Results for 'buddypress'
-
AuthorSearch Results
-
April 8, 2010 at 8:39 pm #72410
In reply to: new version of BuddyPress Rate Forum Posts
irfun4ever
Participantone interesting thing is we can give karma to ourselfs over and over
it means people can vote them self, they can give karma to themself. how we can fix it?
April 8, 2010 at 8:09 pm #72407In reply to: ads plugin
José M. Villar
ParticipantJust stumbled into this post but for WP, do not know if it will work in WPMU/BP: http://www.wpcookies.com/how-to-add-adsense-code-manually-in-post-using-shortcode/
Open functions.php file of your theme and add the following code:
function adsense() {
return ‘/*Paste your adsense code here!*/’;
}
add_shortcode(‘adsense-block’, ‘adsense’);
Now just add the following shortcode where you want to display Adsense ads while writing a post.
[adsense-block]
And you can use conditional tags to display it may I add…
https://codex.buddypress.org/developer-docs/conditional-template-tags/
April 8, 2010 at 8:08 pm #72406In reply to: Parameters for bp_group_list_admins()
Paul Wong-Gibbs
KeymasterCodex.buddypress.org is only as good as the amount of people who bother to contribute to the documentation. Failing that, reading the code (if you can read code) is always a good way.
The only parameter that bp_group_list_admins() takes is an optional group object; it defaults to the current group object from the bp_groups templatetag loop. You’d need to duplicate (and rename) this function into your plugin / your theme’s functions.php to do what you want to do with it.
April 8, 2010 at 8:05 pm #72405Paul Wong-Gibbs
KeymasterFor instance Blog Tracking is not happening at all across the site – when every setting suggest this should be happenning automatically. It simply isn’t!
Are the blogs, that aren’t appearing, marked as “private” in their admin? i.e. the “Hide from search engines option”.
April 8, 2010 at 7:50 pm #72401In reply to: BuddyPress Like
Tore
Participant“What would be cool is to take it a step further and make the plugin agnostic and have multiple buttons. For example, I might want a like, dislike, and sarcastic like button (or whatever creative things people come up with). “
Lovely. In a futuristic version perhaps the poster can set up different buttons for his/her post.
April 8, 2010 at 6:58 pm #72391In reply to: Skeleton Key: Login as any user plugin
Gene53
ParticipantApril 8, 2010 at 6:42 pm #72390eazee
Participanthi im using WordPress MU 2.9.2 ,with buddypress, i believe i have to edit something in bp-core-signup.php
April 8, 2010 at 6:36 pm #72388r-a-y
KeymasterFor the first part, what version of WordPress are you using?
Secondly, you can edit the sign up text by using a language file:
https://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/
Or by creating a child theme and modifying the registration templates.
April 8, 2010 at 6:33 pm #72387In reply to: Comcast won't register
r-a-y
KeymasterApril 8, 2010 at 6:33 pm #72386r-a-y
KeymasterHi Chris, read this:
https://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/
April 8, 2010 at 6:20 pm #72383tim-watt
MemberOK – I’m new here, and everything’s quite standard….
1. Which version of WP/MU are you running? – WordPress MU 2.9.2.
2. Did you install WP/MU as a directory or subdomain install? directory
3. If a directory install, is it in root or in a subdirectory? ? Don’t follow? Please explain… (blogs are in format *.domain.com/blogs/)
4. Did you upgraded from a previous version of WP/MU? If so, from which version? NA
5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes
6. Which version of BP are you running? Version 1.2.3
7. Did you upgraded from a previous version of BP? If so, from which version? NA
8. Do you have any plugins other than BuddyPress installed and activated? Contact Form 7 & WordPress Hashcash
9. Are you using the standard BuddyPress themes or customized themes? The standard Demo theme
10. Have you modified the core files in any way? No
11. Do you have any custom functions in bp-custom.php? no
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? No
13. Please provide a list of any errors in your server’s log files. NA
14. Which company provides your hosting? wpwebhost.com/
April 8, 2010 at 6:10 pm #72381April 8, 2010 at 6:05 pm #72380In reply to: Add links into menu
@mercime
ParticipantHi ant60 – just to clarify, do you mean you want logged-in user’s link to his/her profile page appear in your navigation menu? If so, you can add this code
`<?php if ( is_user_logged_in() ) : ?>
<li><a href=”<?php echo bp_loggedin_user_domain() ?>”></li>
<?php endif; ?>`
to your theme’s header.php file within
<ul id="nav">
<li<?php if ( bp_is_front_page() ) : ?> class="selected"<?php endif; ?>>
<a href="<?php echo site_url() ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php _e( 'Home', 'buddypress' ) ?></a>
</li>
<?php wp_list_pages( 'title_li=&depth=1&exclude=' . bp_dtheme_page_on_front() ); ?>
<?php do_action( 'bp_nav_items' ); ?>
</ul><!-- #nav -->April 8, 2010 at 3:22 pm #72371In reply to: BuddyPress Like
techguy
ParticipantLike in and of itself isn’t useful. What’s useful is what you then do with the data that people have liked. For example, you can send email notifications to people who have liked something that then gets commented on. You could show information in a feed based on previous likes. You can do lists of most liked items. etc.
This is a good baseline that can be built on. Plus, users for some reason like clicking the like button. It’s another form of communication without having to think of a comment.
What would be cool is to take it a step further and make the plugin agnostic and have multiple buttons. For example, I might want a like, dislike, and sarcastic like button (or whatever creative things people come up with).
April 8, 2010 at 3:22 pm #72370Nahum
ParticipantTry starting with a premium City Guide theme from Woo themes. http://www.woothemes.com/2010/03/cityguide/ and merge it with buddypress. That theme is already a big plugin itself combine it with bp for something pretty cool. Then there’s this business directory plugin that you could throw in there for the complete package – http://themestown.com/wp-business-directory-manager. Its been on my list of things to do to make a hybrid of those three. Look forward to seeing what you come up with. Salu2
April 8, 2010 at 3:01 pm #72368In reply to: BuddyPress-Links 0.3 FINAL is here at last
arnonel
Participantrelease release release!
cant wait
April 8, 2010 at 2:45 pm #72366José M. Villar
ParticipantHola vato ! Bienvenido al mundo Buddypress.
For citiguide, take a peek at http://wikiroma.it maybe it is of some inspiration to you. They have done a wonderful integration with G maps, georeferencing their posts.
Suerte !
April 8, 2010 at 2:28 pm #72363In reply to: bbpress look a like BuddyPress
Jeff Sayre
ParticipantIf your “second request” is related to installing bbPress, then post it here. Otherwise, please start a new thread.
April 8, 2010 at 2:19 pm #72362In reply to: bbpress look a like BuddyPress
irfun4ever
Participantwow, it was so easy. how i did a mistake. anyway thanks.
what about second request?
April 8, 2010 at 2:11 pm #72361Scotm
ParticipantTry Connections: https://wordpress.org/extend/plugins/connections/
April 8, 2010 at 2:10 pm #72359In reply to: bbpress look a like BuddyPress
irfun4ever
ParticipantSo should i uninstall it?i meant should i delete bbpress
April 8, 2010 at 2:06 pm #72360In reply to: BuddyPress-Links 0.3 FINAL is here at last
idotter
Participantcan you show us something to give you the feedback you want ?
Activity-Stream-integration is a great thing your working on and i hope this will work soon.
April 8, 2010 at 2:00 pm #72358In reply to: BuddyPress-Links 0.3 FINAL is here at last
MrMaz
ParticipantI need some feedback from you guys on activity attachments.
I have spent quite a bit of time working on the API for attaching content to activity items, and near the end here I am really struggling to make it work without modifying the core. The right way to do this is to integrate my API into the core starting with 1.4. Of course that is probably months away from release, which is a short term bummer.
Do you guys want me to release 0.4 with all of the group integration and re-link features now? I really wanted to get activity attachments in there, but like I said its proving to be difficult and time consuming to make it work as a plugin.
April 8, 2010 at 1:33 pm #72353In reply to: Private hidden groups & friends activity stream
Jeff Sayre
ParticipantThe milestone you have set is okay. Also, I bumped the priority up to critical.
April 8, 2010 at 1:26 pm #72351Gianfranco
ParticipantThanks, jivany!
Do you happen to know about this other problem I am having?
https://buddypress.org/forums/topic/problems-with-active-state-menu-for-homepageactivity
-
AuthorSearch Results