Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 23,951 through 23,975 (of 32,468 total)
  • Author
    Search Results
  • #77986
    _ck_
    Participant

    When you do it for the code line make sure you put it after the echo part, ie.

    echo "// BBcodeButtons.push

    The reason why there is so little documentation is because there aren’t any donations for my plugins so there is no development/documentation. There is no support, keep that in mind when you take something for free and then want to customize it.

    #31488
    Olaf Lederer
    Participant

    While this plugin is not available on the bbpress site, I post this information here to reach as many user as possible:

    Just noticed that the old version of the bbpress SEO pluging doesn’t work with the current bbpress version (1.02).

    Because the old method to handle and meta keywords stopped working we did a quick update.

    This is a required update for user of bbpress 1.x!

    Using the old version with bbpress 1.x will result in loosing rankings search engine result pages!

    What is changed:

    • We fixed the code that is responsable for the meta keywords and the “noindex” option.
    • Optimizations of the admin page (information, spellcheck).

    Download the new version here:

    http://www.finalwebsites.com/bbpress/bbpress-seo-tools.php

    #31486
    Marius-
    Member

    Does that exist? The language-list is kind of a sad sight, but i see no “No” there. Any Norwegian users here?

    Without it, I’m gonna have to open every single php file and translate :(

    #77985
    Marius-
    Member

    HEEEEEEEEEEEEEEEEEEEEEEEEEEELLLLLLLL……..

    Not to shout but HEEEEEEEEEEEEEEEEELLLLL

    I sat up all night removing code completely, and it’s this easy? Just two slashes? Poor bastards couldn’t write that in the fucking readme file.

    It’s not that easy, when removing the “Code” button this way, I get the following error:

    Parse error: syntax error, unexpected ‘<‘ in /home/michael/public_html/forum/bb-plugins/bbcode-buttons/BBcode-buttons.php on line 29

    #76906
    neilogic
    Member

    I did have the same problem but in different context where I never wanted to dive into the code because the theme I was making was to be used by someone else and thus I just wanted the person place it and activate it and it should worked rather then him diving into the code and replacing the files.

    In the end what I did was , as BBPRESS 1.0+ supports the use of functions.php in theme files . so i just copied the function from the function.bb-template.php and changed the funciton name a bit and then replaced it in theme files.

    Example : like “You must login to post.” is in post_form function in function.bb-template.php file. I copied the function to functions.php in my bbpress template. renamed the function from post_form -> post_form_edited and made the replacements I wanted and then in my theme files where ever it was using the old function of post_form() i replaced it with my new edited function post_form_edited().

    like in your functions.php after you copy the post_form function and change it to post_form_edited you can find the line “__(‘You must log in to post.’),” and change it to anything you want. And use the new function in your theme. Like this you won’t have problems upgrading the bbpress installation too in future.

    then I dived in the theme files and replaced all the post_form() with post_form_edited() and voila it worked. But in my case I knew what I was using like the plugins and stuff and thus i tested it with everything first.

    I hope this helps you out . Some of the stuff I told above has been applied to the postform in http://forum.ubuntu-in.info.

    #25049
    richcon
    Member

    Is there any way to replace that “You must log in to post.” text that appears to non-logged-in visitors with a more friendly login / registration form?

    I’m a pretty skilled PHP coder and theme author, but from looking through the bbpress source that line seems to be hard-coded? I’m hesitant to start mucking with bbpress’s core files themselves (makes upgrading a pain), so is there any way to change that with a plugin?

    Thanks!

    #77984
    _ck_
    Participant

    Simply put two slashes in front of any code you want to disable.

    ie.

    // BBcodeButtons.push(new BBcodeButton('ed_ol','OL','
    
      ','
    ','o','','ordered list'));
    // BBcodeButtons.push(new BBcodeButton('ed_li','LI','[*]','[/*]','l','','list item'));";

    #77983
    Marius-
    Member

    Ugh, talking to myself here. There is a bug with the Link function which fucks up IE, I suppose everyone has stopped caring now.

    #77982
    Marius-
    Member

    Alright can someone help me remove some features from this?

    I want to remove List, Unordered List, Close, Center, ORdered list, Code, URL, Strike through:

    <?php
    /*
    Plugin Name: BBcode Buttons Toolbar
    Plugin URI: https://bbpress.org/plugins/topic/114
    Description: Automatically adds an easy access button toolbar above the post textarea to allow quick tags in BBcode. This is an enhanced replacement for the Comment Quicktags plugin. No template editing required.
    Author: _ck_
    Author URI: http://bbShowcase.org
    Version: 0.0.9

    License: CC-GNU-GPL http://creativecommons.org/licenses/GPL/2.0/

    Donate: http://bbshowcase.org/donate/
    */

    add_action('post_form','bbcode_buttons',11);
    add_action('edit_form','bbcode_buttons',11);
    add_action('bbcode_buttons','bbcode_buttons');

    function bbcode_buttons() {
    $tags = bb_allowed_tags();
    echo "<scr"."ipt type='text/javascript' defer='defer'>
    function BBcodeButtons_init() {
    BBcodeButtons.push(new BBcodeButton('ed_bold','Fet','','','b','font-weight:bold;','Fete bokstaver'));
    BBcodeButtons.push(new BBcodeButton('ed_italic','Kursiv','','','i','padding-right:7px;font-style:italic;','Kursive bokstaver'));
    BBcodeButtons.push(new BBcodeButton('ed_under','U','','','u','text-decoration:underline;','underline'));
    BBcodeButtons.push(new BBcodeButton('ed_strike','S','','','s','text-decoration:line-through;','strike through'));
    BBcodeButtons.push(new BBcodeButton('ed_link','URL','','[/url]','a','text-decoration:underline;','make a link'));
    BBcodeButtons.push(new BBcodeButton('ed_block','“Sitat”','
    Quote:
    ','
    ','q','padding:0 1px 1px 1px;','Siter tekst'));";
    if (isset($tags['img'])) {echo "BBcodeButtons.push(new BBcodeButton('ed_img','Bilde','[img]','[/img]','m',-1));";}
    echo "BBcodeButtons.push(new BBcodeButton('ed_ul','UL','
      ','
    ','u','','unordered list'));
    BBcodeButtons.push(new BBcodeButton('ed_ol','OL','
      ','
    ','o','','ordered list'));
    BBcodeButtons.push(new BBcodeButton('ed_li','LI','[*]','[/*]','l','','list item'));";
    if (isset($tags['center'])) {echo "BBcodeButtons.push(new BBcodeButton('ed_center','center','
    ','
    ','c','','center'));";}
    echo "BBcodeButtons.push(new BBcodeButton('ed_code','CODE','
    Code:
    ','
    ','p','line-height:160%;font-size:80%;letter-spacing:1px;font-family:anadale,serif;','unformatted / code'));
    BBcodeButtons.push(new BBcodeButton('ed_close','close','','','c',' ','auto-close any tags you left open'));
    }</scr"."ipt>
    <scr"."ipt src='" .bb_get_option('uri').trim(str_replace(array(trim(BBPATH,"/\"),".php","\"),array("",".js","/"),__FILE__),"/\")."?0.0.9' type='text/javascript' defer='defer'></scr"."ipt>";
    }
    ?>

    #77981
    Marius-
    Member

    This plugin is no good. You have to press each button twice? One for quote-start, one for quote-end. You can’t mark up text and wrap it in tags. This is not logical

    #77980
    Marius-
    Member

    Just tried deleting BBCode because I found that BBcode Lite made it work. But then the buttons disappeared.

    Does BBCode Lite require the normal BBCode Buttons plugin to work?

    #77994

    Try CSS instead :) Set the max-width for post.img to what you want, and possible make it overflow: hidden as well.

    #77979
    Marius-
    Member

    You know what, this plugin doesn’t work at all for me.

    edit: Just tried out BBCode Lite, and that works.

    Can you limit the width of an image, so it doesn’t exceed the forum?

    #31481
    Marius-
    Member

    I just installed it, and it’s great, but for me, it has too many features.

    Can I remove some of them? I mainly want to keep Bold, Italic, Quote and Link. Not the other stuff.

    There’s no settings panel for it in Admin.

    #77947
    Sam Bauers
    Participant

    Make sure you update the settings in the bbPress Integration plugin as well and then copy the new code it produces into wp-config.php

    #77973
    Marius-
    Member

    Thats too complicated for me. I’m not an expert coder at all.

    I barely manage to change colors and sizes in the CSS. Just moving the search-bar is a several hour project for me lol.

    I was hoping there was an easy way out, just to make the forum load in the normal page-window, like a normal post would have. Give it the value of a post or something. But recreating a brand new template, and all that stuff, is way too hard for me.

    #77972

    When I edited the Kakumei files, I recreated a sidebar to match the look of the blog with the forum tags and other stuff (blog latest posts, etc.), but without the widgets. The look still matches the blog, though the content of the sidebar is different. Whatever you have as text widgets in the blog you can always hard code in the forum sidebar.

    The “sidebar” is in front-page.php, under

    <div id=”hottags” role=”main”>

    hard code any sidebar content there, then match the css in the stylesheet. You can even float the div to the right, rather than the left, depending on your blog’s theme.

    #68924

    In reply to: WPMU integration

    ovizii
    Participant

    tha code snippet by clarko seems to do the trick even with bbpress 1.0.1 and wpmu 2.8.4

    #59126
    zvoort
    Member

    Great, tnx! ;)

    #77958
    Archie Webmaker
    Participant

    Sorry, Everything is running fine. “the page not found” was simply because of the wordpress custom code in the title. I just type in title name and it run fine.

    #77967

    This is just a custom theme.

    You could do it by making either a page with a redirect to the forum, or just a link to the forum in the header, and then theme your forums to look like your site.

    All the cool kids do it ;)

    #77906
    Olaf Lederer
    Participant

    :(

    no one here with some advice on how to fix that?

    this kind of feature is important for every forum owner

    #75839
    srydzinski
    Member

    I’m a little confused by this solution. where does this code need to go?

    #76675
    _ck_
    Participant

    If this appears in your front-page.php, then you have bbPress 1.0.x and you have a bug

    <?php bb_latest_topics_pages( array( 'before' => '<div class="nav">', 'after' => '</div>' ) ); ?>

    The same bug was in some rare cases of 0.9

    and I programmed around it in topics-per-page

    I doubt it will work properly on 1.0 but you can try installing the plugin, remove the above line and replace it with

    <div class="nav"><?php front_page_pages(); ?></div>

    #76792
    Gautam
    Member

    Thanks :-)

Viewing 25 results - 23,951 through 23,975 (of 32,468 total)
Skip to toolbar