Search Results for 'wordpress'
-
AuthorSearch Results
-
May 7, 2015 at 3:45 pm #238785
In reply to: Groups issue
Rene Streber
ParticipantHi,
I deactivated all plugins,
I checked all permalinks,
activated the twenty four theme from wordpress instead of the Boss theme (language looked fine),
activated buddypress (language looked fine, everything is correctly translated)activated the BOSS Theme (language is not 100% translated:
examples: active, all groups, my groups, group has xx members, newly created etc. is not translated
although we installed the newest german translation (mo/po in wp-content/languages/plugins)The same translation problem exists with sidewide activity as well as member directory (here all members, my friends in English)
For groups (..community/gruppen; parent is community, template is default)
For members (..community/mitglieder; parent is community, template is default)404 error if I try to open any group with wordpress or with the boss theme
I did not run the last steps, because the issue is still present.
Ps Every buddypress component has its own unique page
Rene
May 7, 2015 at 9:26 am #238769In reply to: Holiday / other absences of users
danbp
ParticipantHi @irenehofer,
see if you can adapt
https://wordpress.org/plugins/out-of-office/
or
https://wordpress.org/plugins/simple-intranet-directory/May 7, 2015 at 9:10 am #238767In reply to: Holiday / other absences of users
Henry Wright
ModeratorHey @irenehofer
I’ve not seen a plugin that can do specifically what you need, but try searching the WordPress Plugin Directory for something similar and then perhaps try modifying it to your needs.
May 6, 2015 at 7:20 pm #238752In reply to: Some of my users profiles are not loading
WPWally
ParticipantHi @henrywright sorry for the delayed response but I had other things to tend to. Yes, I am seeing the problem on both the localhost and my online server. The only difference between the two is that my local server is returning the error code and my online server is not.
I am once again updated to the latest versions of both WordPress and BuddyPress.
May 6, 2015 at 2:46 pm #238745In reply to: Groups issue
danbp
ParticipantHallo @rene-streber,
First of, i would recommend that you revert to a basic WP install using 2014 or 2015 theme and the WP’s german language activated and all plugins deactivated.
If you have a local install, suggest you do your test on it instead of the prod site.
Once this is done, you activate BuddyPress. German language will automatically be uploaded to the right folder (wp-content/languages/plugins/buddypress-de_DE.mo)
The original translation is here. It is complete to 100%. (and also the official translation).
FYI deckerweb provides a translation for bp 1.9 & 1.9.1. Soseems to meit is outdated now.Check if anything is correctly übersetzt. Theoretish sollte es jetzt funktionnieren.
If ok, you activate the main theme. Recheck everything. If ok, reactivate your plugins one by one and check each step to isolate an issue, if ever.
If everything is correct again, you can handle the specifics for your homepage. But remind one thing: BuddyPress components use a page system which is only in for internal purpose. This means that you can’t apply a page model like for an usual WP page. And if you use a special template just for the homepage, you have to adjust it to work with BuddyPress.
Each activated BP component should have a page assigned. And this page must be unique and empty, whithout any template or model settings, just a title.
I see that you have some issue with page names in your menu. Button show community2 and the permalink contains community-4. Check this too, to get community only everywhere. And probably clear your trash as it may contain some duplicates from previous attempts.
Once this is cleaned, und mit klarer aussicht, simply resave your permalinks to reinitialize all links.
May 6, 2015 at 2:19 pm #238744In reply to: Forums on Member Pages
danbp
Participantbp_is_user_forums(), check if forums component is active.
https://buddypress.trac.wordpress.org/changeset/6484Which type of forum do you use ? Standalone or group, or both ?
In bbPress you have a folder called extend containing the BP specific templates. Should you use them depends the forum type.
If bbPress is standalone, the plugin is totally independant of BuddyPress in regards of templates at least.
May 6, 2015 at 11:17 am #238735tiquality
ParticipantThanks Brajesh, but I didnt find this files, bp-custom.php and member-header.php 🙁
This is my link profile project: http://tiquality.com.br/intranet/members/admin/profile/
On the extend profile fields, it should show the mail of wordpress user.
tks!
May 5, 2015 at 6:57 am #238699danbp
ParticipantThis works only in the member loop.
Not sure what you mean by a user standard page, but if you mean a normal WP page, see here first:or more simplier, see
https://wordpress.org/plugins/bp-profile-search/May 4, 2015 at 8:55 pm #238682In reply to: How to add sidebar to single update/comment page
danbp
ParticipantI can’t explain better as the Codex. You simply have to follow what’s explained here:
May 4, 2015 at 7:50 am #238658In reply to: Create projects where people can collaborate
Henry Wright
ModeratorTry looking at BuddyPress Docs
May 3, 2015 at 11:12 pm #238656danbp
ParticipantTwo snippets to do this (hopefully). The first has a fixed position (latest by default), the second let’s you choose the position.
function my_nav_menu_notif_counter($menu) { if (!is_user_logged_in()) return $menu; else $notif = '<li>Notif '. bp_notifications_get_unread_notification_count( bp_loggedin_user_id() ) .'</li>'; $menu = $menu . $notif; return $menu; } add_filter( 'wp_nav_menu_items', 'my_nav_menu_notif_counter' );See comment how to apply a position function my_nav_menu_positioned_notif_counter( $items, $args ) { if( $args->theme_location == 'primary' ) // only for primary menu { $items_array = array(); while ( false !== ( $item_pos = strpos ( $items, '<li', 3) ) ) { $items_array[] = substr($items, 0, $item_pos); $items = substr($items, $item_pos); } $items_array[] = $items; array_splice($items_array, 0, 0, '<li>Notif '. bp_notifications_get_unread_notification_count( bp_loggedin_user_id() ) .'</li>'); // 0,0 is first position, 1,0 is second, etc $items = implode('', $items_array); } return $items; } add_filter('wp_nav_menu_items','my_nav_menu_positioned_notif_counter', 10, 2);Reference: https://developer.wordpress.org/reference/hooks/wp_nav_menu_items/
May 3, 2015 at 12:01 am #238636In reply to: Bookbag/Cart Function
danbp
ParticipantNever heard about individual WP media library, specific to my buddypress account. By default, all authors can see others pictures when stored in the media library.
BuddyForms is a premium plugin, you probably will have more chance for answers by asking on ThemeKraft support.
May 2, 2015 at 11:40 pm #238635danbp
ParticipantAny other idea? Yes !
Use bbP Signature instead. This plugin has a filtrable function where you can easely add custom fields near signature.Activate the plugin. Create a field called signature and add this snippet to bp-custom.php
function my_bbp_reply_content_append_user_signature( $content = '', $reply_id = 0, $args = array() ) { // Default arguments $defaults = array( 'separator' => '<hr />', 'before' => '<div class="bbp-reply-signature">', 'after' => '</div>' ); $r = wp_parse_args( $args, $defaults ); extract( $r ); // Verify topic id, get author id, and potential signature $reply_id = bbp_get_reply_id ( $reply_id ); $user_id = bbp_get_reply_author_id( $reply_id ); if(function_exists('bp_has_groups')) { $signature = xprofile_get_field_data( 'Signature', $user_id ); // here we add our custom fields $wowi = '<br>'. xprofile_get_field_data( 'Industry', $user_id ); $wowt = '<br>'. xprofile_get_field_data( 'Type', $user_id ); } else { $signature = bbp_get_user_signature ( $user_id ); } // If signature exists, adjust the content accordingly if ( !empty( $signature ) ) $content = $content . $separator . $before . $signature . $wowi . $wowt . $after; return apply_filters( 'my_bbp_reply_content_append_signature', $content, $reply_id, $separator ); } if ( !is_admin() ) { remove_filter( 'bbp_get_reply_content', 'bbp_reply_content_append_user_signature', 1, 2 ); add_filter( 'bbp_get_reply_content', 'my_bbp_reply_content_append_user_signature', 1, 2 ); }May 2, 2015 at 6:36 pm #238631In reply to: Bookbag/Cart Function
danbp
ParticipantThey are plugins who can do this, without having to use a cart system or e-commerce plugin.
Both are useable on BP profiles and have several settigns to allow different file format.
See BuddyDrive or MediaPress.May 2, 2015 at 8:54 am #238624danbp
ParticipantHi @fabwintle,
have you tried this plugin ?
https://wordpress.org/plugins/gd-bbpress-tools/there was also an older topic on bbpress forum with a solution
May 1, 2015 at 2:45 pm #238610In reply to: Different questions
nomiki
ParticipantThanks for the reply!
If I go to wp-content/languages/plugins/ I can only find Akismet and not BuddyPress. All other folders mentioning BuddyPress do not include a language folder, so I’m confused?
I have bought a WordPress theme called Implicit by IndustrialThemes, and making a product review is a part of the theme that’s linked up to posts. So if you make a new post you can make it a review filling out different fields such as ratings and criteria. So if a member wants to make their own review they would have to gain access to the admin panel in order to write a post/review. But if I open up this feature then the members would be able to see other posts as well and they can edit etc. As I understand, the plugins you mention will not get the member inside the admin panel with limited access. Am I right?
Which of the plugins can be used in order to block different blog posts from not-registered users?
April 30, 2015 at 5:21 pm #238580In reply to: No Sidebar on Profile Page
danbp
ParticipantYou misunderstood me:
[…] if it uses the same template why would it work on the Members page but not the Profile.
I said the same page, not the same template. Members directory has his own template and a profile has some other template. Directory and profiles are using the same page: members. And not at least, this is only a page name. Technicaly, BP use page.phpSee template hierarchy on Codex to understand how it works.
Now, why is the sidebar not showing widgets despite the sidebar code is in the page source ? No idea… Seems to me you use a lot of parts which are not from WordPress and some unusual settings to show your site…
If you use custom sidebars from your theme, you have to try those bars.
Activate 2015 and see how to get widgets to appear on that theme first. Then reactivate Wellness and see what you get.
Or ask your theme support.Sorry, but i can’t help you much more because you’re using a premium theme.
And as you don’t give details about your install, you can’t expect more for now.April 30, 2015 at 2:01 pm #238574In reply to: Adding theme functions to multisite wordpress
danbp
ParticipantApril 30, 2015 at 4:19 am #238565In reply to: Allow other user roles to “mark as spammer”
Snoogasm
ParticipantHi, and thanks for the reply.
That plugin appears to be untested for my version of WordPress (4.1.4) and BuddyPress (2.2.3). It also looks like many users are having issues with it. Is there any other method to accomplish what I’m looking for?
April 29, 2015 at 9:03 pm #238559In reply to: Change subnav slug
danbp
Participant@mcuk,
well done! Your request is under consideration.Wait and see… 😉
April 29, 2015 at 9:01 pm #238558In reply to: Allow other user roles to “mark as spammer”
danbp
ParticipantHave you found this ?
https://wordpress.org/plugins/bp-moderation/April 29, 2015 at 6:21 pm #238550In reply to: Change subnav slug
danbp
ParticipantThey are several places where change-avatar is used and i recommend you to not change this.
Open eventually an enhancement ticket and see what the dev’s think about.
Use same login credentials as for here.
April 29, 2015 at 6:12 pm #238549In reply to: Hiding WordPress icon and links from Admin Bar
danbp
ParticipantPlease use the codex first for basic questions around WordPress or BuddyPress.
https://codex.wordpress.org/Toolbar
BuddyPress comes with a login widget you can use on every existing theme who accept widgets.To style a button, you use CSS. This is common to any modern CMS software.
April 29, 2015 at 6:07 pm #238548In reply to: Some basic Questions before installing BuddyPress.
danbp
ParticipantEach BP activated component has is own page. Activity has such a page.
When you go to WordPress settings, you can asign a default homepage. Choose Activity and you’re done.But now it’s time you make a real test on a local install. It’s the best way to get answers.
April 28, 2015 at 10:58 pm #238531caniwigirl
ParticipantThat is what my screen looks like… I have passed on the message from @danbp to my theme’s developers to look into.
<b>Have you updated the WordPress themes to the absolute latest?</b> They issued updates earlier this week. The previous versions resulted in the same problem, but the current ones worked fine for me.
My site is a relatively big one… with lots going on. But, my host advised me not to use Jetpack because they have found a number of conflicts/issues with some of the components. Hence, I have to find, test and use other plugins to get the functionality I am after.
-
AuthorSearch Results