connielk
Forum Replies Created
-
Forum: Plugins
In reply to: [Youtube Channel Gallery] Forbidden Daily Limit Exceeded ErrorI had followed that video and replaced the key and also deleted and recreated the key and it didn’t work. Today I replaced it again and it worked. Go figure. I’m just happy it’s working again.
Thanks.Forum: Themes and Templates
In reply to: [Customizr] bbPressThanks for the help nikeo. I’m happy with my site. Great Theme!
Forum: Themes and Templates
In reply to: [Customizr] bbPressPerfect. That was the last clue I needed. I had the global default layout to right sidebar and that made the archive page work. But I also needed to set the post default layout to right sidebar so that the forum, topic and reply pages would also have right sidebar because those are post types. Now everything is working.
Thanks for that last clue!
Forum: Themes and Templates
In reply to: [Customizr] bbPressI’m using a plugin called Display Widgets that lets me show/hide widgets on different pages. It is working on all other pages. And it does have a special setting to show or hide widgets on custom post types including Forums, Topics and Replies. But I am still only seeing the right sidebar on the forum page.
I’m using the latest Customizr with the child theme for bbpress.
redhorsesystems.com/forums
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workI had to wait for the weekend to update the theme and then set the bbpress child theme again. Looks good. Slider is rotating now.
I’m still not seeing the right sidebar on any forum page except for the front page, despite having the theme global setting to show right sidebar. Otherwise, it looks great.
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workI have the same issue. Slider on home page isn’t rotating. I’m going to have to disable the child theme.
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workPremature on the breadcrumb. Sorry. I found a css fix for that.
Awesome job fixing the page titles on the user pages, nikeo. Works now even with the seo plugins.
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workThis might be specific to bbpress and not the theme or childtheme and I can’t find the setting for it, but I now get two breadcrumbs. The theme breadcrumb above the page title and a second breadcrumb below it.
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workI forgot to mention that I do have the global default layout to Right Sidebar. That was the only way to get it on the forum page, and it worked nicely.
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workLooks great. Nice addition to a great theme.
I seem to be missing right sidebar on some pages of the forum, though. I can get it on the forums page, but I have added the bbpress search widget to the right sidebar and want to display it on forums, topics and replies and I don’t get a right sidebar on anything but the forums page.
I am combining this with the plugin Display Widgets, but it has been pretty reliable about showing the right widgets on the right pages it the rest of the theme and it does have settings for the custom post types of forums topics and replies. But I don’t get a right sidebar on any of those pages.
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workHappy to test…
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workI still haven’t figured out what to do about the page titles. No answer on Yoast forum. Anyone here have a suggestion?
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workI posted this q on the bbpress support and I got an answer that it’s SEO that’s the issue. I’m investigating further with Yeost, but does anyone here have any experience with this?
http://bbpress.org/forums/topic/user-pages-and-page-title-not-found/
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workThe one thing I didn’t figure out is on the user page. The title bar says “Page Not Found”.
Forum: Themes and Templates
In reply to: [Customizr] bbPress Forums page won't workThere were two other things I did that I forgot in my last post. The sidebar was taking a huge area below the forum and had a sitemap. To turn that off, I removed this line from all three php pages (archive-forum, single-user, and search-forum). Just delete this line if you don’t want the sidebar. If you want the sidebar, I’m not sure what you would do, but there is a video on youtube where a guy explains how to do it.
<?php get_sidebar(); ?>Also, the forum pages were filling the entire width of the browser. To make it fit in the same width as the rest of the customizr pages, I added div tags around the forum content. There is probably a css solution for this that is better, but this worked for me.
<div id="main-wrapper" class="container"> <div id="forum-front" class="bbp-forum-front" " > <h1 class="entry-title"><?php bbp_forum_archive_title(); ?></h1> <div class="entry-content" > <?php bbp_get_template_part( 'content', 'archive-forum' ); ?> </div> </div><!-- #forum-front --> </div>Notice that what’s new here that isn’t in your archive-forum.php is this line and the closing div at the end.
<div id="main-wrapper" class="container">To make search work, you have to make a copy of archive-forum.php, and edit the content so it looks like this:
get_header(); ?> <?php do_action( 'bbp_before_main_content' ); ?> <?php do_action( 'bbp_template_notices' ); ?> <div id="main-wrapper" class="container"> <div id="forum-front" class="bbp-forum-front" " > <h1 class="entry-title"><?php bbp_forum_archive_title(); ?></h1> <div class="entry-content" > <?php bbp_get_template_part( 'content', 'search' ); ?> </div> </div><!-- #forum-front --> </div> <?php do_action( 'bbp_after_main_content' ); ?> <?php get_footer(); ?>Then name the file search-forum.php and put it in the customizr theme root folder where you also saved archive-forum.php and single-user.php.