Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 41,726 through 41,750 (of 69,093 total)
  • Author
    Search Results
  • #107143
    ianatkins
    Participant

    I just struggled with this, and I’d like to think I’m experienced with WordPress and not that stupid.

    My problem was I missed the message about validating my test account, and got distracted by the avator
    upload. When tried to login with my test accounts I was simply returned to the homepage with no feedback.

    So people have you validated the accounts that your trying to register, and admins can we get a bit of
    feedback upon logging in with a non validated account.

    Looking good so far, thanks for the plugin,

    Ian.

    smiranda
    Participant

    I am having the same issue. But only during recent development did that ‘my blogs’ link disappear. So I will now be retracing my dozens of hours of changes to try to figure out what i might have done that triggered the erroneous state.

    #107135
    Virtuali
    Participant

    Empty your cache, it will appear, it usually does not show up immediately.

    #107134
    slprof
    Participant

    It’s already uploaded but not showing. Still should be able to upload if it is offered.

    #107132
    steliodj
    Member

    Just noticed that sidebar was enabled only in posts and not pages….now i activated it and added a widget, if you check a buddypress component http://tinyurl.com/665zbnf you can see that the widget is at the bottom after the component.

    #107129
    steliodj
    Member

    Hm…really my theme’s (the one with the search box,ads etc) sidebar is actually there? Or you mean buddypress’ sidebar?

    Can you spot out where is the line i have to edit or add?

    #107127
    Virtuali
    Participant

    Looks like you implemented some CSS from the buddypress default theme, most likely a Max-width css attribute. It’s overlapping the sidebar. I couldn’t pinpoint it off the top of my head…

    It’s probably under the `/* > Global Elements` or `/* > Container`

    #107126
    CintiCoupons
    Member

    The version of my buddypress is 1.2.8.

    #107124
    Virtuali
    Participant

    No, not the buddypress css, your Theme’s Style.CSS.

    The easiest way to access this is in the wordpress admin –> Go down to the theme editor, and go down to the bottom to your style.css.

    Now find this piece of css:

    `/* Main Content


    */

    #content {
    width:960px;
    margin: 0px auto;`

    right below the last line, add
    `background-color: #85C8F2;`

    #107123
    JunVette
    Member

    I’m also having a problem with activaing BuddyPress. I’ve just done a fresh install of WordPress 3.1.

    I tried the automatic install from within WordPress and it just sits at the following message and doesn’t go any further. I’ve let it site for half an hour:
    Installing Plugin: BuddyPress 1.2.8
    Downloading install package from https://downloads.wordpress.org/plugin/buddypress.1.2.8.zip…

    I’ve also tried to install manually. I’ve uploaded the “buddypress” folder to the “wp-content/plugins” folder and when I go into WordPress Plugins and try to activate, I receive the following message:
    Error 500 – Internal server error
    An internal server error has occured!
    Please try again later.

    I’m using 1and1 hosting…. any suggestions?

    Thanks,

    #107122
    steliodj
    Member

    Hi Virutali, thanks for helping me.

    You mean to add this in buddypress style.css , right ? The only theme that i have in buddypress is the default one..it’s style.css imports default.css

    and here is what i did…i added background-color: #85C8F2; but nothing changes. Is there any possibility that because of template pack plugin i have to edit something else?

    div#content {
    float: left;
    width: 100%;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    background-color: #85C8F2;

    Please advice

    #107119
    Virtuali
    Participant

    Did you read in the codex page given to you?

    To fix this problem, enter the WordPress admin panel > Settings > Pemalinks – set to any configuration other than the default configuration. The mod_rewrite must be enabled on your server for pretty permalinks to work.

    #107118
    souder
    Member

    I tried all the permalinks but it still gives me this error

    The requested URL /activity/ was not found on this server.
    Additionally, a 404 Not Found error was encountered while
    trying to use an ErrorDocument to handle the request.

    Please help

    #107117
    souder
    Member

    I tried all the permalinks but it still gives me this error

    The requested URL /activity/ was not found on this server.
    Additionally, a 404 Not Found error was encountered while
    trying to use an ErrorDocument to handle the request.

    Please help

    #107114
    steliodj
    Member

    Ho Virtuali…forgot maintenance mode active….please try again . I need the same styling(background) and sidebar of homepage ( http://tinyurl.com/4q45s89 ) to apply to all of buddypress components…e.g. http://tinyurl.com/665zbnf

    Is this possible?

    Thanks

    #107113
    Virtuali
    Participant

    I’m sorry that your stack :).

    So I tried to comprehend as much as I possibly could from what you are writing. Are you trying to style the background of some of the components of buddypress? Like profiles and groups to match your background image?

    It’s hard to get a picture also, because your site is on maintenance mode right now

    #107112
    pcwriter
    Participant
    #107109
    Virtuali
    Participant

    Wait… do you mean a subnav? Like for instance, under profile, the subtabs are “Edit Profile, and Change Cignature?”

    Could be done, wrap the bp_core_new_subnav_item call in a function which is hooked on xprofile_setup_nav action;

    `/* Add the subnav items */
    bp_core_new_subnav_item( array( ‘name’ => __( ‘My Friends’, ‘buddypress’ ), ‘slug’ => ‘my-friends’, ‘parent_url’ => $friends_link, ‘parent_slug’ => $bp->friends->slug, ‘screen_function’ => ‘friends_screen_my_friends’, ‘position’ => 10, ‘item_css_id’ => ‘friends-my-friends’ ) );
    bp_core_new_subnav_item( array( ‘name’ => sprintf( __( ‘Requests (%d)‘, ‘buddypress’ ), bp_friend_get_total_requests_count() ), ‘slug’ => ‘requests’, ‘parent_url’ => $friends_link, ‘parent_slug’ => $bp->friends->slug, ‘screen_function’ => ‘friends_screen_requests’, ‘position’ => 20, ‘user_has_access’ => bp_is_my_profile() ) );

    if ( $bp->current_component == $bp->friends->slug ) {
    if ( bp_is_my_profile() ) {
    $bp->bp_options_title = __( ‘My Friends’, ‘buddypress’ );
    } else {
    $bp->bp_options_avatar = bp_core_fetch_avatar( array( ‘item_id’ => $bp->displayed_user->id, ‘type’ => ‘thumb’ ) );
    $bp->bp_options_title = $bp->displayed_user->fullname;
    }`

    There ya go, 2 in one! ;)

    #107107
    @mercime
    Participant

    You can install BuddyPress on main site or secondary blog https://codex.buddypress.org/getting-started/install-buddypress-on-a-secondary-blog/ but the groups created follow the URL structure from where you set it up.

    You can however allow a blog per group in subdomain structure, https://wordpress.org/extend/plugins/bp-groupblog/ but I haven’t tested it lately.

    #107106
    b1gft
    Participant

    Hi Sofian J. Anom
    Its not free hosting its a paid hosting account. I think you are right when you say “they do not provide wildcard subdomains features”
    I will have .a look at that link tomorrow, hopefully it will do the trick.
    Thanks

    Andrea Rennick
    Participant

    I think lselwd is getting confused at some of my replies where I stated setting up multisite gives you your own *version* of wordpress.com. It works like that, but it not it. ;)

    #107101
    modemlooper
    Moderator

    Did you change the login name via a plugin or in the database? I’m looking at your site and the @mentions name in the usernav
    is different –> @BNIWAdmin when the profile header says @stevieG

    #107100
    stevieg
    Member

    Yes I agree. That’s why I am saying this situation is an error. The field being used next to the display name, @LindaPH in my example, is NOT the user login name. That is still Lindy and you would need to use @Lindy to message her. BP uses that same user_nicename in constructing the permalink. In this case to see Linda’s profile, the permalink is http://bni-weymouth.org/members/LindaPH/ and not /Lindy/. We now have the url and the @name using one field but the messaging/mentions using another – I’d call that inconsistent.

    What I would really like is to know how to make BP follow this through to make the messaging use it too so that @LindaPH worked.

    #107099
    Jens Wedin
    Participant

    Thank @Virtuali ( @gunju2221) for the answer. I am not sure we understand each other. Let’s take this page

    http://chwisgi.com/members/jenswedin/profile/
    The navigation with tabs has ;

    * Activity
    * Profile
    * Friends (29)
    * Groups (11)

    What I am trying to do is adding a new page and a navigation tab. So it would say

    * Activity
    * Profile
    * Friends (29)
    * Groups (11)
    * Reviews (12)

    Would that be hard the create?

    And thank for the css hickup :)

    Thanks again,
    Jens

    #107098
    modemlooper
    Moderator

    Something is off then because on every site i’ve ever used BP on the @name on your profile IS the login name.

    @StevieG is your login name on here right? You should get notified of this reply because I @’d you. That’s how it works on every BP site.

Viewing 25 results - 41,726 through 41,750 (of 69,093 total)
Skip to toolbar