Forum Replies Created
-
In reply to: Can't find what I need to edit.
your h2 element is float or becomes an inline element
both are not required
In reply to: Why is this format replacement needed?strange is that without these replacements the posted code / content is formatted as well.
the make sense of you have all posted html elements without any whitespace.
Back to the reason why I started this topic, it’s not an important one right?
In reply to: Change my default urlThe first “forum” is the forum’s folder and the second is used to identity a (sub)forum.
The same way like a tag or topic is identified. You can change the forum’s folder name, that’s all.
the structure make sense:
https://bbpress.org/forums/ (forums home)
https://bbpress.org/forums/forum/troubleshooting (the troubleshooting forum)
In reply to: threaded forum ?I don’t get you, if you’re looking for a different kind of forum software, why don’t you ask the other forum what software he is using…
In reply to: how to quickly see my own posts ?check your profile page or the profile page from someone else
the forum you have mentioned is not a bbpress forum
In reply to: adding fields to edit formIt works, thanks (strange id that I remember me that I tried that hook as well)
In reply to: No Analytics for Adminshow about filtering hostnames?
Of course it’s possible but around half the plugins will stop working.
depends on which plugins you’re using
I’m using all the plugins I have used before
In reply to: Anyone Used bbPress Exporter 0.1a?don’t know what this is but be careful.
I can’t open the files on Linux, but it might be some virus too (on a windows system)
In reply to: RSS is showing deleted topicsI delete / use the mark as spam button, check this feed:
the first is marked as deleted:
http://www.finalwebsites.com/forums/rss/forum/web-developer-tutorials
Strange is that it happens not always
I stepped over directly from 0.9 to 1.02 no problems
In reply to: RSS is showing deleted topicsSince this topic is open and I think very important:
BUMP
or I need to write custom code
In reply to: Plugin suggestionsI’m using the smiley plugin from here in my current install 1.02
In reply to: No Analytics for Adminswhy so difficult? just filter IP addresses within GA
In reply to: Loading bbpress after codeigniterMost functions using globals, I think you need a class based forum script or you need to build your own bbpress objects
In reply to: comments_popup_linkHi,
I see this template and function in all the WP themes, how does this work in wordpress?
Knowing this it might be possible fro bbpress too…
In reply to: Plugin suggestionslol I guess I read the opening post only 11 month ago
edit: btw I will publish the geshi plugin later on my website
In reply to: Display the latest discussions titles into a webpagewhy not using the RSS feed from some blog?
In reply to: call register form via php tagI think a sitewide form is easier to integrate using the full code inside the functions.php file (like comment list on wordpress)
In reply to: can i use the login system for my own scriptyes you can I do the same, try to download a script
http://www.finalwebsites.com/forums/topic/php-class-script-downloads
In reply to: Plugin suggestions@chandersbs, this topic is about geshi syntax highlighting
In reply to: Plugin to display photos and htmlyou can put html in code tags like
<h3>Hello World</h3>
In reply to: Private MessagingHi,
personal messaging is not a default function in bbpress, bbpress is great because of other features
In reply to: Plugin suggestionsI get it working!
I added those two replace function before the geshi object is created:
$code = str_replace("& lt;", "<", $code);
$code = str_replace("& gt;", ">", $code);and I use the default priority for the filters. Are the replacements a problem?
In reply to: Plugin suggestionsthe problem are the priorities, if I use this filter:
add_filter(‘post_text’, ‘wp_syntax_before_filter’, 0);
there is no geshi parsing.
I get the best result without the priorities, but than I have problems with chars like <> and not allowed tags etc.