-
AuthorPosts
-
October 9, 2014 at 11:38 pm #122756
I am loving this theme and I have been getting some great feedback from my site users so far, but I am having a problem with bbpress. I’ve gone through my plugins deactivating and activating them to see if any of them might be the cause of this issue, but none of them proved to be the culprit from that test. I also double checked to make sure I have bbpress 2.5.4
Recently the thread pages in my bbpress forums have lost their structure (see image)! The boxes/borders and navigation have gone wonky. Does anyone know a fix for this?
Thank you in advance! (my forums are private, let me know if i need to make them public for troubleshooting)
WP Version 4.0 // bbpress Version 2.5.4 // theme-x version 2.6.0 // shortcode plugin version 2.5.0
October 10, 2014 at 9:33 am #123045Hi there,
Sorry to hear about the loss of formatting. Thanks for letting us know about to conflict testing you’ve already tried. I’m not sure what it is at this point, but would be happy to take a closer look.
Could you create an admin account for us to use? That way we can see the forums and current configuration. You can post details in a private reply.
Thanks!
October 10, 2014 at 2:58 pm #123221This reply has been marked as private.October 10, 2014 at 6:03 pm #123307I noticed something else that is happening with the forum page when I use the bb code buttons. When I pressed “link” it took me to a form in the bottom left corner of the page. Here’s a screen shot
October 11, 2014 at 5:07 pm #123599Hi there,
Not sure what’s the issue, but using this code works by enabling bbpress editor correctly.
if ( ! function_exists( 'x_bbpress_filter_get_the_content' ) ) : function x_bbpress_filter_get_the_content( $r ) { $r['before'] = '<div class="bbp-the-content-wrapper"><label for="bbp_topic_content">' . __( 'Content', '__x__' ) . '</label>'; $r['after'] = '</div>'; $r['textarea_rows'] = 8; $r['quicktags'] = true; return $r; } endif; function restore_button_style() { wp_enqueue_style( 'buttons' ); } function restore_qt_loader() { remove_filter( 'style_loader_tag', 'x_filter_style_loader_tag' ); } add_filter( 'bbp_before_get_the_content_parse_args', 'x_bbpress_filter_get_the_content' ); add_action('init','restore_qt_loader'); add_action( 'wp_enqueue_scripts', 'restore_button_style', 999 );
There are missing script/function that couldn’t be loaded. Would you mind installing a child theme then add that code at your child theme’s functions.php?
http://theme.co/x/member/kb/how-to-setup-child-themes/
Please provide your ftp login credentials too as I can’t see all other template by just using wordpress admin.
Thanks.
October 11, 2014 at 5:50 pm #123611Hello,
I added a child theme for renew and added that code to the child theme’s functions.php and the link button in the forums (along with the other buttons works! Huzzah! Thank you!
The original problems persists with the forum formatting. I’ll include credentials in a private reply.
October 11, 2014 at 5:52 pm #123612This reply has been marked as private.October 12, 2014 at 9:00 pm #123942Hi there,
It works, but pointed to empty folder.
Do you have any template customization for bbpress? I just checked and your bbpress forum loop is different from what X uses.
The reason it is not getting the correct styling is because of mismatched selector to its element hierarchy. Your loop doesn’t have
<li class="bbp-body">
.So I created another styling just for your current setup. Add this css at your customizer’s custom css.
.bbp-replies li div.hentry { margin: 0 0 -2px; border: 2px solid #e5e5e5; padding: 15px; background-color: #fff; margin-bottom: 15px; }
Cheers!
October 15, 2014 at 6:04 pm #126014Thank you for getting back to me on this!
I tried that code and didn’t have much luck – everything looks the same as it did with the bad formatting.
I do not have any template customization for bbpress. Is there a way I can reset bbpress, maybe it installed incorrectly or something?
thank you!
October 16, 2014 at 6:00 am #126249Hi There,
Thank you for writing in!
Upon checking the above given code in live website, it seems to be working just fine (see: http://prntscr.com/4wo4ix). Can you try adding the code again under Custom > CSS in the Customizer:
.bbp-replies li div.hentry { margin: 0 0 -2px; border: 2px solid #e5e5e5; padding: 15px; background-color: #fff; margin-bottom: 15px; }
Hope this helps. 🙂
Thank you.
October 16, 2014 at 9:09 am #126374IT WORKS AND IT’S GLORIOUS! Thank you thank you thank you! Our community will be growing a bunch more over the next month and having good looking forums is going to be essential!
I wasn’t able to get that code to work in the custom>>CSS, but I was able to make it work from the child theme’s style.css, which is fine by me!
Thank you so much! Your assistance and customer service is above and beyond! I’ve never seen a theme with so much help – this is my go-to theme and I will be getting some licenses for the next two installs I have lined up!
October 16, 2014 at 3:31 pm #126609Glad it worked. Thank you for such kind words 🙂
Have a nice day!
-
AuthorPosts