Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 6,001 through 6,025 (of 6,780 total)
  • Author
    Search Results
  • #68763
    Olaf Lederer
    Participant

    I wrote that function monthes before:

    https://bbpress.org/plugins/topic/auto-add-favorites/

    #68762
    chrishajer
    Participant

    I hope we see the plugin soon. It would be nice for it to happen automatically, since you want it to happen for everyone. Opt-out basically, rather than having them opt-in, or you opting them in.

    #68761
    danbbpress
    Participant

    Regarding this issue – I have just found that, as a forum administrator you have the option of turning on email notifications for any user. Although not perfect this feature does the job.

    #68760
    danbbpress
    Participant

    Great I can’t wait.

    #68759
    patir
    Member

    Hi.

    I’ve written a plugin to do this. Hold on and I’ll post it.

    #4225
    danbbpress
    Participant

    I just installed this plugin http://bbpress.org/plugins/topic/post-notification/ that automatically adds new posts to an author’s favorites. However, in order for the post’s author to receive a notification email for a new post he/she must also turn on email notifications in the admin area.

    My question: is there a way to change the code to have these email notifications turned on by default?

    #68747

    In reply to: How to move a forum?

    Those plugins come default for 1.0alpha2 under the plugins tab, you have to turn them on. I suspect it’s POSSIBLE if you downloaded the alpha version, they might work in a non-alpha install, but it’s untested.

    But really, if you’re just moving your domain, you can pretty much do what you’d do for WordPress or any other PHP/SQL driven site. You have two basic options.

    1. Download a copy of the main bbpress files from your OLD server to your hard drive and edit wp-config.php to suit the new server.
    2. Go back to your OLD forum and go to options and change the url (both of them) to that of your new site.
    3. Download your database (but keep the old one just in case), upload this new database and the copy of the wordpress core files with the edited bb-config.php to your NEW server.

    Or…

    1. Install a new forum on the new server.
    2. Export the forum content from the OLD server into a BBXF file
    3. Import the data into the new forum.

    #3980

    Topic: Styling 404 page

    in forum Themes
    agitainment
    Member

    Hi, there.

    I’m trying to figure out how to get my theme (http://agitainment.com/ics/forum/) to use the 404.php page that I’ve styled to fit with my theme. Currently all 404’s are using the default provided by my host or the bbPress die page.

    Any ideas?

    Cheers!

    #68641
    chrishajer
    Participant

    How about using the 1-column fixed bbPress raw theme and customizing it to look like your blog?

    http://bbpressraw.com/bbpress_blank_themes/

    I don’t think I’ve seen anything like Kubrick for bbPress at all yet.

    #4207
    danbbpress
    Participant

    I just installed BBPress and it’s working fine with the default numerical URLs. When I change the Permalink type to the 3rd one (textula URLs) all I get are 404 errors, even in the admin backoffice. What to do?

    Thanks.

    Dan

    #4206
    hotshottwo
    Member

    Can anyone point me at some instructions on how to create a bbPress theme that loosely matches the WordPress default (Kubrick) theme, i.e. 760 px wide with rounded page corners and space for a header image with rounded corners? Looking for a quick way to integrate bbPress so that it has the same look as the rest of my WordPress site.

    #67850
    _ck_
    Participant

    What I meant by that is pretty-permalinks are not turned on by default.

    #4202

    i wonder if there’s bbpress plugin that can display graphical ranks (something like phpbb’s default stars under user’s nickname…)? if no – did anyone though about writing such plugin?

    #67847
    chrishajer
    Participant

    beernews: yes, that’s what pretty permalinks look like. Looks like the options in trunk are now:

    None   …/forums.php?id=1

    Numeric   …/forums/1

    Name based   …/forums/first-forum

    It used to be “none, true, slugs” which correspond to the above options in order. I’m not sure if they’re on by default when you install the latest version. There was talk of creating the mod_rewrite rules automatically when turning permalinks on (like WordPress does right now), but I’m not sure if that happens automatically or not yet.

    But, with name based (the old slugs option) I think the links would be pretty good for SEO. The slugs might still contain stop words or otherwise be too long, but, they’re still pretty good.

    #67843
    beernews
    Member

    Looking into this now but your comment confuses me, Chris. Isn’t pretty permalinks on by default (even though the admin indicates that it is not in the options).

    Is this not pretty permalinks?

    Is bbpress SEO friendly???

    Wouldnt it say https://bbpress.org/forums/topic/#thread-2342 or something like that if they weren’t on?

    #68486

    In reply to: Customizing gravatars

    meitershaker – In theory, the principle that worked for Adding default Gravatars to WP 2.6 should work for bbPress.

    Haven’t tested it yet.

    #67238
    eagano
    Member

    @ctsttom – In order for a user that was registered in WordPress to have any authority in bbPress, they need to have the option ‘bb_capabilities’ in their user metadata. This does not have anything to do with the role maps in bbPress. Those role maps only affect users that are registered within bbPress that need to have capabilities inside WordPress. I think you are having the same problem that I had – you need to go the other direction. You need a default capability in bbPress for a new user registration in WPMU.

    There are two ways to do this:

    1) go to your bbPress admin panel, drill into each new user that was registered in WordPress, edit their profile, and assign them a ‘User Type’

    2) use my shiny new WordPress plugin that creates a default capability of ‘member’ in bbPress for users that are registered in WordPress

    https://bbpress.org/plugins/topic/wpmu-enable-bbpress-capabilities/

    I would be interested in any feedback you have. There are two caveats to this plugin:

    1) it does not handle any users registered in WordPress that existed before the plugin was activated, you’ll have to do that manually (but you get the idea and could handle this with a mass SQL)

    2) there is no logic to determine which bbPress User Type to use, I just start with ‘member’ and assume that I’ll manually set admins/moderators, and further that everyone with a login should be able to post.

    Let me know what you think!

    #64728
    kunia
    Member

    I have my answer :

    file : bb-include>template-fonction.php

    search : “bb_allowed_tag”

    Include :

    // Add Tags with allow_tags
    <p> function allow_more_tags( $tags ) {<br />
    $tags['p'] = array('style' => array());<br />
    $tags['span'] = array('style' => array());<br />
    $tags['b'] = array('style' => array());<br />
    $tags['em'] = array('style' => array());<br />
    $tags['ol'] = array('style' => array());</p>
    <p> return $tags;<br />
    }</p>
    <p> add_filter( 'bb_allowed_tags', 'allow_more_tags' );

    under this…

    // format=list or array( 'format' => 'list' )<br />
    function get_allowed_markup( $args = '' ) {<br />
    $args = wp_parse_args( $args, array('format' => 'flat') );<br />
    extract($args, EXTR_SKIP);</p>
    <p> $tags = bb_allowed_tags();<br />
    unset($tags['pre'], $tags['br']);<br />
    $tags = array_keys($tags);</p>
    <p> switch ( $format ) :<br />
    case 'array' :<br />
    $r = $tags;<br />
    break;<br />
    case 'list' :<br />
    $r = "<ul class='allowed-markup'>nt
    <li>";<br />
    $r .= join("</li>
    nt
    <li>", $tags);<br />
    $r .= "</li>
    nn";<br />
    break;<br />
    default :<br />
    $r = join(' ', $tags);<br />
    break;<br />
    endswitch;<br />
    return apply_filters( 'get_allowed_markup', $r, $format );<br />
    }

    #68083
    chrishajer
    Participant

    No.

    Kakumei is a theme (WordPress terminology) or a template (bbPress terminology) and controls the display of the content on your site. Any modifications you make to your site should be done in these template files, never in the core. Changing core files makes it hard to upgrade to newer releases: you lose your changes with every upgrade. So, if you make the changes in a template file, you can maintain them between releases.

    Also, by default, the stock kakumei theme is used and it’s in the bb-templates directory. I recommend creating a new directory called my-templates (if it’s not there already) at the same level as bb-templates. So, in a directory listing, they’d be at the same level. Then, inside there, create a directory called mytheme or some other name that is descriptive for your forum. This directory name does not matter. (The my-templates one DOES matter.)

    Now that you have a my-templates directory, and inside that a new directory with a name you choose, copy everything from inside the bb-templates/kakumei/ directory to this new directory you created. Then, open up style.css and change the header to give this new template a unique name on line two. You will see this there:

    Theme Name: Kakumei

    Change that to “Theme Name: My Cool New Theme” or whatever you want. Then refresh your admin panel, and you will see a new theme. You can change the rest of the lines in that header as well, to things that are meaningful to you. Be sure not to modify the text before the colon, just change the text after, to your values.

    Now, modify the php and css files in this directory to change the look of your forum. You can switch back and forth between themes here. If you break something, just choose the default theme until you fix the one you were working on.

    #68081
    chrishajer
    Participant

    If you just want to delete the display of the information below the post form, don’t remove that from a core file. What you want to do does not require any modification of core files. Stay out of there.

    You want to be in a template folder, by default bb-templates/kakumei/ but if you created a custom template, you may have a my-templates/yourtemplatename/. In that folder, there should be a file post-form.php and edit-form.php. In the 0.9.0.2 version, you want to look at

    ./edit-form.php line 19

    /post-form.php line 31

    Those lines contains the code to display “Allowed markup” below the post form. Remove that line completely and the text will no longer appear under your post form. Remove it in edit-form.php as well, and it won’t appear below that form either.

    If you don’t have those files in your template, or those lines in your template files, then I don’t know what to say. That’s where the text comes from in a stock installation.

    #68080
    beernews
    Member

    Got around to trying this in version 0.9.0.2 / template: bbOrg

    I didnt see those files you mentioned but searched a bunch of files and all I found was this strip of code in the includes/template-functions.php file:

    function allowed_markup( $args = '' ) {
    echo apply_filters( 'allowed_markup', get_allowed_markup( $args ) );
    }

    // format=list or array( 'format' => 'list' )
    function get_allowed_markup( $args = '' ) {
    $args = wp_parse_args( $args, array('format' => 'flat') );
    extract($args, EXTR_SKIP);

    $tags = bb_allowed_tags();
    unset($tags['pre'], $tags['br']);
    $tags = array_keys($tags);

    switch ( $format ) :
    case 'array' :
    $r = $tags;
    break;
    case 'list' :
    $r = "<ul class='allowed-markup'>nt<li>";
    $r .= join("</li>nt<li>", $tags);
    $r .= "</li>n</ul>n";
    break;
    default :
    $r = join(' ', $tags);
    break;
    endswitch;
    return apply_filters( 'get_allowed_markup', $r, $format );
    }

    Would that get rid of the markup stuff underneath the posting area WITHOUT disrupting my BB Code Buttons functionality?

    Thanks!

    #4148
    agitainment
    Member

    Hi, there.

    I have been getting sporadic errors with my RSS feeds using both my own theme and the default Kakumei theme on the latest installation of bbPress.

    Sometimes when I hit the various RSS links, the following error comes up on a new page followed by a listing of the document tree:

    “This XML file does not appear to have any style information associated with it. The document tree is shown below.”

    Usually, when I hit the back button on my browser and try the feed button again, it works fine.

    Any idea what’s going on here and how to fix it?

    Thanks!

    #68341
    agitainment
    Member

    Yes, I think this is what it is.

    I’ve run into it on every theme I’ve tried, including the default. It always shows the same forrest-green box with the bbPress logo and an error message like “You need to actually submit some content!” It’s really jarring when coming out of my theme, which has a kind of handmade-look (http://agitainment.com/ics/forum).

    So, is there no hope for me to be able to restyle this myself?

    Thanks for your help, everyone!

    #68161

    In reply to: Second Page Gone!

    brad_langdon
    Member

    Yea that was me disabling some plugins.

    Thanks but I don’t know anyone that knows how to fix this type of thing.

    I tried refreshing another page over and over and you are right it did the same thing only with more gibberish errors over top of the default bbpress error page.

    #68347
    epiphone
    Member

    It also happens the default as well. I’ve deactivated all plugins still no form.

    Just to clear up. I don’t get a blank screen. I mean when I click new topic it will bring me to the page with the heading of create new topic, but below it will be no form of any kind

Viewing 25 results - 6,001 through 6,025 (of 6,780 total)
Skip to toolbar