Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 12,426 through 12,450 (of 69,016 total)
  • Author
    Search Results
  • #242125
    Whiskyharry
    Participant

    in an older installation I did the same (I hope so) and it works fine.
    Yesterday I had some issues with the profile header and I reinstalled buddypress. Now, some translations are missing…

    #242122
    Whiskyharry
    Participant

    In my the7.2-Theme I have several templates for using them for pages and the blog.
    But I do not really unerstand the concept behind buddypress:

    • I have to create a page and then I assign it to members/groups/activity… but as I create the PAGE, there is a sidebar. WHy doesn’t buddypress use/show this sidebar?
    • It’s the same issue with the footer widget area (ok, it’s the same as a siebar)
    • Why do I have to extend the functions.php to be able to use the sidebars?
    • And what are these functions (posted above) do?
    #242120
    Whiskyharry
    Participant

    oh sorry:
    I’m using the7.2 from themeforrest.

    They’ve sent me some snippets to include in the themes functions.php, but I don’t know if I’ve included them correctly. But after including them, I had the sidebar on several pages (e.g. the member-subpages), but still missing on

    • all groups
    • single group
    • members list (first page)
    • group list (first page)
    • activity list (first page)

    They said it was a kind of “blueprint”, so I added the lines – without really understanding what I’m doing. As a result, it seems to work on some pages – but not on all:

    function dt_bbypress_template_config1()
    {
    if( is_bbpress() )
    {
    $pagid = 35615; //sidebar, footer settings of the page id given will be applied to user profiles
    $config = presscore_get_config( );
    presscore_config_base_init( $pagid );

    }
    }
    add_action( ‘get_header’, ‘dt_bbypress_template_config1’, 10 );

    function dt_buddypress_template_config2()
    {
    if( bbp_is_single_user() ){
    $pagid = 35615; //sidebar, footer settings of the page id given will be applied to user profiles
    $config = presscore_get_config( );
    presscore_config_base_init( $pagid );
    }
    }

    add_action( ‘get_header’, ‘dt_buddypress_template_config2’, 10 );

    function dt_bbypress_template_config3()
    {
    if( is_bbpress() )
    {
    $pagid = 35609; //sidebar, footer settings of the page id given will be applied to user profiles
    $config = presscore_get_config( );
    presscore_config_base_init( $pagid );

    }
    }
    add_action( ‘get_header’, ‘dt_bbypress_template_config3’, 10 );

    function dt_buddypress_template_config4()
    {
    if( bbp_is_single_user() ){
    $pagid = 35609; //sidebar, footer settings of the page id given will be applied to user profiles
    $config = presscore_get_config( );
    presscore_config_base_init( $pagid );
    }
    }

    add_action( ‘get_header’, ‘dt_buddypress_template_config4’, 10 );

    #242108
    djsteveb
    Participant

    @ronz – have you poked around https://codex.buddypress.org/themes/ ?

    I am would not bet things are as up to date as they could be, but I think there is some useful info there.

    what do you mean “page is visible” to user logged in?

    #242107
    5high
    Participant

    I know this is a VERY old thread but it’s exactly the same problem: https://buddypress.org/support/topic/error-composing-messages/ – may be helpful if you’re well versed in BP?

    #242106
    djsteveb
    Participant

    @whiskyharry – what theme are you using?

    with all of my buddypress sites I have the same sidebar on all pages.

    #242091
    ronz
    Participant

    Is there a website where buddypress functions are listed ?

    #242088
    shanebp
    Moderator

    Try this…

    Make a template overload of this file:
    bp-templates\bp-legacy\buddypress\members\single\profile\profile-loop.php

    In that new file, change this:
    <?php while ( bp_profile_groups() ) : bp_the_profile_group(); ?>

    to this, assuming the id of your base group is 1

    <?php while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
        <?php if( bp_get_the_profile_group_id() != 1 ) : ?>

    And add an <?php endif; ?> before the <?php endwhile; ?> near the bottom of the page.

    Do the same for:
    bp-templates\bp-legacy\buddypress\members\single\profile\edit.php

    #242080
    shanebp
    Moderator

    >…the page I created for the Members.

    How did you create that page?
    You should just create a page titled ‘Members’. The page should be blank.
    You then assign that page to the Members component through Settings > BuddyPress
    You should then be able to see a listing of all active members by visiting:
    …yoursite.com/members/

    Or is your issue just about navigation?

    #242071
    johnnybkk
    Participant

    Ok thanks alot. Yes too late to change language plugin unfortunately.

    Another issue. We worked on the template in /new/ and then moved to the root when we were happy with all. Now for some reason when posts are being made, in Buddypress they show up with /new/ in the activity stream even though the site is moved and all (i believe) settings have removed /new/.

    Is this something you have seen before?

    #242068
    sharmavishal
    Participant
    #242066
    djsteveb
    Participant

    @mattfl850 – I run a few multi-sites and a few bp sites – and after reading your first post I still don’t understand what you have as a setup and what you are trying to accomplish.

    I have awp multi-site with bp activated in maindomain dot com – the profiles and social layers are all based in the main root – if someone wants to create a “blog” aka “site” then their site becomes “usersiteOne dot maindomain dot com” – so each of their blogs (sites) are on a subdomain.

    Of course it is possible to swap that so they appear as maindomain dot com / usersiteOne

    All the groups and activity and such is run through the main root level..

    are you trying to get each user to have their own buddypress layer layer – with their own groups and such that is completely separated from the others?

    #242065
    djsteveb
    Participant

    @meeekz – Is the “jcrop tracker” something that is standard part of buddypress or something that your theme / or other plugins is handling?

    re “believe this is an aspect ratio issue” – I was under the impression that bp wanted the image to be cropped in a perfect square, and that there were modifications to make what was displayed circular like you are doing – but the standard bp expected a square image as the base (?)

    with one of your members I see that your theme is doing this kind of class on the avatar:
    class=”modified avatar” height=”80″ width=”80″>

    yet the image itself is somehow 80×53

    not sure how you got the image to be those dimensions – using the standard bp avatar uploader / cropper thing?

    #242064
    djsteveb
    Participant

    @natmba1 – you do not need a wordpress dot COM account to run buddypress – and I am not sure that you can run BP there – not the last time I checked.

    What I suggest is getting your own web hosting account – for 10 or 20$ per month you can run your own (shared) hosting – and put wordpress and buddypress and any other plugins you like into it.

    Some places like dreamhost.com (and similar hosting companies) – make it pretty simple to setup a wordpress hosting account and then you can add plugins and themes through the backend admin dashboard.

    You will likely end up with an account at wordpress dot ORG – to ask questions about plugins and stuff – but the dot ORG is the free open community and the dot COM is more the commercial thing kind of like wix.. which I am sure you have seen places like that are very limited – running your own system has many more options – but with that comes a bit more learning and responsibility 😉

    #242063
    ayam3b
    Participant

    I am also having this problem but it’s specifically with groups. We noticed it happening maybe a month ago? Does anyone know how to fix it?

    Wordpress 4.2.2
    Buddypress 2.3.2.1
    http://bitkingdoms.com/

    #242055
    Henry Wright
    Moderator

    bbPress is a separate plugin. You’d need to install that as well as BuddyPress.

    #242042
    creativesinside
    Participant

    Ack my bad! I’m fairly new to php and super new to Buddypress.

    Ok soooo … in the file notifications-loop.php inside the loop I’ve added:

    				$notificationid7 = bp_get_the_notification_id();
    				$obj = bp_notifications_get_notification( $notificationid7 );

    And where I need to display the link (also in notifications-loop.php):

    <a href="/pins/<?php echo $obj->item_id; ?>">view</a>

    Lastly, where I passed the item ID in bp-notifications-functions.php:

    function bp_notifications_add_notification( $args = array() ) {
    
    	$r = wp_parse_args( $args, array(
    		'user_id'           => 0,
    		'item_id'           => $post_id,
    		'secondary_item_id' => 0,

    However it’s echoing the notification number … not the post ID.

    #242026

    and it’s up finally!!!!
    If anybody needs to submit a bug:
    https://github.com/vimes1984/buddypress_aweber_integration/issues

    #242012
    creativesinside
    Participant

    This is my code:

    <?php while ( bp_the_notifications() ) : bp_the_notification();
    
    $user_id = $bp->notifications->query_loop->notification->secondary_item_id;
    //bp_notifications_mark_notification(bp_get_the_notification_id(),false);
     ?>
    <?php 
                                $messageId = buddypress()->notifications->query_loop->notification->item_id;
                                $message = messages_get_message($messageId);
                                $image = null;
                                if ($message) {
                                    $title = apply_filters( 'bp_get_message_thread_from', bp_core_get_userlink( $message->sender_id ) );
                                    if ($message->subject == "comment on your post") {
                                       $title .= " commented on your post";
                                    } elseif ($message->subject == "like your post") {
                                       $title .= " liked your post";
                                    } else {
                                       $title = null;
                                    }
                                    
                                    $image = bp_messages_get_meta($messageId, 'images');
    				$obj = bp_notifications_get_notification( $id ); 
                                }
                             ?>

    And the echo:

    <div><a href="/pins/<?php echo $obj->item_id; ?>">VIEW</a></div>

    shanebp
    Moderator

    Check your site-wide settings, in wp-admin, for Forums.

    btw: this is the BuddyPress support forum.

    The bbPress support forum is here.

    #241992

    In reply to: Where to install

    monk3
    Participant

    @shanebp: There wasn’t anything rude in my response. If anything, Henry’s didn’t address my question as I stated it,. Instead, he rephrase it, which could be considered inconsiderate.

    Had I wanted to ask the question he moved my question to, I would have asked it. I didn’t. So I moved what I could have considered a rude move on his part, back to my original concern. As for your response, … “It depends”; it is not an answer. Consider the context here: We are in a BuddyPress forum que. If you haven’t figure it out yet, I am querying to how better install BuddyPress, on a domain or a subdomain. It is obvious that it has to be on a WordPress installation. (Everyone who doesn’t know that, hold up your hand….. Just as a thought, no one. Oh, there is one.)

    Now, I could have interjected my own thoughts into the original question, but by not doing so I was hoping to illicit candid input, as compared to a general and useless response such as, “It depends”. So. Since you seem to have more to add, depending on something…, let me clarify for you:

    One of the sites we created and run for a client has WordPress as the platform. We are considering adding BuddyPress to it to extend the accumulated audience. We have concerns regarding security, cpu and memory load, plugin conflicts,possibly running a separate user registration and permission scheme (possibly) and all the other common issues inherent with WP; as well as the size of the site already, which is a bit over 3Gb in size. It runs an events system, with about 400 locations and in excess of 23,000 daily events. It is on a VPS with 2 cores, 32Gb RAM, using multiple dedicated IPs, much of what is in WHM, and numerous firewalls and other security systems.

    As you maybe are able to see, how BuddyPress is installed would make a difference. But now that I have clouded your considerations with information I would have preferred to reserve until later in any possible conversation, we’ll see what bias is in any response you may have, hopefully beyond a mind-dulling, “It depends”.

    Now, on to Henry’s response:
    You left out the option of WP on both the primary and the sub-domains; which is the case. Again, if my primary question had to do with BUDDY PRESS, not to gain opinions about WP on a subdomain vs on a primary domain, which is the case; I would expect responses regarding that. Had your topic been my topic, I wouldn’t have posted my question in a BuddyPress que, simply becuase your question says nothing about BP.

    And I’m sure that question has been addressed many times already. Who cares??? IT WASN’T, AND ISN’T MY QUESTION! Why do you have this habit of trying to rephrase or move another’s original question? Must be a power struggle issue.

    Never mind. I’ll seek the opinions elsewhere, from other forums that actually want to address questions as stated, and don’t act like gatekeepers.

    Good grief!

    #241989
    Roger Coathup
    Participant

    The default BuddyPress site setup only supports a single activity, members, groups directory page.

    One solution is to create your own custom page templates, and embed the code for the activity, member and group loops in the template. You’d then assign it to your duplicate pages. You can read more about coding your own loops in the documentation section of this site.

    You could also look to see if it’s possible to use the language files — dynamically loading the appropriate text domain translations of the BuddyPress text depending which language the user has selected. In this scenario, you’d work with the default ‘single’ page setup.

    Perhaps too late for your site (if you’ve gone down the polylang route), but for all our multi language solutions, we go the multisite approach and using the Multilingual Press Pro plugin. It gives a really clean solution. Remember to enable bp multiblog if you switch to this approach.

    #241979
    @mercime
    Participant

    @quinngoldwin I’m not aware of any plugin that does what you want out of the box. At this stage, you might want to look at https://wordpress.org/plugins/wp-job-manager/ and a BP plugin https://wordpress.org/plugins/buddypress-job-manager/ and try work from there to set up a jobs category home page similar to what you posted above. Haven’t worked with either plugin before but the plugin author of the WP Job Manager has very good rep.

    You could post at the official WordPress Jobs Board at https://jobs.wordpress.net and/or our jobs board at https://buddypress.org/support/forum/plugin-forums/bp-jobs-board/

    #241975

    In reply to: Where to install

    shanebp
    Moderator

    There is no need for rudeness – even if you didn’t understand a reply.

    >When is it better to install buddypress on a subdomain and when on the primary domain?

    It depends on what you’re trying to do.

    #241972
    Roger Coathup
    Participant

    Please see https://buddypress.trac.wordpress.org/ticket/6360 and associated tickets for a fix for point 1. It’s a known problem.

Viewing 25 results - 12,426 through 12,450 (of 69,016 total)
Skip to toolbar