Forum Replies Created
-
In reply to: bbPress development stalled?
the development is based on community, if you want it to progress faster – just be involved into it. It’s how open source work.
In reply to: bbPress 2.2.3 Releasedplease use trac for bugs.
In reply to: bbPress 2.2.3 ReleasedIn reply to: bbPress 2.2.3 Releasedcan you post this on trac?
https://bbpress.trac.wordpress.org/newticketIn reply to: bbPress 2.2.3 Released“HALP! IT BROKE” = LOL
In reply to: bbPress 2.2.3 Releasedyou can give a try
In reply to: bbPress 2.2.3 Releaseddid you updated the permalinks?
In reply to: bbPress 2.2.3 ReleasedI think that now bbPress is more popular than BuddyPress.
In reply to: How to disable Visual edit ?look in the code, or in the settings menu
In reply to: Help removing sidebar from bbpress pagesyou need to remove the sidebar (get_sidebar() function) from every file of bbPress template.
In reply to: Spamming bbPressbbPress can use akismet if it is installed already…
you should disable anonymous posting if it’s enabled.
In reply to: Members plugin help?may be to apply the page a template from the drop down menu.
there is a styling file of the theme or of the bbpress and there you must change the color of the text, learn css.
In reply to: Building A VERY VERY VERY Minimal Theme From Scratchbtw bbpress is very minimal in comparison to other forum platforms, you can easily use only CSS file to modify something without need to integrate all php files in the theme, or some of them.
In reply to: bbPress 2.0 – Updatescan you please make the plugin to work from a subdomain? for exapmple my blog site is site.com, an the forum url to be forum.site.com
In reply to: bbPress 2.0 – UpdatesI created a ticket on the site so you can reply me there: https://trac.bbpress.org/ticket/1493
In reply to: bbPress 2.0 – UpdatesCan you please change something in the bbp_pre_get_posts function?
when I delete this function my site work fine, but with this function an error occurs: Fatal error: Call to a member function get() on a non-object in C:xampphtdocswordpress10wp-includesquery.php on line 27
I think you should modify this function somehow so the error will not show again.
My earlier post about this critical problem – https://bbpress.org/forums/topic/bbpress-plugin-updates/page/18#post-83617
Many Thanks!
In reply to: bbPress 2.0 – Updatescan you please show where the code is wrong?
In reply to: bbPress 2.0 – UpdatesA created a Ticket here regarding a fatal error in the plugin but it seems that it’s not visible in the list…
So I would like to post it here again:
After installing the plugin an fatal error occurs, I think that it’s a conflict between bbPress and WP_Query.
The full error is: Fatal error: Call to a member function get() on a non-object in C:xampphtdocswordpress10wp-includesquery.php on line 27
I use something like this:
$args=array(
‘cat’ => $wpimpress_cat->cat_ID,
‘posts_per_page’ => 1
);
$temp = $wp_query;
$wp_query = null;
$wp_query = new WP_Query($args);
if( have_posts() ) :
while ($wp_query->have_posts()) : $wp_query->the_post();
//loop here!!!
endwhile;
endif;
$wp_query = $temp;
wp_reset_query();
Please check this, and make the plugin to work!
In reply to: BBPress is ok or dead ?hi Fredo!
they want to create a plugin instead of standalone, and perphaps it will be included in WordPress next major version so I think here are some last breaths.
Keep in touch for the updates regarding the plugin.
In reply to: BBPress is ok or dead ?hi Fredo!
they want to create a plugin instead of standalone, and perphaps it will be included in WordPress next major version so I think here are some last breaths.
Keep in touch for the updates regarding the plugin.
In reply to: Solution for Paid Access?try amember:
1. integrate bbpres with wordpress
2. integrate amember with wordpress
and you are done!
everytime someone joins amember he automaticly joins forum
In reply to: Solution for Paid Access?try amember:
1. integrate bbpres with wordpress
2. integrate amember with wordpress
and you are done!
everytime someone joins amember he automaticly joins forum
In reply to: bbPress 2.0 – Updates@quicoto did you add the code
add_filter(‘init’,’flushRules’);
function flushRules(){
global $wp_rewrite;
$wp_rewrite->flush_rules();
}
in the bbp-functions.php ?
In reply to: bbPress 2.0 – Updates@Gautam yeap, I like to see a Month and name permalink instead of the Default, by Default it’s ok but if I choose other, without the code I mentioned in the previous message it doesn’t work.