Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 5,326 through 5,350 (of 6,794 total)
  • Author
    Search Results
  • #88464

    Morning lads,

    Sun is shining here, hope you’re all having a great day.

    @mr_pelle

    I think we’re going in circles a little here; and its a position we’ve all been in and can feel your pain a little.

    I see where I might have confused you yesterday.

    Including the WordPress loader in the bbPress config file, so that bbPress has access to WordPress functions, is where most (if not all) of the deep integration questions/work/answers have been derived from. It’s a one way system, calling wordpress functions in bbpress. It’s not a two way system (where wordpress can call bbpress functions, and vice versa).

    Hardcoding is not a good choice IMHO, because it means you have to update many pages everytime you change your mind just on a single line of code

    Not really. You’d have to edit it once in the header in wrodpress and once in the header in bbpress. Being absolutely frank with you, that is the minimum you have to do everytime you make a change to your themes anyway because bbpress and wordpress don’t load the same theme files.

    The way to think of bbPress and WordPress is of two separate systems that share login cookies and you can fake each’s themes make look like each other.

    It’s a tough nut to get round, espeically with them being built and maintained by the same company (who are usually awesome at this sort of thing), but really, and it pains me to say this, they don’t integrate. You/me/everyone read the front page and assume it’s not [trying not to say the word ‘lie’ here]; and we expect it to be one thing and it’s not. I don’t say that to casue annoyance, i’m just tyring to manage expectations a little.

    bbPress and WordPress are two separate systems which can be made to share login cookies.

    Wasn’t bbPress born for this (and more)?

    Nope.

    bbPress was born for the sole purpose of running the wordPress support forums.

    Cookie integration was a nice idea added sometime around 0.8 (as i recall), was awesome for 5 weeks with 0.9 before a wordpress update broke it. Automattic got round to fixing it some 14 months later.

    bbPress playing nice with wordpress is a nice hook on the front page, it is not now, nor shall be, it’s purpose. (hence Matt telling people to not use the software, and that he’s scrapping it to become a wordPress plugin instead).

    Not to mention that the code you suggested does not handle login errors…

    Yeah it does. Login errors are always handled on the login page. (wp-login.php and bb-login.php). All we’ve built is a form that points to those pages.

    If you login successfully you’ll be redirected back to your page, if not you’ll hit the original/default login page with the error.

    if you’re looking to recreate the wp-login/bb-login page on every/all pages with all the functionality that entails, then you’ve a much bigger job on your hands, and if i’m honest, i’d head to the wordpress forums for some help there (in my experience wordpress is fussy about wp-login being used).

    #88439
    TrishaM
    Participant

    Yes, the my-templates folder and its two sub-folders are set to 755. I did find that suggestion when searching for a fix, and made sure of that before posting my question, but it did not make any difference – I still can only choose from the two default (kakumei) themes……

    I use 1&1 for hosting, and I don’t think they’ve made any changes but if I knew what to look for I could check that specifically – also, the my-templates folder was fine before I upgraded from 0.9.0.2 to the latest 1.0.2

    What I’m doing in the meantime is just modifying the default kakumei theme, but that is not ideal because I’ll have to remember to keep it backed up and not overwrite it on the next upgrade…..I’d prefer to find a solution to the problem.

    I’m grateful for any help anyone can offer.

    #88485
    chrishajer
    Participant

    You could use a plugin to make all topics sticky by default. I haven’t seen that plugin yet, but I believe it would be possible to just make all the topics sticky when published.

    #88437
    GW
    Member

    Hi. I’m new to bbpress, and I seem to be having the same problem. The theme folders in my-templates do not show up on the Appearance page of my bb-admin. I’ve tried the 755 fix to no avail. Only the two default themes show up :(

    #88435
    TrishaM
    Participant

    Hi Gautam – thanks for your response.

    Below is what is at the top of my custom theme’s style.css – I did compare it to the default (kakumei) theme to be sure something hadn’t changed there with the new version of bbPress, but this should be working. It was working fine before the upgrade, but after the upgrade bbPress no longer ‘sees’ the two themes in the my-templates folder (the other is a testing theme I occasionally use to test new things). It does find the my-plugins folder just fine, just not the my-templates.

    /*

    Theme Name: TWE New

    Theme URI: http://www.tech-kitten.com/

    Description: Custom bbPress theme to match TWE site.

    Version: 1.02

    Author: Trisha Miller

    Author URI: http://www.tech-kitten.com/

    */

    #87750

    Ok, so I noticed a small bug when posting this (because I went to edit and the edit link is tiny).

    Line 99 of the stylesheet has “font-size:0.8em” (which seems accurate) but according to Firebug it thinks that the 960 reset is loaded afterwards as its loaded via 3 different @import commands (fyi – madness) because of how the browser handles loading of child stylesheets (it’s not concurrent). The 960 reset states that “font-size:100%” for everything.

    So firebug, and chrome tools will all show that they’re applying “font-size:100%” which in essence they are, they’re just applying 100% of the 0.8em.

    EDIT: ok, so a bit more investigation turns out that “em”s were decided to be used for some of the links and things on the left under the avatar, while “%”s were used elsewhere, and “px”s were specified for other text – so its really a bit of a mish mash that has high potential to look different on every system (especially as the css reset is loaded 3rd or 4th by the browser); compunded by a choice to use different looking fonts per system.

    On line 103 of style.css we specify the font for the actual forum post text:

    #bborg-discussion #thread div.post {

    font-size:12px;

    }

    Now according to Firebug and chrome dev tools the font-size:12px is scored out (as if it’s being overwritten) because the reset is loaded after. But if you click on it in firebug to actually disable it, hey presto, the font actually grows to the default size.

    Oh and more of an FYI as to why it’s hard to debug, after we apply our reset and our styles, we then have this added by the 960’s text stylesheet that will mess with the base units:

    body{font:13px/1.5 Helvetica,Arial,’Liberation Sans’,FreeSans,sans-serif}

    We basically play about with the font-sizes all over the shop in the stylesheets, and the fonts used too (i can see about 10 fonts listed).

    #87749

    Thanks for that Chris, v helpful.

    Your text seems a tad bigger than mine but I think i might have found some of the issues.

    1) The stylesheet specifies “Lucida Grande,Tahoma,’Bitstream Vera Sans’,Arial,sans-serif” and I’m not sure it was tested on all of those fonts.

    There’s quite a large difference between the way Lucia Grande and Tahoma look on windows (and people with Safari on Windows can now have Lucia Grande; but its not there by default), and at 12px and above Tahoma and Arial start to look differently too…

    2) In comparing what I can see on the forums and your screenshot, I’m getting 2extra words per line.

    Either way, it’s a drop in text size of a considerable amount. And a drop in the amount of space that the text is given in comparison to the old theme (not that an increased avatar doesn’t help the conversation but…)

    3) On the forum listing, since last week, some of the text has been of a bigger size than others. Specifically:

    #bborg-discussions table td div {

    font-size:14px;

    }

    Edit: I have no extrnal css stuff going on, which i put down to laziness ;-)

    #34290
    TrishaM
    Participant

    I’ve just upgraded to newest version 1.0.2 and now can no longer access my “my-templates” folder with my custom theme files. In addition, it thinks that there are three versions of the default kakumei theme even though there is only one instance of that theme folder in the bb-templates folder.

    It won’t even recognize my custom theme if I put it into the bb-templates folder – although the theme has worked perfectly before the upgrade, I have no way to choose it now.

    I’ve searched for hours and cannot find any fix for this (and yes I did make sure that my permissions are set correctly to 755). I followed the upgrade instructions to the letter.

    Has anyone else run into this problem and found a solution?

    #87742
    _ck_
    Participant

    Hmm, my font-size increase trick is no longer working, someone changed the stylesheet.

    The default font-size is ridiculously small.

    Did someone seriously hard code the font-sizes into PX instead of percent or em?

    Ah this will fix it in Stylish

    * {font-size:98% !important;}

    #34270

    Sorry, does anybody knows here how to settle such a problem. No pictures could be seen in my bbPress forum and the basic theme can not be changed, because no other theme works properly. For example, the is definitely a file on the server http://www.free-russia.net/bbpress/my-plugins/bbpress-polls/icon.png but .htaccess file of WordPress redirects to the 404 error page.

    The .htaccess file is this one:

    # BEGIN WPSuperCache

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    AddDefaultCharset UTF-8

    RewriteCond %{REQUEST_URI} !^.*[^/]$

    RewriteCond %{REQUEST_URI} !^.*//.*$

    RewriteCond %{REQUEST_METHOD} !POST

    RewriteCond %{QUERY_STRING} !.*=.*

    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$

    RewriteCond %{HTTP_USER_AGENT} !^.*(2.0 MMP|240×320|400X240|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|Googlebot-Mobile|hiptop|IEMobile|KYOCERA/WX310K|LG/U990|MIDP-2.|MMEF20|MOT-V|NetFront|Newt|Nintendo Wii|Nitro|Nokia|Opera Mini|Palm|PlayStation Portable|portalmmm|Proxinet|ProxiNet|SHARP-TQ-GX10|SHG-i900|Small|SonyEricsson|Symbian OS|SymbianOS|TS21i-10|UP.Browser|UP.Link|webOS|Windows CE|WinWAP|YahooSeeker/M1A1-R2D2|iPhone|iPod|Android|BlackBerry9530|LG-TU915 Obigo|LGE VX|webOS|Nokia5800).*

    RewriteCond %{HTTP:Accept-Encoding} gzip

    RewriteCond /home/freerus/public_html/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f

    RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz [L]

    RewriteCond %{REQUEST_URI} !^.*[^/]$

    RewriteCond %{REQUEST_URI} !^.*//.*$

    RewriteCond %{REQUEST_METHOD} !POST

    RewriteCond %{QUERY_STRING} !.*=.*

    RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_).*$

    RewriteCond %{HTTP_USER_AGENT} !^.*(2.0 MMP|240×320|400X240|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|Googlebot-Mobile|hiptop|IEMobile|KYOCERA/WX310K|LG/U990|MIDP-2.|MMEF20|MOT-V|NetFront|Newt|Nintendo Wii|Nitro|Nokia|Opera Mini|Palm|PlayStation Portable|portalmmm|Proxinet|ProxiNet|SHARP-TQ-GX10|SHG-i900|Small|SonyEricsson|Symbian OS|SymbianOS|TS21i-10|UP.Browser|UP.Link|webOS|Windows CE|WinWAP|YahooSeeker/M1A1-R2D2|iPhone|iPod|Android|BlackBerry9530|LG-TU915 Obigo|LGE VX|webOS|Nokia5800).*

    RewriteCond /home/freerus/public_html/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f

    RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L]

    </IfModule>

    # END WPSuperCache

    # BEGIN WordPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /index.php [L]

    </IfModule>

    # END WordPress

    The blog is here: http://free-russia.net and the forum is here: http://free-russia.net/bbpress.

    Could anybody say what should be added or changed to make the forum work properly?

    #87354
    Arturo
    Participant
    #87353
    gerikg
    Member
    #87352
    Arturo
    Participant

    hi rockyteng,

    thank you, u’re welcome ;)

    #88221
    chrishajer
    Participant

    If this is a problem with the forum at wordpress.org you would get more response reporting the error there, since the version of bbPress they use there is not a default installation by any means.

    https://wordpress.org/report-bugs/

    #87350
    Arturo
    Participant

    Finally the “normal” version of BuddyPress Default theme for bbPress is ready for the download.

    This theme DOES NOT require the deep integration.

    For the download link, info, request etc, go here.

    I think all works without a problem, but a debugging is appreciated.

    one last thing… sorry for the delay.

    Enjoy!

    #34237
    Arturo
    Participant

    hi, i need the function to show the user’s avatar on the forum sidebar, anyone can help me?

    thanks

    edit: i’ve tested this

    <?php echo bb_get_avatar($user->ID, 40, $default); ?>

    but i see a generic avatar and not my gravatar… help me!

    #88205
    chrishajer
    Participant

    What version of bbPress are you using?

    Is it integrated with WordPress?

    AND

    Are you using a customized theme? If so, try the included default kakumei theme and see if the functionality works.

    #84341
    gerikg
    Member

    http://pixopoint.com/forum/index.php?topic=1605.0

    I’m having the same problem. I have nothing set other than the default settings. Nothing is being written to the uploads folder.

    Also: “Chunks of text to remove” boxes numbers keep increasing, it started with 3 boxes now it’s 11 boxes with nothing in them.

    I’m using Version 1.0.2 beta

    #87734
    Milan Dinić
    Participant

    Noel, here are problems that I think are important to fix:

    • no download link for plugins, version etc (major)
    • in login form in header, username and password are not deleted when you click on it, so you need to manually delete them
    • no subscribe to topic link (I’m now wondering could be this solved by using action topicmeta instead of hardcoding in theme since this won’t work in any theme by default)
    • better aligning on post form on plugin’s pages
    • better pagination on profile pages on forum
    • more margin between columns on user’s favorites page

    Also, gravatars could be added to posts on plugin’s page too.

    #88087

    Hmmm, you’re right. Actually i am not seeing the dropdown to select any templates, even the custom homepage I made. In quick edit there’s only the the “Default Template” option.

    paulhawke
    Member

    I can tell you one thing – the site is using my Topic Icons plugin. That is very gratifying to see! :-) In fact, they are running with the default skin.

    #77531

    In reply to: All RSS Feeds Broken?

    cm
    Member

    @zaerl

    Ho provato a fare tutte le modifiche possibile, ma non ho trovato soluzione… come risolvo? Ho anche sostituito i file rss2.php, rss.php con quelli di default (anche se prima non li avevo toccati) ma nulla

    #34146
    lemere
    Member

    I am in need of a very basic custom bbpress theme. I am using the default theme which it is not matching my site and I am not versed enough with bbpress to create it myself. If anyone would like to qoute this please email me at info at salonsuccessstrategies dot com.

    #85978

    If some file is missing any of the files, the default ones are used from default theme.

    P.S. – I know this question is one month old but I came on it searching for something

    #87297

    In reply to: wordpress integration

    kikko088
    Member

    nothing, I try to add also this line but nothing…:( clean install of bbpress and 0 plugin wp.

    my bb-config.php

    <?php

    /**

    * The base configurations of bbPress.

    *

    * This file has the following configurations: MySQL settings, Table Prefix,

    * Secret Keys and bbPress Language. You can get the MySQL settings from your

    * web host.

    *

    * This file is used by the installer during installation.

    *

    * @package bbPress

    */

    // ** MySQL settings – You can get this info from your web host ** //

    /** The name of the database for bbPress */

    define( ‘BBDB_NAME’, ‘mio’ );

    /** MySQL database username */

    define( ‘BBDB_USER’, ‘root’ );

    /** MySQL database password */

    define( ‘BBDB_PASSWORD’, ‘root’ );

    /** MySQL hostname */

    define( ‘BBDB_HOST’, ‘localhost’ );

    /** Database Charset to use in creating database tables. */

    define( ‘BBDB_CHARSET’, ‘utf8’ );

    /** The Database Collate type. Don’t change this if in doubt. */

    define( ‘BBDB_COLLATE’, ” );

    /**#@+

    * Authentication Unique Keys.

    *

    * Change these to different unique phrases!

    * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}

    *

    * @since 1.0

    */

    define( ‘BB_AUTH_KEY’, ‘put your unique phrase here’ );

    define( ‘BB_SECURE_AUTH_KEY’, ‘put your unique phrase here’ );

    define( ‘BB_LOGGED_IN_KEY’, ‘put your unique phrase here’ );

    define( ‘BB_NONCE_KEY’, ‘put your unique phrase here’ );

    /**#@-*/

    /**

    * bbPress Database Table prefix.

    *

    * You can have multiple installations in one database if you give each a unique

    * prefix. Only numbers, letters, and underscores please!

    */

    $bb_table_prefix = ‘bb_’;

    /**

    * bbPress Localized Language, defaults to English.

    *

    * Change this to localize bbPress. A corresponding MO file for the chosen

    * language must be installed to a directory called “my-languages” in the root

    * directory of bbPress. For example, install de.mo to “my-languages” and set

    * BB_LANG to ‘de’ to enable German language support.

    */

    define( ‘BB_LANG’, ” );

    require_once(dirname(__FILE__) . ‘/../wp-load.php’);

    OR

    (

    /* Deep integration */

    if ( !defined(‘ABSPATH’) & !defined(‘XMLRPC_REQUEST’)) {

    define(‘WP_USE_THEMES’, false);

    include_once(dirname(__FILE__) . ‘/../wp-blog-header.php’ );

    header(“HTTP/1.1 200 OK”);

    header(“Status: 200 All rosy”);

    }

    )

    ?>

    I I’m not expert on php, I add correctly the line?

Viewing 25 results - 5,326 through 5,350 (of 6,794 total)
Skip to toolbar