Search Results for 'code'
-
Search Results
-
I run a bbPress install at http://justintadlock.com/forums.
My problem is that when I click to go to the next page or page 2 of a forum or topic, I am taken to the first page. So, users can’t access everything.
I use these calls in my template files:
forum_pages();
topic_pages();The links show properly, but nothing happens.
I’m also using slug-based URLs but have tried all three options with no success.
My .htaccess file looks like this:
AddHandler x-httpd-php5 .php
AddHandler x-httpd-php .php4
Options +MultiViewsHowever, I’ve tried several different versions with no pagination success.
I also have this integrated into a WordPress install.
I’m at a loss at the moment and was wondering if anyone had any ideas on what might be causing this.
[Edit] Here’s an example page 2:
Major help is needed. I’m new to bbPress and am quite ‘nooby’; with these things
I done everything and I can’t access my forums:
http://raiderfanzone.10gbfreehost.com/forums/
Whats wrong?….
Topic: Delete Post not working
I’m trying to delete some posts. When I hit “delete” the post turns red. When I refresh the forum, I find that the posts are still there. They do not show up in the Admin panel of Deleted posts. I was able to delete before… the last one was about a week ago. I haven’t done anything to the forum since then. The last change I made was adding the Report Post plugin, but that was BEFORE I deleted my last post (2/25/08).
I’m running the latest released version of bbPress, which is integrated with WP 2.3.
Here are the plugins that I am currently running in bbPress:
Use Display Name 0.7.2
BBCode for bbPress 0.1
Quote 0.2
Show Post Count .73a
Page Links 1.0.3
Indicate New Posts 0.8
Simple Onlinelist 1.5
Move It 0.14
Censor 0.1
Page >> 0.7
Unread Topics 0.4
Comment Quicktags for bbPress 1.1
bbPress Polls 0.27
bbEmoticons 0.72
Enhanced Registration 0.1.0.1
Report Post 0.12
bb-benchmark 0.17
Please see the WordPress MU forum ( http://mu.wordpress.org/forums/topic.php?id=7778&page&replies=6#post-46043) and look for my first post where it says “feature and strip” …
The font changes at that point. It looks like the rest of the thread is formatted like code. I don’t know why there’s a backtick near the word feature, but even if I did put it there and forgot to close it, is that the reason the entire thread appears formatted like code? If not, please explain.
I’ve noticed there is a serious problem with the way the CSS works for the default Kakumei theme (and any other theme based on it).
As you add information to the post author field on the left, it will start to vertically overflow and start to overlap the next post. This is because the designer unfortunately decided to use a shortcut via
position:absolute
making it impossible toclear:both
columns.Here’s how to easily fix it by appending two simple lines to the very bottom of the
style.css
and no need to search for and edit/replace other lines..threadauthor {position:relative; float:left; margin:0 -110px 0 0; right:110px; }
.poststuff {clear:both;}If you don’t want to edit any core files, simply put this into a plugin (make a new one or any existing one)
function fix_kakumei_css() { echo '<style type="text/css">.threadauthor {position:relative; float:left; margin:0 -110px 0 0; right:110px; } .poststuff {clear:both;} </style>';}
add_action('bb_head', 'fix_kakumei_css');Tested working in Internet Explorer, Firefox, Opera and Safari for Windows. Would appreciate MAC browser feedback?
(I will attempt to automatically include this hack in my plugins to help avoid edits since it’s usually my plugins that add so much info to the left but the new gravatar in 0.9 will also cause the overflow)
Should actually be a core fix now that I think about it.
I know there’s a way to hide a certain part of the front page by using this:
<?php if ( bb_is_user_logged_in() ) : ?>
INSERT HIDDEN CODE HERE
<?php endif; else : // $forums ?>but I was wondering if you could have a section that only nonregistered users can view. This will make more sense after visiting my site:
http://tapestry.endless-sonata.net
At the bottom, I have a table that contains Hot Tags, Views, Users Online, and Top Posters. What I want is for that view to be only visible to registered users. Then, when a nonregistered user views this site, I want just the Hot tags to show in an expanded version, not off to the left. Is there a way to do this? I tried entering the alternate code after this:
<?php endif; else : // $forums ?>
but it didn’t display anything.