Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 19,101 through 19,125 (of 32,518 total)
  • Author
    Search Results
  • zaerl
    Participant

    Actually speaking PHP core function parse_url does generate a E_WARNING when the URL cannot be parsed. This happens if the server is running PHP < 5.3.3.

    You really should turn off error reporting modifying bb-load.php line 25 (the error_reporting( E_ALL ^ E_NOTICE ); line).

    After a quick (very quick) look at bbPress code it seems that they are using urlencode in urlencode_deep. I think that the right approach for the “re” GET variable is to use rawurlencode like it happens with “_wp_http_referer”.

    #94963
    miruru
    Member

    Quick question, will the bbpress plugin come with a generic theme rather than using the twentyten theme? I’m asking this because my site is not based on the twentyten theme and having a generic theme with only the relevant code would be great.

    Thank you again for all your hard work on this.

    Gautam Gupta
    Participant

    Thanks for the topic _ck_! :)

    @Rich @tieptoep @intimez

    Thanks!

    Gautam Gupta
    Participant

    Thanks for the topic _ck_! :)

    @Rich @tieptoep @intimez

    Thanks!

    #101144

    In reply to: bb Mystique Theme v1.0

    Gautam Gupta
    Participant

    @Aung and @Adrienkb

    Will have a look into those issues.

    @Ramiuz

    No demo yet, you can view the screenshot instead. You have to edit the options in functions.php (there aren’t many) and a sidebar is actually not needed in bbPress, so I removed it. :)

    #96044

    In reply to: bb Mystique Theme v1.0

    Gautam Gupta
    Participant

    @Aung and @Adrienkb

    Will have a look into those issues.

    @Ramiuz

    No demo yet, you can view the screenshot instead. You have to edit the options in functions.php (there aren’t many) and a sidebar is actually not needed in bbPress, so I removed it. :)

    intimez
    Participant

    Great job Gautam Gupta!!!! Keep it up!!!

    intimez
    Participant

    Great job Gautam Gupta!!!! Keep it up!!!

    #104283

    In reply to: WPMimic V.1

    Vietson
    Member

    You are right, the registration form does not work for some reason. I’ll take a look into it this weekend since I’m in btw projects atm.

    As for the bbPM plugin, I’m not sure why its breaking the layout just yet. I think its because of how the header.php and footer.php are coded. I’ll try to fix this, not sure how yet but I’ll be thinking about it.

    #99183

    In reply to: WPMimic V.1

    Vietson
    Member

    You are right, the registration form does not work for some reason. I’ll take a look into it this weekend since I’m in btw projects atm.

    As for the bbPM plugin, I’m not sure why its breaking the layout just yet. I think its because of how the header.php and footer.php are coded. I’ll try to fix this, not sure how yet but I’ll be thinking about it.

    Anonymous User 5853594
    Inactive

    Great job Gautam!

    Anonymous User 5853594
    Inactive

    Great job Gautam!

    Rich Pedley
    Member

    Well deserved, congrats.

    Rich Pedley
    Member

    Well deserved, congrats.

    _ck_
    Participant
    #94958
    Ricardo
    Participant

    @Gautam

    its only working now because i reuploaded the images as 25×25, if i upload them again at 200×200 they will appear as 200×200 eventough i specified 25×25.

    The same code works perfectly on wordpress themes, the quick fix was to upload images in the exact size, not perfect solution but it works.

    Perhaps someone else has an ideia on how to make it work without uploading images in the exact size?

    #72960
    iftomkins
    Participant

    I also wanted to stop the categories from displaying ‘0’ on my front page. I followed CK’s advice and edited my theme’s front-page.php file.

    I changed

    <?php forum_topics() ?>

    to

    <?php $cat_topics = get_forum_topics();
    if ($cat_topics > 0) {
    echo forum_topics();
    }
    else { echo ' '; }
    ?>

    and

    <?php forum_topics() ?>

    to

    <?php $cat_posts = get_forum_posts();
    if ($cat_posts > 0) {
    echo forum_posts();
    }
    else { echo ' '; }
    ?>

    #99331

    Makes sense. If you’re using it as a stand alone, you can continue to do so if you’re happy with it’s features as we’ll be continuing support for the 1.0/1.1 branches of code for the conceivable future. If you’d like to run the latest and greatest and have a need for WordPress integration, then the in-development plugin version is the way to go.

    #104431

    Makes sense. If you’re using it as a stand alone, you can continue to do so if you’re happy with it’s features as we’ll be continuing support for the 1.0/1.1 branches of code for the conceivable future. If you’d like to run the latest and greatest and have a need for WordPress integration, then the in-development plugin version is the way to go.

    So i got them integrated but when i go into deep integrate i put the code the requires the wp_load.php file and when i save it upload it and go to bbpress domain it takes me to my WordPress site and wants me to create a user/blog for it or if i am logged in on WordPress it tells me the blog does not exist? If i remove the require once line it goes back to working. On wordpress i have w3 total cache, the domain mapping plugin, bbPress Intergration plugin with it set to wordpress mu and thats it the others are not that big such as akismet cforms smart youtube wordpress importer and wp-pagenavi

    BTW yes i have the iBlogPro theme and bbpress theme

    #94953
    Gautam Gupta
    Participant

    @ricardouk

    Looks like you fixed it. You can have the width and height attributes in the parameters. Correct me if I am wrong. :-)

    #94952
    Ricardo
    Participant

    Hi everyone!

    I don´t know wether to post this here or start a new thread, if the mods find it unsuitable i will open a new one.

    I just installed the bbpress pluggin on a test site, just trying to figure things out and start learning while its being developed, one of the first things i wanted to do was adding a icon to the each forum in the forum list and since the new bbpress uses “wordpress” i went and added a thumbnail to each forum at:

    Admin panel>>>Forums>>> and edited/added a thumbail to each forum using the post thumbnail function

    but it wasnt showing up so as newbie i used firebug to find where i could add that in and i found;

    bbp-themesbbp-twentytenloop-bbp_forums.php

    and modified:

    <td class=”bbp-forum-info”>

    ” title=”<?php bbp_forum_title(); ?>”><?php bbp_forum_title(); ?>

    to

    <td class=”bbp-forum-info”>

    <?php the_post_thumbnail(array( 25,25 ), array( ‘class’ => ‘alignleft’ )); ?>” title=”<?php bbp_forum_title(); ?>”><?php bbp_forum_title(); ?>

    here’s a link to the code on pastebin:

    http://pastebin.com/bNLPQj2R

    it worked but because i uploaded the images at 150×150 the thumbs were being displayed at 150×150 eventough i specified that it should be 25×25 in the code.

    Am i doing something wrong? to quicly fix it i reuploaded the images at 25×25 and they’re showing ok now.

    sorry if i’m “sounding” complicated but i cant explain it better

    here’s the live bbpress instalattion:

    http://www.ricardouk.com/bbpress/forum/

    #101140

    In reply to: bb Mystique Theme v1.0

    Adrienkb
    Member

    Issue with your theme.

    if you have:

    Main forum

    Sub forum A

    Sum form of A (B)

    going into either of those sub forums you dont see any of the post and topics that belong to those forums, you only see them if you go to the mian forum that shows an over view of all the topics

    Switching back to the default theme fixes this.

    #96040

    In reply to: bb Mystique Theme v1.0

    Adrienkb
    Member

    Issue with your theme.

    if you have:

    Main forum

    Sub forum A

    Sum form of A (B)

    going into either of those sub forums you dont see any of the post and topics that belong to those forums, you only see them if you go to the mian forum that shows an over view of all the topics

    Switching back to the default theme fixes this.

    #101139

    In reply to: bb Mystique Theme v1.0

    Aung
    Member

    Hi I try with your theme, no error with firefox but when I try with IE 8, error shows as below:

    Webpage error details

    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; BTRS31753; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    Timestamp: Sun, 13 Feb 2011 22:42:36 UTC

    Message: ‘support.opacity’ is null or not an object

    Line: 21

    Char: 19544

    Code: 0

    URI: http://forum.aung.info/bb-templates/bb-mystique/js/jquery.mystique.js?ver=1.0

    Any idea to fix this? Thanks.

Viewing 25 results - 19,101 through 19,125 (of 32,518 total)
Skip to toolbar