Trent Adams (@trent)

Forum Replies Created

Viewing 25 replies - 551 through 575 (of 1,181 total)
  • Nothing has been written yet, but it should be pretty easy for someone to built a plugin that would do this for you. Maybe a plugin writer will see it and get that done for you!

    Trent

    You would need to edit your template files to get rid of all the places that tags show up. If you are using the default theme, the best thing would be to edit all the files that need editing and upload them to a new folder /my-templates/themename/ as that will allow you to edit the files that you need without doing anything to the themes in /bb-templates/. Any file in the folder inside /my-templates/ will be read and if it doesn’t exist there, it uses the originals in /bb-templates/.

    Off thet top of my head, it would require editing the following files:

    front-page.php

    topic.php

    forum.php (to get rid of the place to create topic and tags)

    new-topic.php

    There might be more and I might be off on the names, but just comment out <! — and –> around any code that deals with the tags.

    Trent

    /my-plugins/ is something that you have to add to your root directory if you want to install plugins. Any plugin put in that folder will be executed. That fix file should work….hmm. As well, make sure that if you turn off akismet you have the ; at the end.

    Trent

    I hope you keep that image up Chrishajer because I made a TRAC ticket based on it!

    https://trac.bbpress.org/ticket/612

    Trent

    If you just clear out the BOZO portion in the profile and ‘update profile’ and it doesn’t take the changes, check out the 0.8.1-1 fix sticky at the top of the forums. That is getting people by with bozo issues until the next release. That or just make akismet = false in your config.php if the above fix doesn’t work for you!

    Trent

    If you could provide an example screenshot or something like that showing the problem, we could probably see it better and maybe put up a TRAC ticket for it if the problem exists. It would require telling us what version of IE you are using as well as the screenshot.

    Trent

    I was able to register and post. If you can’t see your post or mine, check the bb-admin/ => content => akismet and make sure we weren’t filtered through that. If we were, stop by users and the bozos to make sure we weren’t nailed there either.

    Trent

    Staffan, could you give us a URL to look at?

    Trent

    Do you have the force login plugin or the members only plugin installed? Do you have an example to see if we can see the posts?

    Trent

    In reply to: i need wysiwyg editor

    No problem Zeug! Akismet didn’t like you, but I fixed that!

    Trent

    That is a great question. Maybe a php expert will give you an idea, but I don’t know that one! I hope someone does! As well, you can probably make that change a plugin as well so that you don’t have to edit the core files! Maybe that same phantom php expert can help us with that as well….

    Trent

    Not sure if the options you want are hardcoded into the plugin? Maybe you should take a look at having the options in the admin to add the options. As well, I placed in my “number of children” and it didn’t save in the database or show up in my profile. Not sure what is going on there! contact me if you want to chat. I have an IM deal on my site at the bottom right corner:

    http://trentadams.ca

    Trent

    In reply to: i need wysiwyg editor

    Ok, I have the anarchy media player working on my forum! Don’t forget to configure the path for the script to call in your header.php template as well as configuring the anarchy.js file to have the correct path as well, or it will not work!

    Thanks Zeug!

    For reference of this working:

    http://onvertigo.com/topic/9/

    Trent

    You would have to modify the CSS to list the tags you want. That means playing around with style.css of your template playing with these parts:

    <div id="topic-tags">
    <div id="othertags">
    <ul id="otherstaglist">

    The names will be like #topic-tags, #othertags and something with list item for otherstaglist. I haven’t looked at it, but the list is CSS driven.

    Trent

    In reply to: Allowing HTML

    Well, the code “em” is already for italics, but if you really need to have it as the “i”, it would be something like this (chrishajer is going to hate me for saying this as it is really poor markup, but….)

    <?php
    function allow_italics_as_allowed_tags( $tags ) {
    $tags['i'] = array();
    return $tags;
    }
    add_filter( 'bb_allowed_tags', 'allow_italics_as_allowed_tags' );
    ?>

    That should work. Get the idea?

    Trent

    Sorry about that drmike! Aditya is on business and will be back by the end of the week! If Sam doesn’t see this post, he said he would work on it when he arrives home! Sorry for the inconvienience.

    Trent

    In reply to: Allowing HTML

    The allowed tags are in template-formatting.php I believe (might be wrong as it is early there) in your bb-includes, but it is best to look even at the ‘allowed markeup’ on this forum when you are posting and then know those can be used. To add more, it is often done with plugins, like the image plugin in the ‘extend’ tab of this site. Or I through this up to use stike for myself:

    <?php
    function allow_strike_as_allowed_tags( $tags ) {
    $tags['del'] = array();
    return $tags;
    }
    add_filter( 'bb_allowed_tags', 'allow_strike_as_allowed_tags' );
    ?>

    There are was to add to the bb_allowed_tags even with plugins.

    Trent

    The best thing is go step by step through it again. Sometimes something small is missed and that is enough to screw up the entire thing. As well, if:

    Options +MultiViews

    Does that work in your .htaccess file in your root bbPrsss directory ( / ). If not, try what is spit out of /bb-admin/rewrite-rules.php

    If that doesn’t work, maybe try working with GoDaddy to make sure your setup can do mod_rewrites

    Trent

    This usually means that you have mod_rewrite equals true in your config.php, but don’t actually have the .htaccess file for them to work. Go back to your config and change that to false to make sure it works again. After that, you could check out:

    https://bbpress.org/documentation/faq/#pretty-permalinks

    Trent

    You have it right. Visitors don’t need to login to view, only post. I went to your site and am a visitor and never got asked once to view posts with a login (which bbPress can’t do without a plugin anyway). Could you give an example of a URL that this happens?

    Trent

    Before we can can get too much further here, what is the other system that you are hooking the cookies with? What does it use for login cookies? On first glance, if it is wordpress, you can check out:

    https://bbpress.org/documentation/integration-with-wordpress/

    It also gives you some cookie settings for possible use with another program.

    Trent

    Drmike’s forum is at:

    http://daria.be/forums/

    Trent

    In reply to: Plugin help…

    Just having issues with FTP right now…I will test it when I get that working again! Besides, I want to try out the latest TRAC version……..

    Trent

    When you say Http_Auth, do you mean something like the LDAP auth?

    https://bbpress.org/plugins/topic/26?replies=3

    As well, if you have an integration with WordPress, bbPress integrates logins perfectly with WordPress.

    Trent

    In reply to: i need wysiwyg editor

    Being the idiot that I can be sometimes, I didn’t test all the formats zeug and only tried YouTube out of the gun……if I would have tested out the other formats I would have known they worked already as I tried using the standalone player about 3 months ago…..*sigh*

    I will be testing this one out for sure today!

    Trent

Viewing 25 replies - 551 through 575 (of 1,181 total)