Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 16,251 through 16,275 (of 31,073 total)
  • Author
    Search Results
  • #128631
    Marcella
    Participant

    It all depends on what’s happening here.

    Could you go into your wp-config.php file and look for the line
    `define(‘WP_DEBUG’, false);`

    Make sure this is set to true.

    Re-visit your activation page and post the last error message you see (if any).

    Also, in your BuddyPress theme could you find the file located here

    wp-content/themes/your-theme/registration/activate.php

    and post the code that’s within it please.

    username_
    Member

    Let em clarify again in case my posts didn’t make sense. Sorry I was in a hurry.

    When I post a new blog post in the wordpress dashboard, It usually gets posted to the main activity wall. This part works fine but what gets posted doesn’t. I tested it out and it seems if there are comments inside the posts like `` this well show up as “comments” on the activity wall. On the actual post on the wordpress part it does not show up. Like I mentioned previously. this worked fine on 1.2.9 but now on the 1.5.3.1 version this part seems to be not working properly. , Any ideas anyone? I tried the bp-default theme and still same thing. I didn’t think this would be a theme thing. more of a core part, but I like to test before posting here..

    #128601

    @4ella, I just emailed you with some info!

    :)

    #128598
    gobbleoff
    Member

    I’ve turned debugging on, and nothing has shown up. As it goes, the site has no other plugins apart from EM and BP running. If you have a look at carclubevents.net you’ll see what it does. The EM guys are giving me options, but if you have a look, it just loops back to the main page, it shows Members, but no Events. The events menu is linked back to the events page, but the buddypress theme doesn’t work with it.

    #128585
    Keith Kelly
    Participant

    Tried what was called out in the above link.

    Not sure why, but that wasn’t working either. I thought it might have been the fact that I had the group hierarchy plugin enabled, but after disabling nothing changed.

    I am able to successfully change the slug of the main forum ect. by changing the page slug. What I am trying to change is at least 3 levels deep in the group. For example:

    /groups/nfl/forum/

    I want to change the display word “Forum” on the subnav to “Message Boards”. I am assuming if I can change that last slug, it will change the display text as well.

    I would hard code it into my theme if I knew where to find the code.

    #128584
    4ella
    Participant

    you send it here info@4ella.com , but I don’t consider myself theme expert !! :-)

    #128579

    @mercime This is the theme im trying to make work…
    Reaction:
    http://reaction.mdnw.net/
    I did edit so I want it to do what I need it to…
    Its just the BP pages im screwed on…

    The site is http://www.roadunit.com, but its private.

    I did install and activate the template pack, and its making my profile pages go as wide an my screen is.
    :(

    @4ella I am using Chrome as my browser, and I do have Firebug installed on it. I triiied playing with it and screwed up something thats making all pages in the “meta” bottom part of the BP pages.

    UGH.

    :(

    how can I email credentials to log in?? @mercime @4ella

    Thanks for helping out

    :)

    #128574
    @mercime
    Participant

    WP/BP versions?
    What theme are you using? Have you tried changing to bp-default?
    From what to what versions did you upgrade from and to?

    #128571

    In reply to: Broken group creation

    Hugo Ashmore
    Participant

    Helps if you clarify the word ‘broken’ as it implies the core functionality to create groups isn’t working yet you then say you think it might be a missing div which is a broken layout, a slightly different matter.

    One quick check you ought to make is to revert to the standard BP-default theme and see if groups work ok , then you know if it’s a theme issue which helps narrow things down.

    #128555
    4ella
    Participant

    The best thing you can do is to use firefox addon firebug which will easily find you all css classes and their properties in your theme and you can edit them and live preview them and finally change them with your text editor, you don’t need any documentation at all, just play with it, if you are lost send me here the link and I will try to help you.

    #128542
    @mercime
    Participant

    First of all, what theme are you trying to make compatible with BuddyPress?

    Did you install and activate the BP Template Pack?

    Site URL?

    nilssvz
    Member

    Please help?

    notpoppy
    Participant

    Well I’ve just re-started the .css file from scratch, rebuilt it line-by-line testing every time, and now it works. I can’t see any different between the file I had originally which wasn’t working and the one which is now working correctly, but there it is.

    Anyway, consider this resolved now.

    #128523

    In reply to: Override wp-login.php

    robpachasa
    Member

    Well it’s really simple to set up actually but if you’re trying to pull code from it, that’s a different story. I’m not sure how to put the log-in forms IN your theme without that plug-in (or Gravity Forms). You could just style the log-in page to match?

    See here: http://www.problogdesign.com/wordpress/custom-wordpress-login-screen/

    If you’re just looking for a simplier plug-in then just do a plug-in search for “custom login” and you’ll find a bunch!

    notpoppy
    Participant

    I’ve jut noticed that putting the code in header.php spoils the responsiveness of the theme – the main column no longer expands to fill the page on smaller screens.

    The upshot is my workaround solution is no good and I’m now even keener than before for a proper fix so someone please help me!

    #128514
    @mercime
    Participant

    >> doubles the size of the actuall header, is this what needs to be edited in the css
    Yes,

    >> How do you remove the line thats on the left side of the widgets
    In your child theme’s stylesheet
    `div#content .padder {
    border-right: 0;
    }
    `

    #128511
    @mercime
    Participant

    Looking at the current HTML structure of your Members, Groups and other BP template files, each is missing some original theme divs which add background color and padding. You removed the div.padder container from BP templates and then added a new div#bp-block around the item-list-tabs to try to contain it.

    Recommend the following:

    1.Add back the opening div.padder and closing div per original BP template files

    2. Remove the #bp-block container div you surrounded div.item-list-tabs with

    3. Add the following to your stylesheet to compensate for the missing divs
    `/* BuddyPress Mods */
    #content div.padder {
    background: #eee none;
    border: 1px solid #ccc;
    clear:both;
    font-size: 9pt;
    margin: 0 0 10px;
    padding: 15px;
    }`

    4. Use the BP style modifications used in Twenty Ten Child theme for BuddyPress https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/

    5. Adjust style to taste.

    #128510

    In reply to: Override wp-login.php

    robpachasa
    Member

    Have you tried Theme My Login?

    #128497
    gobbleoff
    Member

    I only changed the header image in the theme, and it was all working ok up until a couple of days ago. I understand EM has been updated, but EM works fine when BP isn’t activated. When it is activated, BP theme won’t show events.

    I’ve turned up debugging to see where it leads, will post up something tomorrow hopefully.

    #128487

    In reply to: New Project

    @mercime
    Participant

    1. You have to clarify what you mean by user’s page. You could allow each user to personalize their member profiles in some way via plugin http://buddydev.com/buddypress/allow-your-users-to-change-their-profile-page-background-using-bp-custom-background-for-user-profile-plugin/
    If you meant by showing a new subdomain, that you would be giving them their own blogs in your installation, then allow them to choose which theme they want for their blog/site.

    2. Pictures portfolio/gallery. Two choices available at this time:
    – free BP Album aka BP Media plugin – https://wordpress.org/extend/plugins/bp-album/ and http://code.google.com/p/buddypress-media/
    – premium BP Gallery plugin – http://buddydev.com/plugins/bp-gallery/

    #128486
    @mercime
    Participant

    – Copy over header.php and sidebar.php from the bp-default theme into your bp-default child theme folder.
    – Open up header.php and remove the search form there.
    – Open up sidebar.php and copy then remove the code for the login.
    – Paste over the login code into header.php where you want it to show up.
    – Open up your child theme’s style.css file and add styling for your login form which is now in your header.php

    G
    Participant

    i solved it. the developer of Suffusion Theme [https://buddypress.org/community/members/sayontan/] had included bad references to BP in the functions.php file. i edited them out, all fine now.

    #128481
    AdamK28
    Member

    I got it to work thanks! i’m gonna have to learn more about building themes now.

    #128475
    @mercime
    Participant

    You might want to check the custom community forums to check if such issue has cropped up and any solutions or if no such issue was brought up, post in that forum about your issue.

    If you want to check if the issue is corrected using bp-default theme, backup your database where the custom community theme’s options are stored. Then change to bp-default theme and check if you can post updates without issue.

    G
    Participant

    by the way, none of the above (ie: faulty adminbar.css link, or global.js) appear in source on the site using TwentyEleven theme. so i guess it is someting in the other theme that brings it out. i will look further, and try your hacks, guess i put them in functions.php of the offending theme. it was raining so hard here (east coast Australia) my internet was down for 10 hrs, back into it now… thanks Chris.

Viewing 25 results - 16,251 through 16,275 (of 31,073 total)
Skip to toolbar