Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 15,676 through 15,700 (of 31,071 total)
  • Author
    Search Results
  • #131020

    It’s in the header (by theme)
    I just used the wp-admin page to create a menu and set it as primary navigation menu.

    #131016
    @mercime
    Participant

    @jamesmcbennett I looked at your members and forums directory and looks like something went awry with your HTML structure since last time you posted at the forums.

    With regards to your question, add the following to your theme’s stylesheet:
    `div#subnav.item-list-tabs {
    margin: -15px 0 15px !important;
    }`

    #131013
    RobFenech
    Participant

    1) all in the css. the default theme is all based on percentages with some max-width’s in place. If you want to change that to a fixed width, run through the code via firebug and check out where the widths are coming from and simply change them in your css.

    2) yes, this is your friend here:

    `
    <?php
    global $current_user; // Get user’s information

    get_currentuserinfo();

    $user_level=$current_user->user_level;

    $user_id=$current_user->ID;

    $user_login=$current_user->user_login;

    $user_email =$current_user->user_email;

    $user_firstname=$current_user->user_firstname;

    $user_lastname=$current_user->user_lastname;

    $home_link = get_option(‘home’);
    ?>`

    then

    `<a href="” class=”profile”>View My Profile `

    and

    `<a href="” class=”messages” title=”Messages”>Messages (10)`

    and so on…

    thanks

    @mercime
    Participant

    WP/BP versions? Change to bp-default theme and see if issue is corrected. If so, you have to contact your buddyboss theme author for assistance.

    #130991

    In reply to: BuddyBoss Theme Issue

    @mercime
    Participant

    == Anybody in buddy boss support forum answered me about that. ==

    Not sure what you mean. But since BuddyBoss is a premium theme, you should be able to get free support from the theme developers at http://www.buddyboss.com/forum/

    #130985
    ignatiusjeroe
    Participant

    Im a salutation user to. This is a question you should post on their support site. A word of advice,
    use child themes in the future. Read all about it in the documentation of salutation theme. Also just
    reinstall the theme files that you messed up. That should solve your problems.
    I’m no programmer so my answers are not technical but practical

    #130976

    id=”message” class=”messageBox note icon”>

    @mercime
    Participant

    @thesurfinstitute you’re welcome. You’re lucky that the HTML structure of the Sliding Doors theme made it compatible with the 2nd method for BP compatibility :-)
    Marking this as resolved.

    thesurfinstitute
    Participant

    I knew it was going to be fairly simple!! Thank you so much! Worked like a charm!

    #130963
    RobFenech
    Participant

    No real coding knowledge needed, just some css changes

    `body { width:auto; }`

    `container, header { width:1060px; margin:0 auto; } /* SET YOUR WIDTH HERE */`

    `body#bp-default #wp-admin-bar .padder {
    min-width: 960px;
    max-width: 960px;
    }`

    Then just match up the footer and admin bar etc… all fairly straightforward css stuff :) but make sure you do it in a child theme, never in the default theme’s css, otherwise your changes will get overwritten when you update :)

    thesurfinstitute
    Participant

    I totally understand and was hoping it just got overlooked, as it did… No worries!

    THANK YOU SO MUCH!!! My schedule recently got very busy… Hoping I can spend some time on this in the next few days. I will let you know how I do &/or if I need any further assistance.

    Again, THANKS!!

    #130948
    Jacob Schweitzer
    Participant

    Well it is not clearing. I don’t want to edit core files, how can I force it to clear after a group is created? Should I put a setcookie() that hooks into the bp_after_create_group() ? Please advise.. something is obviously not working correctly here.

    It is not clearing even when using the bp-default theme with no other plugins running. I have the latest stable version of WordPress (3.3.1) and BuddyPress (1.5.4).

    heyshamsw
    Member

    The relevant pages are now private and password protected so I can’t let you have access to them.

    However, I can tell you that there is no misalignment and all the BP content is fine – it’s just the sidebar that will not display.

    Also, I tried installing just WordPress and BuddyPress fresh on a subdomain – with nothing else installed – and I still had the same result, i.e. no sidebar on the BuddyPress pages.

    There seems to be somthing in WordPress, Thematic or BuddyPress that does not want to play nice.

    For the time being I shall have to continue with the work-around I outlined above – not ideal but workable.

    Thanks again.

    @mercime
    Participant

    You’re welcome. Glad it worked out for you.

    Marking this thread as resolved.

    it works! amazing help!!!!! thanks so much!

    @mercime
    Participant

    @thesurfinstitute Following is the simplest way to make your theme compatible:

    If you’ve changed any of the BP template files in your theme folder, replace all of them for a clean slate by deleting the 6 BP folders in server – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility. (make sure Sliding Door Child theme is activated before you run this)

    A. Copy your theme’s header.php and Save As > header-buddypress.php

    Open up header-buddypress.php and at the bottom of the file, below all other code, add this:
    `

    `

    Save file.

    B. Create a BLANK sidebar-buddypress.php and add this line only

    `

    `

    Save file.

    C. Upload header-buddypress.php and sidebar-buddypress.php to wp-content/themes/sliding-door-child/

    D. Style modifications for BP templates – you might want to use some or all of styles listed in this page https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/

    #130922
    Jacob Schweitzer
    Participant

    I tried the bp-default theme, I’m not using any other BuddyPress plugins.

    Found a solution – the problem is a cookie set by BuddyPress that isn’t changing correctly or has the wrong expiration time.

    Line 130 of bp-groups-actions.php (in the bp-groups folder):
    setcookie( ‘bp_new_group_id’, $bp->groups->new_group_id, time()+60*60*24, COOKIEPATH );

    I commented this line out. You could also change the time to a shorter time so bots don’t create groups, is that why this is in there? As it is now, this cookie prevents anyone from creating more than 1 group per 24 hours. Why?

    #130918
    modemlooper
    Moderator

    There should be a link in your sites footer to switch back and forth, I don’t think domain mapping will work very well considering the hijacking of theme is how bp mobile currently works. There will be a future version that does away with theming in the WordPress sense and will use an API and then you will be able to put mobile version on another url. You will be able to even create a service that allows users to send content to your site from another domain. Think twitter apps.

    @mercime
    Participant

    == There’s really nobody out there that can assist me with this!? ==

    @thesurfinstitute We’re all volunteers here living in different time zones and it just happened that your post got overlooked. A polite bump is acceptable.

    You need to fix the alignment of the BP template files with that of your WP theme https://wordpress.org/extend/themes/sliding-door

    Let me take a look and I’ll get back to you on solution.

    thesurfinstitute
    Participant

    There’s really nobody out there that can assist me with this!??! I know it can’t be that difficult… PLEASE…. somebody??

    Zigster
    Member

    OK, I feel pretty stupid.

    To change the header menu you just go to Appearance > Menus, and create a custom Menu.

    Yay!

    BlinkyBill01
    Participant

    Well, after hours and hours, I’ve gone through and find/replaced what I needed. Seems that RocketTheme’s Gantry-BuddyPress plugin doesn’t use the exact code to call for the language files. It was all written in html.

    I’ve also changed the language files incase they left some of the original BuddyPress code in.

    I am stumped on one thing, and this should be the last I need changed in regards to the design of my site.

    I’ve been able to change the Groups Directory to Guilds Directory as well the majority of Groups to Guilds. The only things that I haven’t found are what the search box on the groups page lists and the part that lists “Public Group / *** member” listed to the right of the group info.

    I’ve gone though every file in Gantry-BuddyPress plugin, and the theme files as well as the BuddyPress plugin folder and I can’t find anything that lists “Search Groups…”, I’ve found “Public Group” in a lot of files and changed them, but after uploading the files the site does not reflect the change.

    #130892
    yadigit
    Participant

    I just learned how to do that. in the Global.js located (/plugins/buddypress/bp-themes/bp-default/_inc) you will see Global,js.. open it up with a text editor ( I use notepad++ ) go to line 1200 and you will see
    `if ( jq(this).children(‘ul’).children(‘li’).length < 5 ) return;` Replace the 5 with what ever number you want it to hide when it reaches that limit.

    Now on line 1212 you will see
    `if ( i < comment_lis.length – 5 ) {`
    Once again change the 5 with what ever number you want it to hide when it reaches that limit,
    Let me know if it works @mary Jane

    @mercime
    Participant

    Widget title alignment is corrected and updated in my previous post. Found out the conflicting style is inline and so we need to add the !important in stylesheet.

Viewing 25 results - 15,676 through 15,700 (of 31,071 total)
Skip to toolbar