Really need help with this
i need to remove all old files and get new ones
How can i do a complete uninstall of bbpress?
So i can reinstall and everything should work
Is it ok for me to start with bbPress 2.1 + WordPress, then later upgrade to BuddyPress if my site grows and it will form a natural community?
Sorry to “bump” this, but I was really hopeful that someone would be able to help
What I can see I have WordPress in form of “3.3.2–sv_SE ” The back-end is in Swedish and as for what I can see the site is in swedish but bbPress is not.
The language files for WordPress are here:
/vaxmora.se/wp-content/languages
For bbPress are here:
/vaxmora.se/wp-content/languages/bbpress
I did as said before “do like this and it should work” and right now I don’t know anything… so how should I do? How should it be?
Please add here how it should be.
1,
2,
and so on…
Thanks
Do you also have the WordPress translation files where they belong? If WordPress core cannot find its translations, it will revert back to English. If that’s the problem, it’s possible you’ve had bbPress’s in the correct locations already, and WordPress was nooping it.
Hello, I would like to know the same thing. Anyone have an answer? My forum is at http://salt-care.com/dev/forums/.
It’s a shame that users have to see the WordPress news and such on the generic WordPress dashboard once they create a forum participant account. There must be a plugin for this.
It is the same as to register in WordPress.
http://yourdomain.com/wp-login.php?action=register
When registered in WP they can participate in the forum. At least my test forum works like that.
where is the wp-config.php file located?
Thanks for the link!
Unfortunately it did not help much.
I installed bbPress directly from the WordPress (as a plugin).
Does anyone know if it has developed a plugin (the last 11 months) that allows people to register?
Check your bbpress settings and wordpress media settings and make sure you have them both set to auto-embed videos.
Are you able to view your php error logs? If not, you could add this to your wp-config.php..
define(‘WP_DEBUG’, true);
Viewing the errors will give you an idea of where the problem is.
I have installed BBpress on my wordpress site and all of a sudden when i go onto my forums page the categories are not showing its just a white page with template
i have tried re installing and still no luck
Please help
SKParticipant
Another thing…I looked at the code https://bbpress.svn.wordpress.org/branches/plugin/bbpress.php and it seems to seek bbpress-sv.mo not bbpress-plugin-sv.mo so you might try renaming the file again (sorry!)
I would like to change things like size and color for my forum titles, but I just cannot seem to figure out where in the CSS to change this. I have been looking in my WordPress style.css and in bbpress.css, but I cannot find it. I tried to add h1.entry-title { color: #900 } to bbpress.css, but nothing happened. I have found how to control this at the rest of the homepage, but not for the forum part…
Here is the site: http://rodrigo-matos.com
Could somebody please help me with this? I’m going crazy!
SKParticipant
Hmm..weird.
Let’s try again from the top.
Download the .mo file from https://translate.wordpress.org/projects/bbpress/plugin/sv/default and without making any changes, place it in http://vaxmora.se/wp-content/languages/bbpress/
I know you have done it before, but have a go again and see if it makes any difference.
SKParticipant
Also, the name of your file should be of the format bbpress-de_DE.mo not simply de_DE.mo
Actually that has changed now. If you download the file from https://translate.wordpress.org/projects/bbpress/plugin/ then it will have the correct name already, which would be in the format bbpress-plugin-de.mo
SKParticipant
Could WP Super Cache tags do the job?
https://wordpress.org/extend/plugins/wp-super-cache/faq/
How do I make certain parts of the page stay dynamic?
There are 2 ways of doing this. You can use Javascript to draw the part of the page you want to keep dynamic. That’s what Google Adsense and many widgets from external sites do. Or you can use a WP Super Cache tag to do the job but you can’t use mod_rewrite mode caching. You have to switch to PHP or legacy caching.
There are a few ways to do this, you can have functions that stay dynamic or you can include other files on every page load. To execute PHP code on every page load you can use either the “dynamic-cached-content”, “mfunc”, or “mclude” tags. The “dynamic-cached-content” tag is easier to use but the other tags can still be used. Make sure you duplicate the PHP code when using these tags. The first code is executed when the page is cached, while the second chunk of code is executed when the cached page is served to the next visitor. To execute WordPress functions you must define $wp_super_cache_late_init in your config file.
dynamic-cached-content example
This code will include the file adverts.php and will execute the functions “print_sidebar_ad()” and “do_more_stuff()”. Make sure there’s no space before or after the PHP tags.
<!--dynamic-cached-content--><?php
include_once( ABSPATH . '/scripts/adverts.php' );
print_sidebar_ad();
do_more_stuff();
?><!--
include_once( ABSPATH . '/scripts/adverts.php' );
print_sidebar_ad();
do_more_stuff();
--><!--/dynamic-cached-content-->
mfunc example
To execute the function “function_name()”:
<!--mfunc function_name( 'parameter', 'another_parameter' ) -->
<?php function_name( 'parameter', 'another_parameter' ) ?>
<!--/mfunc-->
mclude example
To include another file:
<!--mclude file.php-->
<?php include_once( ABSPATH . 'file.php' ); ?>
<!--/mclude-->
That will include file.php under the ABSPATH directory, which is the same as where your wp-config.php file is located.
Example:
<!--mfunc date( 'Y-m-d H:i:s' ) -->
<?php date( 'Y-m-d H:i:s' ) ?>
<!--/mfunc-->
SKParticipant
Yup. WPLANG parameter in your WordPress’s wp-config file, if you haven’t already set your WordPress to your target language