Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 23,101 through 23,125 (of 32,481 total)
  • Author
    Search Results
  • #80413

    I am currently attempting something similar. I have an integrated WP and bbPress but want to switch to WPMU. I’ve successfully imported the user tables through phpMyAdmin. There are three columns you need to add to the wp_users table:

    display_name - varchar(250) - blank default value
    spam - tinyint(2) - default value = 0
    deleted - tinyint(2) - default value = 0

    And in wp_usermeta table you need to do a SQL search and replace to change all values that have wp_ to wp_1_ (because the main blog in WPMU has got that table prefix)

    UPDATE wp_posts SET meta_key = replace(meta_key, 'wp_','wp_1_');

    #80409
    johnhiler
    Member

    Ah I just was noticing that you’re calling four separate CSS files in your bbpress install! That’s a lot… you might want to narrow that down a bit. :-)

    #80406
    christianrharris
    Participant

    Thanks. I searched for this code and can’t find it. I can see lots of style.css files. Is it the file in the main directory or in my Themes folder.

    Thanks kindly!

    #79937
    aequity
    Member

    When I deleted the line 2: require_once (‘admin.php’);

    I now get the error that you currently see on the site

    http://www.MichiganPokerNews.com

    Which is:

    Fatal error: Call to undefined function bb_get_forums() in /home/content/m/i/c/michiganpoker/html/bb-admin.php on line 4

    Line 4 code currently reads:

    $forums = bb_get_forums();

    thoughts?

    A.

    #80422
    johnhiler
    Member

    Here’s a list of bbPress professionals, although I don’t know how many of them have done development:

    http://bbshowcase.org/forums/topic/bbpress-professionals-advertise-in-this-topic

    The most prolific developers are _ck_ and Nightgunner5.

    Nightgunner5 has written 9 plugins that I’m aware of (I use two of them, and they are excellent):

    https://bbpress.org/plugins/profile/nightgunner5

    _ck_ is by far the most prolific developer, with 60 plugins:

    https://bbpress.org/plugins/profile/_ck_

    But according to that link above on bbshowcase (her site), she’s not available right now. If you have a larger budget though, it might be worth dropping her a line and seeing if she’s open to it.

    You might also try Ivan here:

    https://bbpress.org/plugins/topic/wordpress-bbpress-syncronization/

    If there are active plugin developers that I’ve missed, please let cupra know in the comments!

    Good luck! And if you’re open to contributing any custom plugins to the plugin section when you’re done, that’d be great! I’d be glad to help test the plugin… :-)

    #79935
    aequity
    Member

    Thanks John: Before I move forward, I went to the site and here’s the code on line 2:

    require_once(‘admin.php’);

    I notice, looking through the file list both on my computer and on the remote site that there is no file labelled “admin.php”.

    Could that be the problem? I’m using a 5.* version of php if that helps.

    Also, the only file thats a “home” or “index” file is index.php….

    Hope this may help you pinpoint the problem a bit. Thanks, A.

    #80421
    cupra
    Member

    I see. That makes sense. Are there any developers here in this forum with a good reputation who could be recommended? I’m very new here, and I’d rather hire someone who regularly contributes here than just anyone on a rent-a-coder type site. I would really appreciate being pointed in the right general direction.

    #64200
    dikkevandale
    Participant

    No specific solution :/

    #80361

    In reply to: [REQ] Portal Plugin

    Shagalaga
    Member

    ooook it works all fine, but how can i achieve that bbcode light, images and emoticons to work on the portal?

    #80405
    chrishajer
    Participant

    Because you have this in your style.css:

    .entry ol li {
    line-height:140%;
    padding:0 0 1em 0;
    list-style-position: inside;
    list-style-type:decimal;
    }

    to get rid of it, change the last line to this:

    list-style-type:none;

    #64198
    dikkevandale
    Participant

    I don’t want to show the bbpress profile only, instead I want everything that is shown on the bbpress profile to be shown on the wordpress user profile. Is this possible?

    WP User Profile

    blabla


    Forum stats:

    blabla

    All on 1 profilepage.

    #80317

    This might be a cleaner solution

    <?php
    switch ( $topic->forum_id ) { // Ignore these forums
    case 29:
    case 30:
    case 18:
    case 15:
    case 4:
    continue 2;
    }
    ?>

    or for including only certain forums

    switch ( $topic->forum_id ) { // Include only these forums
    case 29:
    case 30:
    case 18:
    case 15:
    case 4:
    break;
    default:
    continue 2;
    }
    ?>

    but using that if statement, you need to change the line

    <?php if( $topic->forum_id != 29 && $topic->forum_id != 30 && $topic->forum_id != 18 && $topic->forum_id != 15 && $topic->forum_id != 4 )

    and you can find the forum ID from looking at its Edit URL in the admin panel (under Forums)

    #80078
    carlosdelab
    Member

    Hello Everyone,

    I can’t see images in my bb-press

    even, using the BBcode Buttons Toolbar.

    this is a list of my plugins that I have now installed in my bbpress.

    Akismet


    Version 1.1

    Allow Images


    Version 0.7.1

    BBcode Buttons Toolbar


    Version 0.0.9

    BBcode Lite


    Version 1.0.3

    bbPress Attachments


    Version 0.2.7

    Bozo Users


    Version 1.1

    Hello Louie


    Version 1.0

    All of this plugins work fine, but with some extrange reason I can’t see any image.

    best

    and thanks in advance.

    c.

    #80332

    In reply to: Downloading "Kakumei"

    chrishajer
    Participant

    The name of the theme is at the top of style.css – you can change it to something memorable there.

    Theme Name: InvTrdr Custom Theme

    You can change other lines in that theme header if you want, but this one is the major one.

    You can also replace screenshot.png in your theme folder with something that will visually identify the theme for you when you’re working in the admin.

    #79444
    chrishajer
    Participant

    Add the code to your sidebar.php, just follow the same format as the other two boxes that are there. Then put your code in between the opening and closing tags. It would be a new block of code looking something like this:

    <!-- ads START -->
    <div class="widget">
    <h3>Please visit our sponsors</h3>
    MHYD PASTE AD CODE HERE
    <div class="fixed"></div>
    </div><!-- end widget -->
    <!-- ads END -->

    Just put that wherever you want in the sidebar, before or after whatever else is there. Just make sure you don’t post it into the middle of some other div and break the sidebar.

    I don’t know of a bbPress theme with the concept of widgets. So you’ll have to edit sidebar.php manually to achieve what you want.

    #80365

    You don’t need to uninstall to move bbPress as such, since it’s not installed in any way apart from the the .htaccess file settings and the database settings.

    You need to change the uri setting under bb_meta in the database to the new forum URL, and then change the .htaccess file so it matches the new directory.

    The .htaccess file can probably be fixed by turning off Permalinks and then back on. Don’t forget to log out and in again too.

    The options might be changeable by using __ck__’s All Options, but I have a feeling the URI isn’t editable from there.

    #80331

    In reply to: Downloading "Kakumei"

    Edit the style.css file in the copy, that’s where all the name/description data is stored :)

    #80356
    CraigElias
    Member

    OK so I got lucky and remove the line of code in my config file and was able to get back into the directory location and move things back to the way they were.

    Now I just need to give this to someone who knows what they are doing to move it where I want.

    Craig

    #80358

    In reply to: [REQ] Portal Plugin

    Shagalaga
    Member

    Wow i’ve just found sth o.O

    http://www.bbportal.org/

    it has some bugs, but is quiet good, unfortunately this project seems to be abandoned

    #80337

    In reply to: Topic icon

    Jiyong
    Member

    Ho nice, verry verry nice but …

    i edit ► $unread_posts=

    includ : .”.topic_icons {filter : alpha(opacity=100); -moz-opacity : 100; opacity : 100; }”

    But it does not work

    change another code ?

    #80350

    In reply to: Navigation

    ZoiX
    Member

    johnhiler, thank you for all your help ;)

    #80349

    In reply to: Navigation

    johnhiler
    Member

    Ah got it. The checkboxes are a way for you to tell bbPress which stats to recount… once the recount is done, all checkboes are unchecked – so you can specify once again which stats you’d like to be counted next time.

    If you have any more questions, please create a new thread and we’ll try to help you out there! :-)

    #80348

    In reply to: Navigation

    ZoiX
    Member

    Glad it worked out. :-) That plugin was by _ck_, so you might want to send her a donation if you have the funds.

    Yes, I will do. I have many plugins from _ck_ and is time to say thank you.

    I’m not following your question about checkboxes and Tools/Options?

    Look an image.

    Before that, I was check the two first options, but, after save, the checkboxes appear without check. Mmh, I am not sure if you understand me :S

    #80347

    In reply to: Navigation

    johnhiler
    Member

    Glad it worked out. :-) That plugin was by _ck_, so you might want to send her a donation if you have the funds.

    I’m not following your question about checkboxes and Tools/Options?

    #32024

    Topic: Topic icon

    in forum Plugins
    Jiyong
    Member

    Hello,

    It is possible to change the opacity of the icon. If there is a new post 100%, otherwise 50%?

    thanks :)

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