Search Results for '\"wordpress\'
-
Search Results
-
Just installed the Codestyling Localization plugin… it spits out a message: “Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won’t be executed anymore. Please contact the Author about that.”
Well,.. the author would be bbPress.
any comments?
I’m unable to use this plugin on bbPress but works fine on everything else.
regards,
Peter
Topic: Topics not showing in Forum
I have just installed bbPress plugin into my WordPress (with Weaver II theme – based on TwentyEleven theme).
When I go to the forums root, the layout seems acceptable.
However, when I click on a forum, I am taken to a page where I do not see any topics listed under the forum, even though I have created a topic under this forum, and this is acknowledged in the forum list (root).
If I go directly to the topic URL by typing it in address bar, I do get to the topic page, which is visible just fine (except that no reply, flag, quote etc buttons are available).
Please help!
Hello,
So I have made a few posts around this forum and the wordpress forums about my technical difficulties with bbPress integrating into my theme… I’ve yet to figure it all out.
I’m not sure if this is the right forum to post this in or not, but I would like to “hire” someone to help me with my forums. I want to make them with bbPress and have them full-width, while still retaining the main menu and logo at the top of the website…
If anyone is interested in helping me out, please let me know!
Thanks,
Corey
I installed WordPress 3.3 and BuddyPress 1.5.2. BuddyPress seems to be considered my site.
The bbPress plugin already existed after I first installed BuddyPress.
I now want to run a Bulletin Board site so I created a new site and gave it a directory name off the root install.
When I FTP to the server, the directory I created does not show up yet I can render a site at the address that includes the directory in the url. I also get the Twenty Eleven theme with the site.
I went to the site and activated the bbPress plugin.
The Bulletin Board site looks like traditional WordPress.
How do I get the new site to look like your bulletin board site?
Topic: bbpress2.0, no installer ??
i’m trying to set up a forum using bbpress at awardspace.com.
trouble:
i unzipped bbpress 2.0 on my desktop, then i uploaded ALL the files to awardspace in a folder called bbpress. i visited mysite.com/bbpress/ and there’s no installer. it’s just blank.
questions:
is bbpress a plugin for wordpress? like should i install wordpress on the server first? i’m completely new to these things…
or
should i set up a database first? then go to somewhere and find the installer??
or
should i just set up wordpress and install a wordpress forum plugin??
Topic: Forum categories are huge
I am integrating BBPress 2.0.2 into WordPress and Buddypress to create a forum/social experience.
I have everything functioning correctly, but while trying to style the forum I cannot seem to change the height of the forums categories. Currently they are about 300px in height, which is ridiculous! I have done everything I know to do in CSS and I cannot change this.
Am I doing something wrong?
Topic: upgrade error
I just upgraded wordpress to the latest version, then bbpress. This is my first time upgrading bbpress, and evidentially I did something wrong.
I receive this error:
Fatal error: Class ‘BBP_Theme_Compat’ not found in /home/username/public_html/wp-content/themes/daily/functions.php on line 501
I searched google and this site, and was unable to find any information. Where did I go wrong?
Topic: Viewing forums
I am on the latest WordPress and I installed the new bbpress plugin.
I created a forum. I made it private so that non-forum participants cannot see it.
I created a test forum participant.
I logged into as the forum participant via another browser. The forum participant cannot see any of the forums at all. Unless I make it public.
(Sorry, I just realized this should be in the troubleshooting forum)
If I make it public, anyone can see the topics, which I do not want.
Is there a solution?
I installed WordPress, and then BuddyPress. As far as I know, BuddyPress comes with bbPress 2.0.2.
In BuddyPress’ components, the “Discussion Forums” component is NOT ticked, it’s off.
Instead, I have a bbPress 2.0.2 plugin on the wordpress’ list of plugins. I unfortunately don’t remember if I installed the plugin, or it got installed as I installed BuddyPress.
My question is, can I install bbpress plugins on this type of setup? I’m looking to get for example youtube embedding etc. going on them as well as the b or img or other shortcodes.
Any help is appreciated. Thank you.
Hey everyone, I’m having a bit of trouble with my query. I’m display forum posts on the home page of my wordpress site so they kind of look a bit like a blog post. What I’m having a hard time figuring out is, how can I exclude spam, hidden, and closed topics from veiw on that page.
Basically, I only want to show open topics on the home page, the part o the code in question is…
$bbp_loop_args = array(
'post_type' => bbp_get_topic_post_type(),
'orderby' => 'date',
'order' => 'DESC',
'post__not_in' => bbp_get_super_stickies(),
'posts_per_page' => 10,
);
if ( bbp_has_topics( $bbp_loop_args ) ) :
if ( bbp_topics() ) : bbp_the_topic();
global $more;
$more = 0;
get_template_part( 'content', get_post_format() );
echo '<ol class="other-recent-posts">';
endif;
endif;I’m able to exclude super-stickies easily enough, but excluding hidden, spam, and closed topics is eluding me.
Anyone out there have any Ideas?