Search Results for 'bbpress'
-
Search Results
-
if I delete a topic, then go back to the topic via the admin panel in order to ‘undelete’ the topic, it doesn’t work.
On clicking ‘undelete entire topic’ I am forwarded to a blank screen at a url in this format (had to break it up to fit on the page):
/bbpress/bb-admin/delete-topic.php?
id=2090&view=all&_wp_http_referer=/bbpress/topic.php
%3Fid%3D2090%26view%3Dall&_wpnonce=be30703be1this is the case with no plugins installed and default template. Any ideas? I couldn’t find this issue anywhere on the forums already.
Hi, I’m making a navigation and was looking for help with highlighting the links, depending what page/forum you are on.
I have a homepage nav link like:
<a href="/forum">Mainpage</a>how can I add class=”current” and highlight the link when on the mainpage?
I also run a list of the forums in a similar style
<?php foreach ( $forums as $forum ) : ?>
<a class="forum-link" href="<?php forum_link( $forum->forum_id ); ?>"><?php forum_name( $forum->forum_id ); ?></a>
<?php endforeach; ?>Is there a way to add class=”current” depending on what forum the user is browsing?
I know this can be done on wordpress, but I dont know the functions for bbpress yet, and good info is far and wide.
based on http://bbpress.org/plugins/topic/improved-spoiler/
instead only using css my mod using javascript based on spoiler plugin vbulletin
here is the php mod http://pastebin.com/ReTD7eJE
and this is the final look
http://i40.tinypic.com/2h5qlg8.png
you need to add this in your css template file
.spoilerbg {width:auto;height:auto;background:#e1e4f2;border:1px inset;padding:5px;}the problem now, the Improved Spoiler Plugin doesnt build for nested spoiler like
the first spoiler will be broken, diffrent from vbulletin spoiler plugin
I installed a fresh version of bbpress 1.0 at http://forums.moochyschwag.com/
I made a new post. Then I replied to the post. Then the reply form disappeared and the reply I made isn’t showing. It’s showing in the ADMIN area, but not on the forum. Thoughts?
Two part question
1. Is there a code to imitate wp_list_pages(‘title_li=’) with the forum names?
result in…
<li><a href="http://bbpress.org/forums/forum/installation">Installation</a></li>
<li><a href="http://bbpress.org/forums/forum/troubleshooting">Trouble Shooting</a></li>etc etc…
2. How do you add class=selected to current forum page?
Topic: Limiting latest discussions
Is there a way to limit the amount of latest discussion shown on the front page? There are currently 30 of them and I want to cut that number down to 10-15.
Long live bbPress!
So I was just browsing around WordPress.org support forums and noticed the way they have their text entry box set up.
It contains the standard markup as we have on bbPress (installable) but it’s clickable by the user, with the resulting clicks being reflected in the text entry box. Here’s what I mean http://wordpress.org/support/topic/384052?replies=5
I’m talking about the b i link buttons at the top of the text entry box.
My question is whether we have and/or can do something similar with our own bbPress installs. I know we have TinyMCE and – most recently – WYSIWYG editor, but this is a bit different as it outputs the markup for you.
function get_post_img(){
global $bbdb;
$topic_id_ft = get_topic_id(); //topic id for getting text of first post of the topic
$first_post = (int) $bbdb->get_var("SELECT post_id FROM $bbdb->posts WHERE topic_id = $topic_id_ft ORDER BY post_id ASC LIMIT 1");
$content = substr(strip_tags(strip_shortcodes(get_post_text($first_post))),0);
preg_match('/[img](.*?)[/img]/i', $content, $matches);
$src = $matches[1];
echo $src;
}modified from here http://bbpress.org/forums/topic/show-a-snippet-of-the-post-under-the-topic-title#post-39260
to moderator: bozo or bug:
http://bbpress.org/forums/topic.php?id=66744
http://bbpress.org/forums/topic.php?id=66746 (created later for test)
if bozo – why?
Hey all.
A friend of mine finally agreed on using WordPress and finally convert away from e107. So for the last few days, I have converted his website over from e107 to WordPress & bbPress and done quite abit on it. Firstly, I converted all the e107 pages and users to WordPress and then converted the forums to bbPress via my own converter script.
Now bearing in mind that it is still in development, I then integrated bbPress into the WordPress theme and then integrated his login into IP.Converge so that it can hook up with my website.
While it is still work in progress, what do you lot think of bbPress so far ?