Forum Replies Created
-
In reply to: Plugin: Using the strike tag
This works ok:
<?php
function allow_strike_as_allowed_tags( $tags ) {
$tags['strike'] = array();
return $tags;
}
add_filter( 'bb_allowed_tags', 'allow_strike_as_allowed_tags' );
function allow_italic_as_allowed_tags( $tags ) {
$tags['i'] = array();
return $tags;
}
add_filter( 'bb_allowed_tags', 'allow_italic_as_allowed_tags' );
?>In reply to: Plugin: Using the strike tagAhh ok, I want them in 1 plugin file though… also think these two should be standard
In reply to: Plugin: Using the strike tagBut how to add <strike> AND italic? (I miss italic to in the basic install)
In reply to: show search form or link to search.php on home pageso how come search isn't enabled when you first install bb? It's obviously there - but you have to add it in? What about some css for the style sheet?
ardentfrost’s way is good enough, though you can’t use search-form.php anymore for normal use any more. They implemented search at this forum as well, so how did they do it?
In reply to: “Remember me” option at loginWhy? Cause when you log in, you automaticly will be rememberd….
In reply to: trac explanation for noobsSo I need to install an extra program in order to upload files?? Tjee not very user friendly, did some reading and I believe the next trac version will have this function on its own.
Will try out your links for now, thx
In reply to: trac explanation for noobsI still can’t even figure out how to upload the files, some help plz?
In reply to: bbMenu 1.1 programming problem (advanced!)Hmm well so the easiest way is to keep the external file containing:
<?php
$id = $_POST['id'];
$content = $_POST['content'];
echo stripslashes(htmlentities($content)); ?>This file returns the edited text (this works), but how can I let it safe the variables to the database at the same time?
It’ll have to save: $content to the table bb_menu -> item
where $id = edit_id
Tried some stuff, but couldn’t get this updated into the db
In reply to: Latest Disscussions PluginIt’s not that hard to do. Just google on this and script/excamples will pop-up in no time. Basicly you will have to count the nr of letters and replace all other letters with …
I am at work else I could give an excample….
… not very helpful I know just google
In reply to: which plugin can support the toolbar like this?Yeah I know that is my only minus for FCK at the moment. ALready tried mailing them about this cause Opera DOES support it, it just needs to be activated in FCK it self (or identify Opera as MSIE
In reply to: which plugin can support the toolbar like this?Just compare FCKeditor and TINYmce with image lining/placing, you’ll get the point FCK is more user friendly in my oppinion
In reply to: which plugin can support the toolbar like this?NAh don’t use tinyMCE it’s crap FCKeditor is so much better
Also if I have the time, I am going to make a WYSIWYG editor for bbPress that uses open source scripts and will be 10 times smaller to install (also cause bbPress has limited functions to use), but thats far far far away for now
In reply to: How to limit latest discussion topics?Or use the frontpage plugin, then you can do this in the admin area (can’t find the direct plugin url right now but it’s there somewhere….)
In reply to: web designingThank you SPAMBOT rose1 and congrats by skipping Askimet too!
In reply to: Adding a plugin admin page into the admin menuYeah, I could make another admin page but that will need another extra php file too. It’s more need and tidy to use a hook like in the submenu.
Going to request some hooks then
In reply to: Ajax libs used…Nah protoype.js can’t be removed, cause my bbMenu plugin uses/needs it too
I guess you’ll need to include your .js in your template folder and call it from there…
In reply to: Getting in contact with adminContact the site owner?
In reply to: bbpress v. other forum softwareI suggest to SEARCH these forums first, cause your questions are answered many times before. I also suggest to look at the documentation and plugins available on this site
In reply to: REQ: Theme demo switcher like phpBBOk and where to put the zips? In the theme’s template folder?
In reply to: Topic deleted from BBPress.org (this forum)?More topics are gone, seems the forum went a bit back in time (it crashed and restored with back ups?)
In reply to: Fix bbPress Plugin 0.8.1-1Nice, I like the idea using a plugin to add a quick patch (rather then a whole new version).
Perhaps it’s an idea to add this to the download page aswell
(and to the blog as an announcement)
In reply to: REQ: Theme demo switcher like phpBBI suggest to add a zip of the theme in that theme folder for now, so we can use this download button. Future realease can have this zipping later (if needed at all).
The download button would be plain wicked
In reply to: Plugin: bbMenu 1.0I have made a new testversion for suleiman. Plz try this version.
1) Delete bbemenu.php from your plugin directory (and close browser)
2) Delete the bb_menu table from your database
3) Upload this test version, go to your admin and refresh the page if needed
4) Check if the bb_menu table is filled now.
ps. you only have to replace the bbmenu.php from your plugin directory.
Download testversion:
http://www.sourceskins.com/bbmenutest.zip
If this version isn’t working for you sul, I give up
In reply to: REQ: Theme demo switcher like phpBBWould like to add:
– Download button that will (on click) download the theme currently viewing (even grater if it would zip the theme folder and offer it for download on the fly)
– Remove the Show theme button. Just selecting it in the ddlb should be enough to switch (or some explainetion of how to do this, cause I want to use it without that button)
In reply to: file attachments….Link to the phpbb attachment mod:
http://www.phpbb.com/phpBB/viewtopic.php?t=74505
Forum excample:
http://www.3dvalley.com/phpbb/viewtopic.php?p=49#49
One of the best mods for phpbb.