Forum Replies Created
-
In reply to: Topics are not adding
link to you site?
I presume you want rid of the one to the left of search ?
that should be in
bbpress/templates/default/bbopress/content-archive-forum.php line 24 in 2.5.5
In reply to: Forum page title links to last forum created – why?hey great – glad you’re fixed !
you’re welcome
You are not understanding the problem.
spot on !
the code you gave is an action, so would not contain the breadcrumb unless some other code outside bbpress is actioning it.
can you give us a link/url to a page and tell us what you want moved/added/changed
In reply to: Make the forum pages full-widthtry adding
.bbpress #content-main {
width: 96%;
}to your style.css
In reply to: Full width forumgreat – glad you’re fixed, and thanks for posting the solution
In reply to: Full Width Problem with page.php@davidnsfw – as with @svend-rugaard I can’t see where that is – can you post a url to a page with an example and tell me whjere this is displayed – I can’t see the word ‘archive’
@svend-rugaard come back when you have testedbit of a difference between
and wanted it removed completely
and
I merely want to move it.
🙂
but it doesn’t seem as if that’s possible.
um, yes it is, you just hadn’t asked !
just use
<?php bbp_breadcrumb(); ?>
in the code
there are many template files that use this
just look in
templates\default\bbpress\
and you’ll find all the templates
tell us where you want it, and we’ll try to help further
In reply to: Make the forum pages full-widthWe’d need a link to your site to fix those
In reply to: Setup problemsIn reply to: Make the forum pages full-widthyes take out the line
<?php get_sidebar(); ?>
about 5 line sup from the bottom.
BUT you need this to be a bbpress.php file in the right directory as per and don’t delete the page.php file – that runs the rest of your site !
In reply to: Changing Hyperlink Colorsthanks Rob ! Far better at css than me !
In reply to: Full Width Problem with page.phpMaybe you can tell me how im gonna remove that “Archive” from the title bar its weird it is using Archive as title for site
I can’t see where that is – can you post a url to a page with an example
In reply to: Setup problemsok,
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: Changing Hyperlink Colorsok, Rob’s the css guru, but why not try my plugin
https://wordpress.org/plugins/bbp-style-pack/
which will let you style the hyperlinks (no. 5 in forum index styling)
Otherwise come back and we’ll help further
In reply to: Full Width Problem with page.phpNo problem, glad I could help !
In reply to: Setup problemsok, welcome, and don’t be daunted !
Does the forum become visible if you log in – I know that’s not what you want, but it tells me some stuff I can ignore in helping you.
no a single flat structure of hundreds of forums would be fine, the only reason I can see for nesting them would from an admin perspective, and you seem to already appreciate that aspect and are happy with it.
In reply to: Show parent forum names(titles) on subforumsyes that’s possible, but can you giv e us a link to your site and a page and tell us exactly where within that page you would like it?
In reply to: User unable to post on forumI have one single user who is unable to post anything at all
sorry, can you define what you mean by this eg she can’t login in or she doesn’t get the topic/reply form, or she can’t fill it in, or she can fill it in but it doesn’t send etc.
Also have you looked in the backend to see if the topics/replies are there?
In reply to: Forum page title links to last forum created – why?Any replies with silly css hacks will be ignored
not sure that attacking potential helpers is the best way to get a response. Using hide in css is a perfectly acceptable way of achieving things even if you think it silly. I prefer non css solutions purely because my css is rubbish 🙂
Anyway in the documentation you will find
enjoy !
In reply to: No forum visible after import phpbbI see no front end forum
1. do you see it all in the backend?
2. what exactly have you set up to enable you seeing them in the front end, and exactly what are you seeing when you try to access the front end?In reply to: Full Width Problem with page.phpI think your theme is causing this. Unfortunately many theme authors wrap the various sidebar options into one page.php file nowadays. It gives theme flexibility, but doesn’t help andyone with custom post types such as bbpress. I’ve taken a look and try amending the bbpress.php to
<?php global $is_tf_blog_page,$post; $id_post = $post->ID; if(tfuse_options('blog_page') != 0 && $id_post == tfuse_options('blog_page')) $is_tf_blog_page = true; get_header(); if ($is_tf_blog_page) die(); ?> <?php $sidebar_position = tfuse_sidebar_position(); ?> <?php tfuse_shortcode_content('before');?> <div class="main-row content-row"> <div class="container"> <div class="middle-main content-full"> <div id="primary" class="content-area"> <div class="inner"> <article class="post post-details"> <?php if(!tfuse_page_options('hide_title')):?> <header class="entry-header"> <h1 class="entry-title"><?php echo get_the_title();?></h1> </header> <?php endif;?> <div class="entry-content"> <?php while ( have_posts() ) : the_post();?> <?php the_content(); ?> <?php break; endwhile; // end of the loop. ?> </div> </article> <?php if ( comments_open() ) : ?> <?php tfuse_comments(); ?> <?php endif;?> </div> </div> </div> </div> <?php tfuse_shortcode_content('after'); ?> <?php get_footer();?>
which takes out all the stuff relating to sidebars.
Come back if that doesn’t work or errors