Search Results for 'code'
-
Search Results
-
Topic: Compatibility ….
Most of the good plugins aren’t working with bbpress 1.0.2 . What should i do ? Even basic things like signatures arent available on my forum . Sad
Hi all,
I’ve 3 issues regarding my car forums i.e. ( http://car-n-car.com/forums)….
1. Page title:
it happened after deep integration…. the title of the page which usually show in the browser’s window and Google search has been broken.. now there is just a link besides title words,
I’m sending you its screen shot for better understanding..
here is its screenshot regarding title issue
a) http://car-n-car.com/forums/page-title.jpg
=====================================
2. Page Not Found:
when i select 1st option from permalinks i.e. http://car-n-car.com/forums/forums.php?id=1 then it work fine but its not good for seo .. that’s why i need 3rd option which is name based permalinks.. so when i select 3rd option then content goes hide and message apear regarding page not found.
here is its screenshot for better understanding :
b) http://car-n-car.com/forums/page-not-found.jpg
=====================================
2. Permalinks Problem:
my name based permalinks structure is like that
http://car-n-car.com/forums/forums/first-forum
means the word of forums is repeated 2 times, so i want to remove this one word ( forums ) from name based permalinks.. i think it creates all trouble for me and drive me crazy…
here is its screenshot
http://car-n-car.com/forums/car-permalinks.jpg
=====================================
here is my .htacess file structure
http://car-n-car.com/forums/htaccess.txt
=====================================
Note: I’ve tried various things but nothing happened even i tried
A). http://bbpress.org/forums/topic/name-based-permalinks-without-page-and-forums
. http://bbpress.org/plugins/topic/nicer-permalinks/C). http://www.technospot.net/blogs/how-to-remove-forum-and-topic-keyword-from-bbpress-url/
but they are not useful ..
=====================================
Special Request:
I’m inviting the sir chrishajer, johnhiler, Gautam to take personal interest in this issue so that other people can learn from this post…
I hope you’ll solve these issues…
Regards
cNc
Topic: bbPress loop help
Hi I have the following code:
<?php if ( bb_forums() ) : ?>
<?php while ( bb_forum() ) : ?>
<div class="box">
<?php if (bb_get_forum_is_category()) : ?>
<h3><a href="<?php forum_link(); ?>"><?php forum_name(); ?></a></h3>
<?php continue; endif; ?>
<ol>
<li class="arrow f_unread">
<a href="<?php forum_link(); ?>">
<strong><?php forum_name(); ?></strong><br />
<?php forum_topics(); ?> Topics / <?php forum_posts(); ?> Replies
</a>
</li>
</ol>
</div>
<?php endwhile; ?>
<?php endif; // bb_forums() ?>Struggling to get it to work how I want which is basically like this:
for each category do this:
<div class="box">
<h3>CAT</h3>
<ol>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>so that div should be repeated for each block. if a set of forums has not category, then all of the code would be above would run but just no h3.
so an example might look like this:
<div class="box">
<h3>CAT</h3>
<ol>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>
<div class="box">
<h3>CAT</h3>
<ol>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>
<div class="box">
<ol>
<li>Forum</li>
<li>Forum</li>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>
<div class="box">
<ol>
<li>Forum</li>
<li>Forum</li>
<li>Forum</li>
<li>Forum</li>
</ol>
</div>can anyone help thanks.

(to making it exclude=7,