Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,851 through 5,875 (of 22,621 total)
  • Author
    Search Results
  • #238785

    In reply to: Groups issue

    Rene Streber
    Participant

    Hi,
    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

    #238769
    danbp
    Participant
    #238767
    Henry Wright
    Moderator

    Hey @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.

    #238752
    WPWally
    Participant

    Hi @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.

    #238745

    In reply to: Groups issue

    danbp
    Participant

    Hallo @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. So seems to me it 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.

    #238744

    In reply to: Forums on Member Pages

    danbp
    Participant

    bp_is_user_forums(), check if forums component is active.
    https://buddypress.trac.wordpress.org/changeset/6484

    Which 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.

    tiquality
    Participant

    Thanks 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!

    danbp
    Participant

    This 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:

    Template Hierarchy

    or more simplier, see
    https://wordpress.org/plugins/bp-profile-search/

    #238682
    danbp
    Participant

    I can’t explain better as the Codex. You simply have to follow what’s explained here:

    Twenty Eleven Theme

    #238658
    Henry Wright
    Moderator

    Try looking at BuddyPress Docs

    danbp
    Participant

    Two 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/

    #238636

    In reply to: Bookbag/Cart Function

    danbp
    Participant

    Never 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.

    danbp
    Participant

    Any 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 );	
    }
    #238631

    In reply to: Bookbag/Cart Function

    danbp
    Participant

    They 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.

    danbp
    Participant

    Hi @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

    [resolved] [Resolved] BBPress signatures with Buddypress

    #238610

    In reply to: Different questions

    nomiki
    Participant

    Thanks 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?

    #238580
    danbp
    Participant

    You 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.php

    See 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.

    #238574
    danbp
    Participant
    #238565
    Snoogasm
    Participant

    Hi, 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?

    #238559

    In reply to: Change subnav slug

    danbp
    Participant

    @mcuk,
    well done! Your request is under consideration.

    Wait and see… 😉

    #238558
    danbp
    Participant
    #238550

    In reply to: Change subnav slug

    danbp
    Participant

    They 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.

    #238549
    danbp
    Participant

    Please 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.

    BuddyPress Widgets

    To style a button, you use CSS. This is common to any modern CMS software.

    #238548
    danbp
    Participant

    Each 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.

    #238531
    caniwigirl
    Participant

    Hi @bewitchingfiction,

    That 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.

Viewing 25 results - 5,851 through 5,875 (of 22,621 total)
Skip to toolbar