Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 17,951 through 17,975 (of 31,073 total)
  • Author
    Search Results
  • #119242
    matuh
    Participant

    Somehow I got to show the forum main page, but all the forums and topics are now redirected to Group Forums Directory. I do not want to use groups forums. What could be the problem?

    #119241
    matuh
    Participant

    Then I have no idea why my forum pages are not showing up :S

    #119233
    Paul Wong-Gibbs
    Keymaster

    Testbp runs unmodified versions of BuddyPress and bbPress development versions

    #119232
    matuh
    Participant

    Yes, but it doesn’t show bbPress links. It seems that they have modified it.

    #119230
    modemlooper
    Moderator

    when you use bbPress with BuddyPress default theme it has the the same theme that is on testbp.org.

    #119229
    modemlooper
    Moderator
    #119227
    matuh
    Participant

    Like this I ment: http://testbp.org/discussion/

    #119226
    matuh
    Participant

    Or is there an other way how to setup a forum like this into BuddyPress?

    #119208
    matuh
    Participant

    Yes, I’m talking about the bbPress plugin.

    #119206
    @mercime
    Participant

    Just to clarify, the bbPress you’re referring to is the plugin, right? Because bp-default theme and BP themes in WP repo and premium do already add pages/style for internal bbPress forum bundled with BuddyPress.

    #119203
    @mercime
    Participant

    What theme are you using? What are the links in your main nav at this time? Or, this might just be what you need http://www.nathanrice.net/blog/creating-a-blog-page-with-paging/ – with a reminder to delete spaces between < and ? and php ergo should be ` when you copy and paste from the tutorial

    @mercime
    Participant

    @gregfielding I know what you mean :-)

    As DJPaul mentioned here, child themes can declare and empty function to override parent theme’s function. Check out Boone’s solution – a proposed patch which works of course and is better IMHO.

    You might have noticed that the link to stylesheet is no longer in bp-default theme’s header.php. Hence, you could either add the link to stylesheet in child theme’s header.php or enqueue main stylesheet ala bp-default theme.

    Cheers.

    gregfielding
    Participant

    Found it: https://codex.buddypress.org/releases/1-5-developer-and-designer-information/

    But is the proper answer just to call the enqueuing empty?

    #119183
    droombos
    Member

    I used the default theme mercime, but then it states “comments off”

    enderandrew
    Member

    That solution did not work for me. I copied the _inc folder into my child theme, and disabled Buddypress Template Pack.

    The layout was then messed up, no doubt from missing CSS. I could Add a Friend, but it didn’t use Ajax. It just re-loaded the page. And trying to post a status update just leads to a 404.

    If I enable Buddypress Template Pack, it tried to use Ajax for Add a Friend and Status Update, but neither work.

    #119179
    @mercime
    Participant

    It might be your custom theme that’s not compatible or updated for BP 1.2.9. Change to bp-default theme.

    gregfielding
    Participant

    I’ve got this error now as well. I activated buddypress and then activated the default theme BEFORE going through the buddypress setup wizard.

    How can I undo?

    You can see it:
    http://townswell.com/

    Thanks!

    #119171
    debbieoakley
    Member

    Update: Now I can’t access my site at all which is http://www.familyhotspots.com.au
    here is the error message
    Warning: Cannot modify header information – headers already sent by (output started at /home/familyho/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/functions.php:362) in /home/familyho/public_html/wp-includes/pluggable.php on line 934

    robbysusanto
    Member

    Tosh, please try my way, 1. use any themes of your choice 2. Enable BuddyPress Template Pack 3. Copy folder _inc from “/public_html/wp-content/plugins/buddypress/bp-themes/bp-default” into your theme directory

    its work at my site indonesiabox.com and also otolover.com

    #119159

    In reply to: custom theme

    czz
    Member

    Hi,
    I’m using the_excerpt . It work’s if I post the article manually, but it don’t if I use an autopst plug.

    #119158
    kkradel
    Participant

    Actually, plugins aren’t better, as they take up memory (I’m now on a VPS, so memory usage has become a concern) and they create a lot of doorways for hackage (not the good kind). I like, and would rather, hard code where ever I can, and I do, but I just don’t have the time or the bandwidth to do what I want to do on my own with BuddyPress, hence I’m stuck with plugins.

    Before using Multisite, I hard coded as much as possible – all the header/footer stuff, links that I knew were stable. If I found a plugin that worked by adding one line of code, I just found that one line of code and added it by hand instead of using the plugin.

    Currently I’m already using 30 plugins in a WordPress multisite and I’m still not getting all of the features that I need.

    Already using BP Template Pack plugin. Already created my pages, which are fine, the problem is hacking the look and feel of BuddyPress elements within those template pack pages. Things that should be hardcoded, like the navbar, subnav, elements that should be automagically installed and configured, like the ones I mentioned above, are not.

    Because I’m not using the BuddyPress theme, I can only guess that those elements are hardcoded into the theme instead?

    I’d much rather be spending my time trying to hack a way for my BuddyPress members and my WordPress members to be integrated – or trying to make my already existing NextGen Galleries work as an “Album” within BuddyPress … but instead, I’m trying to figure out how to unscramble the stupid subnav bar.

    Thanks for the code snippet links … I’m sure those would/should have shown up on my google searches if they had contained information that I was looking for. But when I get the time, I’ll peruse them and see if they contain the hacks I need. The stuff I need is really basic though and I don’t understand why it’s just not on the BuddyPress site, unless I am really missing something, which I could be …

    Thank you for trying to help … !

    #119157
    modemlooper
    Moderator

    Plugins are better because then you have options as apposed to only having what is in core. BuddyPress comes with a set of core components but each of these have hooks, filters you can plugin into and craft anything your coding skills can muster.

    You can use the profile part or maybe you just need groups. Pick and choose what you need to make it work for you.

    The BP template pack plugin is there to help you integrate with a regular WP theme.

    Code snippets:

    http://bp-tricks.com
    http://blog.etiviti.com/tag/buddypress-hack
    http://buddydev.com/category/buddypress-tricks/

    #119153
    Tammie Lister
    Moderator

    My idea would be to use the body class:


    .logged-in

    For instance we have the following class and style for the padding:


    body {
    padding-top: 25px;
    }

    We could use something like this:


    body.logged-in{
    padding-top: 25px!important;
    }

    body{
    padding-top: 0px!important;
    }

    This would be in the child theme and unfortunately requires some bunny killing by the use of !important as a dirty fix.

    A ticket does seem sensible to me with a simple class change on if logged in like I’ve put there. Whilst we do need that padding there it just sticking with no admin bar probably isn’t best.

    In the ticket / non hacky method I’d suggest it without the bunny killing code :):


    body.logged-in{
    padding-top: 25px;
    }

    body{
    padding-top: 0px;
    }

    #119152
    modemlooper
    Moderator

    Try copying the folder _inc from bp-default over to your theme folder.

    #119067
    joevansteen
    Participant

    I was posting on a StudioPress forum about their efforts to upgrade their Genesis Connect plugin for compatibility with v1.5 and asked about the recommended install process (uninstall/re-install). The answer in part was:

    “There are BP 1.2.9 functions calls in GC 1.0.7 that are not in the BP 1.5 beta-2. If you leave GC 1.0.7 active and upgrade BP, you end up with call to undefined function errors both in the front end and in the admin area of your site.”

    BP 1.5 seems like a major move and, from what I’ve seen as I begin to look at it, a very beneficial move. However, it also seems, from the discussion in this forum, to be a move with big impact in terms of plugins. I’m new here, but on that basis I have a question:

    Would it have been possible or make sense to ease the transition in some cases by providing some adapter functions that would translate old replaced functions with re-directions to their new counterparts? The old functions could then be identified as deprecated and removed at a later date, but in the immediate horizon some plugin modules might continue to work rather than needing to be modified or abandoned? Simply dropping stuff without fair warning seems drastic.

    It might not be possible in all cases, but it might help with the transition. I know a lot of people want to move forward to the new v1.5 and this type of code strategy might help.

    Just a thought.

    BTW – I’m beginning to play with beta 5029 and it looks fantastic! Great job … you guys did a lot of good work!

Viewing 25 results - 17,951 through 17,975 (of 31,073 total)
Skip to toolbar