Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 19,976 through 20,000 (of 32,517 total)
  • Author
    Search Results
  • #90528
    Navin
    Member

    Already 2 months since the creation of this topic, and still not fixed — wow way to sell bbpress :)

    #94220
    pagal
    Participant

    @ricardouk, Thank you so much for your time and interest.

    some say 0.9.2 is faster but even if it is faster i can´t really notice it.

    Yes, I’m totally agree with you, I also can’t find any difference.

    the next version (pluggin) will be what everyone wanted,

    I don’t think so, I analyse that most of people/developers don’t want this plugin, they love standalone.

    What you think, This plugin will win the situation? Nope never,

    I’m afraid, How can biggest sites will move to this plugin.

    And those who just want to run community without WordPress, Will like it?

    off course, they need a separate forum solution.

    And what about those plugins which have developed for bbPresss standalone, Will developers again make them compatible for bbPress plugin?

    I don’t think so.. specially _ck_ will not remake them.

    Community forums is a separate issue, It should remain separate.

    Its a stupid idea to messing it up with WP. My apologies.

    I’m also not happy with those five forums software which you’ve mentioned. They all looks like same including vbulletin. They are complicated, heavy.

    You know which I choose bbPress? because of its motto :)

    yes, its really simple, fast and elegant.

    I don’t know why management remove these “three words” which was the identity of bbPress.

    With Regards,

    Pagal

    #94272

    In reply to: fetch RSS feed

    DKB
    Participant

    Thank you for the suggestion.

    With that code i get this:

    title

    first 10 words

    i want to have this:

    title

    first 10 words

    So there is too much spacing.

    #92873
    Navin
    Member

    Sorry for the very late reply… and thanks for your reply

    I’m using tons of plugins actually :( and using bbpress version 1.0.1

    The plugin which is causing this is ck’s unread post plugin.

    Luckily, this problem is only noticed by keymasters.

    I don’t really want to turn off this plugin, since its a very usefull plugin to see what is new on the forums.

    I just don’t understand how it started happening all of a sudden.

    #94271

    In reply to: fetch RSS feed

    Ricardo
    Participant

    you can use rss widgets on the homepage… if you mean “hardcoding it” to the template use the following code:

    <?php if(function_exists(‘fetch_feed’)) {

    include_once(ABSPATH.WPINC.’/feed.php’);

    $feed = fetch_feed(‘http://www.domain.com/bbpress/rss&#8217;);

    $limit = $feed->get_item_quantity(7); // specify number of items

    $items = $feed->get_items(0, $limit); // create an array of items

    }

    if ($limit == 0) echo ‘<div>The feed is either empty or unavailable.</div>’;

    else foreach ($items as $item) : ?>

    <div>

    get_permalink(); ?>”

    title=”<?php echo $item->get_date(‘j F Y @ g:i a’); ?>”>

    <?php echo $item->get_title(); ?>

    </div>

    <div>

    <?php echo substr($item->get_description(), 0, 200); ?>

    <span>[…]</span>

    </div>

    <?php endforeach; ?>

    and edit the following:

    $feed = fetch_feed(‘http://www.domain.com/bbpress/rss&#8217;);

    $limit = $feed->get_item_quantity(7); // specify number of items

    <?php echo substr($item->get_description(), 0, 200); ?>

    #77438
    mr_pelle
    Participant

    The code above has some errors in it: $thisPage is used when calling bb_list_pages() recursively, but this param isn’t defined anywhere but in the function’s description… =P In function definition that param is instead named $parent_uri.

    Moreover $kids <> "" should be replaced by !empty($kids) and I’m not sure that wordpress_mu_primary_blog_id has any meaning now that WP 3.0 has merged WP and WPMU…

    Last, calling bb_list_pages() with no args, makes if ($depth == 0) true, resulting in an empty string returned. It would be good to use the same template of wp_list_pages(), which lists all pages if no param is passed to it (see docs). By the way, this could be the reason why you get nothing displayed when calling the function.

    #31901

    Topic: made the switch

    in forum Showcase
    cichlid
    Member

    I just want to say thank you to the following people who contributed plugins and made my life much easier.

    Thomas Klaiber

    Eduardo Graells

    Michael Adams

    Nightgunner5

    _ck_

    Rich Boakes & Frédéric Petit

    Rhys Wynne

    Francesco Bigiarini

    Well, thats out of the way. :)

    I switched from phpBB3 to bbpress 1.0.2 because I couldn’t stand the huge administration section and the constant spam. In addition I had problems integrating phpbb with wordpress (yes, I tried, wp-united and hated it).

    It took me roughly 2 days to implement the forum and wordpress the way it is now and I converted the data from phpbb to bbpress. Lost a lot of users because they couldn’t convert for whatever reason but I managed to keep all the data.

    Forum Address: http://www.cichlidexplorer.com/forum

    It still needs work!!

    #94237

    Okay, I made the following change in integrated-footer.txt file:

    </div>
    <?php get_footer(); ?>
    </div>

    It arranges the footer on the homepage. But on the other pages this mess (and the other pages worked fine with the file without modification). How do I fix this?

    Att,

    #94236

    Hello,

    I turned off the plugins that added style lines that you indicated. I do not know anything was resolved, honestly … :-(

    I think I made a wrong issue in file footer.php, I will check it shortly.

    Oh, about the mistakes of styles, I’m in the “cleaning” process of the bbPress’ CSS. But which of the two files I need to edit: bb-style.css style.css?

    I appreciate your help.

    Att,

    Edit: I think what is messing up the footer is the integrated-footer.txt file, since it closes some <div> tags.

    No?

    #94235
    wblogan
    Member
    <style type="text/css">.signature {padding:1em; border-top:1px solid #ccc; font-size:0.87em; color:#444;}</style><style type="text/css">.bb_smilies {border:0; vertical-align: middle; padding-bottom:1px;}
    .bb_smilies {cursor: pointer; cursor: hand;}
    #bbClicker {position: absolute; float: right; visibility: hidden; background: buttonface; width: 150px; border:2px inset buttonface; font: 1.2em times, serif;}
    #bbClicker img {padding:5px;}
    #bb_smilies_toggle {float:right; padding: 0px 6px 1px 6px; margin: 1px 7px 2px 0; font: 1.2em times, serif; word-spacing: -1px; height: 16px; vertical-align:middle; line-height:16px;');}

    In the styles above (wherever they are coming from) this style line-height:16px;');} is wrong. It should be line-height:16px;}.

    I suppose this could be throwing everything off.

    #94234
    wblogan
    Member

    I would try commenting this line out; maybe it needs to be in a different place?

    <link rel="profile" href="http://gmpg.org/xfn/11"/>

    Where are these internal styles coming from if you have not added them to header.php?

    `<style type="text/css"><br />
    .signature {padding:1em; border-top:1px solid #ccc; font-size:0.87em; color:#444;}<br />
    </style><br />
    <style type="text/css"><br />
    .bb_smilies {border:0; vertical-align: middle; padding-bottom:1px;}<br />
    .bb_smilies {cursor: pointer; cursor: hand;}<br />
    #bbClicker {position: absolute; float: right; visibility: hidden; background: buttonface; width: 150px; border:2px inset buttonface; font: 1.2em times, serif;}<br />
    #bbClicker img {padding:5px;}<br />
    #bb_smilies_toggle {float:right; padding: 0px 6px 1px 6px; margin: 1px 7px 2px 0; font: 1.2em times, serif; word-spacing: -1px; height: 16px; vertical-align:middle; line-height:16px;');}<br />
    </style>`

    I looked at your site with Firefox and opened the error console, and I think something in these styles might be causing a problem.

    Have you edited bbpress/frontpage.php?

    Check anything you have edited for missing or misplaced closing tags.

    I’m out of my element here. These are just the things I would try. (I wish someone who knows more than me would jump in here.)

    #94233
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/bb-style.css" type="text/css" />
    <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
    <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />

    This is the edit of the header.php. It’s the only change I made in this file.

    And, no. I’m not importing another style outside my domain, and I’m using Opera 10.62.

    Thanks for the assistance.

    #94230
    wblogan
    Member

    Though integration appears to be working and the style sheet is being called in the twentyten/header.php your style sheet is not getting loaded.

    /**** Style sheets whose contents could be loaded were ****/<br />
    /**** imported instead. Rule order may be incorrect ****/<br />
    /**** as a result. ****/

    Perhaps someone else here can tell you why that is, or you may need to google it to find out why. Don’t take this the wrong way, but I’m not the person to help you beyond what I’ve told you (and what I have told you may be wrong). There’s too much I have not learned. Besides that, I’m not sure that this is the place to get help with CSS. I’ve learned what little I know about CSS from places like http://www.w3schools.com/css/. There are tools to help you with changing styles. I use the Google Chrome browser, but your browser no doubt has a “view source” feature. Google Chrome allows you to inspect elements and alter styles, and you can get the Firebug extension for it (which imho is better than chrome’s inspect element). I find the Jesse R. “edit styles” bookmarklet very useful for learning and changing css (https://www.squarefree.com/bookmarklets/bookmarklets-all.html).

    But the first order of business is to figure out why the style sheet is not being loaded.

    #94258
    curtismchale
    Member

    and we have some access logs coming through now

    70.69.128.69 - - [20/Sep/2010:19:59:48 -0700] "GET /fraservalleywhitewater.com/forum HTTP/1.1" 301 246 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; AskTbBLT/5.8.0.12304)"
    70.69.128.69 - - [20/Sep/2010:19:59:49 -0700] "GET /fraservalleywhitewater.com/forum/ HTTP/1.1" 500 20 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB0.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; AskTbBLT/5.8.0.12304)"

    still nothing in the error logs that has anything to do with /forum

    #54443

    In reply to: Add nofollow to links

    thank you! thank you!!!!! works perfectly :)

    #94116

    In reply to: Town Forum Theme

    Nice :)

    Liked it

    #94202
    wblogan
    Member

    Well, you’ve introduced me to subversion. I had no idea. I don’t know whether to thank or cuss you! :) I’ve downloaded svn packages (I run the Ubuntu distribution of Linux on my computers) and am working through documentation. I’ll get it sooner or later. Thanks!

    #94227

    I will make this changes and back here soon.

    Thanks for the help :-)

    Att,

    #94201
    mr_pelle
    Participant

    It’s a bit hard to explain… :P

    I suppose you may try to download bbPress trunk and then BackPress trunk from here and extract the /includes folder into /bb-includes/backpress folder…

    EDIT: you’ll need this too.

    #86178
    kikko088
    Member

    grazie :D

    thank you, I try to install bavatars a lot of time but avatar not appear :( than I decide to use avatar upload

    kikko088

    #94226
    wblogan
    Member

    It looks like you have the integration and deep integration working, and that all you need is to mess around with the styles. I don’t know if this will help, but check out how I got it to work. I had the Twentyten sidebar working at one point but didn’t like it in bbPress. Also, I had the same problem with the footer and didn’t want to fix it at the time. But it can be fixed with styles I’m sure.

    edit: there appears to be a problem with my server at the moment. Replace bb_get_footer in bbPress/theme/footer.php with

    </div>

    </div>

    <?php get_sidebar(); ?><div id="primary" class="widget-area" role="complimentary">

    </div>

    <?php get_footer(); ?>

    The number of divs and placement of the call for the sidebar is what makes it work. Just play around with it until you get it to work.

    #94243
    mr_pelle
    Participant

    bbPress does not support it natively; I’d suggest Ajaxed Quote plugin. =)

    #86177
    mr_pelle
    Participant

    Oh, Avatar Upload is compatible up to bbPress 0.8.2.1, I’d suggest Bavatars. ;)

    EDIT: I’ve found a fix for the bug, I’m going to upload a new version in minutes. Please note that you must regenerate your .htaccess file in order for it to work!

    #76451
    mikkelsen
    Member

    Thanks for the update, I really appreciate that. Keep it up :D

    #93974
    nuesha
    Member

    you should mail the moderator. :)

Viewing 25 results - 19,976 through 20,000 (of 32,517 total)
Skip to toolbar