Search Results for 'bbpress'
-
Search Results
-
Topic: BBPress Avatars
How can I make it so users wordpress avatar pics are not shown in the new topic area? For instance, I use avatars all over my wordpress site, but I do not want them to show up anywhere in the bbpress forums on the site. Username is enough, the pictures are not needed in the forum area at all.
I noticed I can remove them by editing the HTML, but when a new topic is created the avatar is pulled right back in. I would suspect I may need to comment out some of the php somewhere.
Any help would be greatly appreciated.
I was changing a few basic settings after my bbPress install, the last change bring to nice fancy text permalinks, then bam. 500 Internal Server Error.
I checked my host error log and the error is .’htaccess: Options not allowed here.’
I don’t know a lot about .htaccess but is it something to do with the multiviews? I’ve done a lot of googling but only confusing similar posts seems to come up – hope someone can help?
Url is: http://www.neverenoughnotes.co.uk/forum, .htaccess is t chmod 755
‘# BEGIN bbPress
Options -MultiViews
AllowOverride All
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /forum/
RewriteRule ^page/([0-9]+)/?$ /forum/index.php?page=$1 [L,QSA]
RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /forum/forum.php?id=$1&page=$2 [L,QSA]
RewriteRule ^forum/([^/]+)/?$ /forum/forum.php?id=$1 [L,QSA]
RewriteRule ^forum/?$ /forum/ [R=302,L,QSA]
RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /forum/topic.php?id=$1&page=$2 [L,QSA]
RewriteRule ^topic/([^/]+)/?$ /forum/topic.php?id=$1 [L,QSA]
RewriteRule ^topic/?$ /forum/ [R=302,L,QSA]
RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /forum/tags.php?tag=$1&page=$2 [L,QSA]
RewriteRule ^tags/([^/]+)/?$ /forum/tags.php?tag=$1 [L,QSA]
RewriteRule ^tags/?$ /forum/tags.php [L,QSA]
RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /forum/profile.php?id=$1&page=$2 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/?$ /forum/profile.php?id=$1&tab=$2 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /forum/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
RewriteRule ^profile/([^/]+)/?$ /forum/profile.php?id=$1 [L,QSA]
RewriteRule ^profile/?$ /forum/profile.php [L,QSA]
RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /forum/view.php?view=$1&page=$2 [L,QSA]
RewriteRule ^view/([^/]+)/?$ /forum/view.php?view=$1 [L,QSA]
RewriteRule ^rss/?$ /forum/rss.php [L,QSA]
RewriteRule ^rss/topics/?$ /forum/rss.php?topics=1 [L,QSA]
RewriteRule ^rss/forum/([^/]+)/?$ /forum/rss.php?forum=$1 [L,QSA]
RewriteRule ^rss/forum/([^/]+)/topics/?$ /forum/rss.php?forum=$1&topics=1 [L,QSA]
RewriteRule ^rss/topic/([^/]+)/?$ /forum/rss.php?topic=$1 [L,QSA]
RewriteRule ^rss/tags/([^/]+)/?$ /forum/rss.php?tag=$1 [L,QSA]
RewriteRule ^rss/tags/([^/]+)/topics/?$ /forum/rss.php?tag=$1&topics=1 [L,QSA]
RewriteRule ^rss/profile/([^/]+)/?$ /forum/rss.php?profile=$1 [L,QSA]
RewriteRule ^rss/view/([^/]+)/?$ /forum/rss.php?view=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ /forum/index.php [L]
</IfModule>
# END bbPress’
Most forum software displays the actual date for the freshness. I have used the following code as an example:
<?php global $post;$lalaposttime = date( 'D M Y', strtotime( $post->post_id ) );
echo $lalaposttime; ?>
This worked to a point, however it displays the date as “THU JAN 1970”.
I assumes that it will be different for the bbpress plugin itself.
Could anyone help get me started with this?
Thanks in advance.
I have a blog with the Suffusion-theme on wich I just installed bbpress. I don’t need a fancy theme for bbpress.
* Created a new page for the forum (blablabla.com/Forum)
* Set up all the forums/subforum etc.
* Used the shortcode for showing the forum = [bbp-forum-index]
Things looks okey so far! Now I want to remove the sidebars from the forum (not the page, I know how to do that) and I have read a couple of tutorials but still don’t get it.
I don’t want to use a theme or childtheme, I want the forum to have the same coloring etc. as the Suffusion theme I use. So where do I remove the sidebars?
I have removed <?php get_sidebar(); ?> from:
* single-forum.php
* single-topic.php
* single-reply.php
as described in another thread in here. I changed this in mypage.com/wp-content/plugins/bbpress/bbp-themes/bbp-twentyten
But I don’t use that theme. I use NO theme. So where do I remove the sidebars?
Please let me know what I’m doing wrong here!