Search Results for 'theme'
-
AuthorSearch Results
-
February 21, 2015 at 5:52 pm #234916
In reply to: Can't put widgets on Buddypress pages?
Rapforthemoment
ParticipantThis is the Happenstance theme. I believe it is from a production site, but it is available in the WordPress theme download search. I can only add the widgets to a Buddypress page if it is under Single Post Page, but if I do that, then the widget goes to every single post page, which I do not want.
February 21, 2015 at 1:06 pm #234902In reply to: New plugin: BuddyPress Identicons
Henry Wright
ModeratorThanks @peter-hamilton, looking forward to hearing what you find. I’m testing on BP 2.2.1, WP 4.1, no plugins activated (aside from BP) and Twenty Fifteen theme and things are working so it’s more than likely there’s a plugin conflict somewhere.
Hopefully we’ll be able to resolve the problem.
February 21, 2015 at 1:05 pm #234901In reply to: integrate buddypress in a theme
peter-hamilton
ParticipantSounds like hard recoding of that theme, you might be better of styling the twentyfifteen to look like that theme instead, css will not fix this.
Also sounds like a massive functions.php with more then 370 lines of code
Any link?
February 21, 2015 at 9:47 am #234889In reply to: Missing Meta Title
danbp
ParticipantHello @alice-kaye,
you’re not alone with that issue, which can sit in the theme (the case of 2015) or in a SEO plugin.
BP canonical names and some SEO conventions are not best friends at the moment… Sorry.https://buddypress.org/support/topic/browser-title-and-seo-title-problem-with-root-profile-url/
https://buddypress.org/support/topic/sitemap-breaks-when-i-install-buddy-press/
February 21, 2015 at 2:48 am #234885In reply to: “Show all X comments” not working in BP 2.2.1
rosyteddy
ParticipantI have deleted this thread and closed that ticket. It seems a theme related issue – some incompatibility of new BP with new BP themes. Thanks for your time.
February 20, 2015 at 11:25 pm #234880In reply to: move admin bar menu
Henry Wright
ModeratorHi @matthias70
The theme used here is open source. See the Open Sourcing BuddyPress.org blog post for more info. Feel free to look at the source code after reading that to see how it’s done.
February 20, 2015 at 10:01 pm #234878In reply to: How to add date?
shanebp
Moderatorafaik, that data is not shown by default.
It is something your theme is adding.
You should ask the theme author how to change the display.February 20, 2015 at 7:18 pm #234872In reply to: New plugin: BuddyPress Identicons
rosyteddy
ParticipantYes, I should have done that / should do that :
If you want to apply your own CSS, override the plugin’s styles by adding the following to your theme’s stylesheet. That way you won’t lose anything going forward.
Thanks. Why it has not been added to the BP plugin page? Please add.
PS : Just now saw it has been added. Thanks.
February 20, 2015 at 7:08 pm #234869In reply to: Theme My Login & BuddyPress
Henry Wright
ModeratorMy guess is Theme My Login is filtering the logout link so that /login/ is used in place of wp-login.php.
I noticed from the ‘bad’ URL that there’s no
_wpnonceparameter. That is possibly the reason for the ‘Are you sure you want to do that?’ message.WP nonces are important because they indicate intent. If the processing script can’t verify intent then it’ll likely bail and not complete the logout process.
February 20, 2015 at 7:04 pm #234868In reply to: Theme My Login & BuddyPress
rosyteddy
ParticipantPlease also consider posting the problem her https://wordpress.org/support/plugin/theme-my-login
February 20, 2015 at 6:51 pm #234867In reply to: New plugin: BuddyPress Identicons
Henry Wright
ModeratorHi @rosyteddy
Thanks for your kind words about the plugin. I’m glad you find it useful! 😀
Whilst you’re right that you can change the CSS, I just wanted to point of that any changes you make to plugins/buddypress-identicons/css/style.css will be overwritten when you download plugin updates.
If you want to apply your own CSS, override the plugin’s styles by adding the following to your theme’s stylesheet. That way you won’t lose anything going forward.
.avatar { // Your CSS here. }February 19, 2015 at 8:52 pm #234816In reply to: Can't put widgets on Buddypress pages?
@mercime
Participant@rapforthemoment thank you for clarifying the issue. I’ve just tested on a clean WP/BP installation and widgets I’ve added are showing up in the sidebar of all BuddyPress pages. What kind of widgets are you adding? Single WP or WP multisite? What theme are you using? Is this localhost or in production site?
February 19, 2015 at 8:47 pm #234815In reply to: Activity Stream Gone After Moving Hosting
Brian Dusablon
ParticipantYes. You would need to migrate the entire DB as well. Not just the site and theme files.
February 19, 2015 at 6:47 pm #234807In reply to: Author Posts in Profile Page
peter-hamilton
ParticipantHi, first off all, hanks for sharing @azchipka‘s code, i have been looking for that function myself.
I found a way to adjust the code to what you need
function profile_screen_posts_show() { query_posts( 'author=' . bp_displayed_user_id() ); if ( have_posts() ) : ?> <div class="category-wrap" style="width:100%;"> <ul class="two-post-wrap"> <?php // Start the Loop. while ( have_posts() ) : the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ ?> <li> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_post_thumbnail(); ?> <?php the_excerpt();?></span> </li> <?php // End the loop. endwhile; ?></ul></div> <?php else:?> <div id="message" class="info"> <p><?php bp_displayed_user_username(); ?> has not published any post! </p> </div> <?php endif; ?> <?php } //POSTS ON PROFILE ENDS HERE ?>You can remove thumbs, excerpt if you like, and/or add css classes.
I used this code here on my site
Changed posts to articles and working like a charm
Thanks again
February 19, 2015 at 12:36 pm #234778In reply to: Get Logged-In User Profile Link URL?
ctyldsley
ParticipantThanks @HenryWright! But how would I get this into a html link? I can add a html block in the theme’s visual composer. Thanks in advance!
February 19, 2015 at 10:25 am #234764In reply to: Remove public group updates from SWA
danbp
Participanti tested the function and it works on my install. Do you use a cache plugin ? If yes, clear it and try again.
You could also try to do that directly in the activity template, via your child theme.
See bp_has_activities in bp-templates/bp-legacy/buddypress/activity/activity-loop.phpBut this will also affect the whole site activities.
Profile specific what’s new update activity doesn’t exist outside of a user activity page.
In other words, when you call the action filter activity_update, you’ll receive updates from “members”, “groups” and “swa activity” which is default.To understand, open your DB and go to bp-activity table.
You’ll see component, type and action rows, which are used to built the SWA.
And the comp xprofile doesn’t include activity_update actionMore doc about this in /buddypress/bp-activity-template.php:166
February 19, 2015 at 8:02 am #234754In reply to: Buddypress Search Page is not saved
Hope
ParticipantThank you for replying… Actually I’m not using any BP search plugin, it’s included in the theme I’m using. I’m using “Custom Community” theme.
Hope
February 19, 2015 at 3:32 am #234747In reply to: Cannot see a profile page on front end
vikingpoker
ParticipantIm on the Theme forum now awaiting some answers. If I have to switch Themes I will I just really liked the layout of this one.
February 19, 2015 at 1:11 am #234737In reply to: Cannot see a profile page on front end
peter-hamilton
ParticipantDont you think it might be an issue with the theme, you are all alone with this problem so it is not a Buddypress fail, obviously.
A quick search on google shows lts of issues with hueman theme, especially interesting is the need for some “if” calls cause perhaps the theme only uses the single.php template.
Do you have he entire buddypress template folder copied to your theme root?
February 18, 2015 at 11:21 pm #234727In reply to: uploading images to sitewide activity
rosyteddy
ParticipantHi Faldekan!
Is it a must that you should use Frontend User Pro for images?
If you have option to use other stuff for images you can use the following – all of these add an icon to the form atop Activity page to click and upload imagesbuddypress-media by rtcamp
mediapress by brajesh
buddypics by modemlooper
bp activity plus
You need to see which works for you.
However, none of these use WP core media.If you can use core media of the WP itself, you can use the p2 theme which also has image upload button attached to the sitewide form. To show image thumbs in Gallery posts in the activity stream your users will have to “insert” at-least one picture apart from the Gallery.
February 18, 2015 at 9:33 pm #234712In reply to: Cannot see a profile page on front end
danbp
Participanthi @vikingpoker,
I’m sorry to hear that BuddyPress has upset you.
Members are the heart of BuddyPress and the plugin comes with anything necessary to let you manage them.We might be able to help, would you please let us know exactly which components you activated during the BP setup ?
BuddyPress use the WordPress page system for internal purpose only. Content is shown dynamically, depending the context. When you click on a username, BP calls the pre defined member page and use the appropriate template to show the profile.
BuddyPress has also his own menu, on which you’ll find activity, members, groups so far you have activate the respective component. To access this menu, go to dashboard > appearence > menu. If you don’t see it, go to the top right corner of the screen and open the sceen option, and check “buddypress”.
You’re using a framework theme, which is not the easiest to handle if you have not much experience with WP theing. I tested it a while ago and can understand your disapointment. You may probably find good advice about BuddyPress on the Hueman support forum.
I would recommend you to use 2015 or 14 theme during the time you familiarize yourself with BuddyPress.
I invite you to read also the Codex to start with your BuddyPress.
Oh, and if you don’t understand why this is not a #1 topic in this forum, it’s probably because a large majority of user haven’t this issue. And discover here all what you can do with BuddyPress. 😉
February 18, 2015 at 5:31 pm #234693In reply to: Adding new 'Order By' on members loop
shanebp
ModeratorYou don’t need to touch any core files to add an Order By.
Example for adding a Contributor option, put in bp-custom.php or theme/functions.php
// add order options to members loop function ch_member_order_options() { ?> <option value="contributing"><?php _e( 'Contributing Members', 'buddypress' ); ?></option> <?php } add_action( 'bp_members_directory_order_options', 'ch_member_order_options' ); // filter ajax members by contributing function ch_filter_ajax_querystring( $querystring = '', $object = '' ) { if( $object != 'members' ) return $querystring; $defaults = array( 'type' => 'active', 'action' => 'active', 'scope' => 'all', 'page' => 1, 'user_id' => 0, 'search_terms' => '', 'exclude' => false, ); $ch_querystring = wp_parse_args( $querystring, $defaults ); if( $ch_querystring['type'] == 'contributing' ) { // to get members by xprofile field, you need some custom sql here // here's an example: //https://codex.buddypress.org/developer/loops-reference/the-members-loop/#code-examples $users = get_users( array( 'fields' => array( 'ID' ), 'role' => 'contributor' ) ); $users_str = ''; foreach ( $users as $user ) { $users_str .= $user->ID . ','; } $users_str = rtrim($users_str, ","); $ch_querystring['include'] = $users_str; $ch_querystring['type'] = 'alphabetical'; return $ch_querystring; } else return $querystring; } add_filter( 'bp_ajax_querystring', 'ch_filter_ajax_querystring', 20, 2 );February 18, 2015 at 4:33 pm #234688@mercime
Participantshould I have those folders and file within my theme folder instead?
@robjsinger No. You only need to add the file/s you want to revise and follow the directory structure.edit – marking this topic as resolved
February 18, 2015 at 3:14 pm #234679Rob
ParticipantMy theme did not have those folders so I moved the code to the location you described and it worked perfectly. I did this in the buddypress folder.
Without confusing things, should I have those folders and file within my theme folder instead? I don’t want to have other issues down the road if this is really needed.
Thank you for the prompt assistance!
February 18, 2015 at 1:01 pm #234669In reply to: cant create topics for standart users
wolfied
ParticipantAll right, here we go:
http://inviteshare.net/groups/world-wide-news/forum/Noone can create any any topics under this Entire forum. It’s not just one topic, but instead, none works. So, for the public groups, anyone should be able to post without joining this. Even the members are complaining about it. If needed, I can give you moderator/admin access to the forum for your helping me out.
WordPress 4.1 running OneCommunity theme.
bbPress 2.5.4
BuddyPress 2.218 active plugins.
Achievements
Akismet
bbPress
BP-WP Profile Reviews
BuddyPress
Contact Form
Mass Messaging in Buddypress
myCRED
Quick Cache
Register IPs
SI CAPTCHA Anti-Spam
Simplr User Registration Form Plus
Stop Spammer Registrations Plugin
TinyMCE Advanced
WP-Polls
WP Slimstat
WP SMTP
WP User Control -
AuthorSearch Results