Hello i was just playing around with this a little bit and i have to say i have ZERO .php skills i only look and compare lines to each other..
But i think i have found the problem for showing the (right) avatars.
First i did this what Kevin told us.
echo bb_get_avatar( $topic->topic_last_post_id , ’48’);
But i got only a basic image and all the same basic avatars..
So i looked at who bbPress did post the user name of the last poster in the topic and i see this.
<?php topic_last_poster(); ?>
So i thought lets try to change _post_id into _poster and it worked for me with this line.
<?php echo bb_get_avatar( $topic->topic_last_poster , ’48’); ?>
bbpress as a plugin is currently being developed. see this thread:
https://bbpress.org/forums/topic/bbpress-plugin-updates
bbpress as a plugin is currently being developed. see this thread:
https://bbpress.org/forums/topic/bbpress-plugin-updates
Got it: https://trac.bbpress.org/ticket/1399
Plus raised a couple more that i came across while doing this, so they might be related.
Using bbPress-WordPress syncronization plugin and was able to connect to the bbpress part on wordpress dashboard, but not the other way around.
bbPress url: http://example.com/forums/ Everything is ok!
WordPress url: http://example.com/ URL is incorrect or connection error, please verify it (full variant): http://example.com?wpbb-listener
Link above leads to: “If you see that, plugin must connect well. bbPress test response (must be a:1:{s:4:”test”;i:1;}): a:1:{s:4:”test”;i:1;}”
Enable plugin (on both wp & bb) Not allowed: [bbPress part] Cannot establish connection to WordPress part
-made fsockopen, etc. changes
-my-plugins folder, etc. permissions=755
Sincere appreciation for anyone that can offer assistance/ideas
Thanks zaerl..
I will delete the login-/register menu off WordPress and try to redirect the login-/register off WordPress to the bbPress site.
Thanks zaerl..
I will delete the login-/register menu off WordPress and try to redirect the login-/register off WordPress to the bbPress site.
I think you may have misunderstood what I was asking for (and I probably wasn’t clear enough either). I’m looking for a way to change the contents of the email message that bbpress sends to new users.
I think you may have misunderstood what I was asking for (and I probably wasn’t clear enough either). I’m looking for a way to change the contents of the email message that bbpress sends to new users.
bbPress isn’t a WordPress plugin. It’s a standalone software.
bbPress isn’t a WordPress plugin. It’s a standalone software.
I’ll be looking at this later on, but initial tests seem to indicate it isn’t working.
This is so weird. I installed the plugin, and it works perfectly… but I can’t find the physical files on my server anywhere.
ARe they being stored in the DB now, by chance?
I uploaded the branches_plugin-2709 and received the same error message when I attempted to activate the plugin. What am I doing wrong??
I uploaded the branches_plugin-2709 and received the same error message when I attempted to activate the plugin. What am I doing wrong??
@citizenkeith: Should be working? Worth testing though.
Hmmm i had the same error when i tried to change from basic to prettylinks.
First i got an error when i tried to change the WordPress install to permalinks (friendly links)
And it told me to copy and past this code to my .htaccess file.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
When i did that and chmod the file to 666 by Transmit (file upload client) everything worked fine..
But when i tried to change bbPress from basic to pretty permalinks i got also the same error the TS had.
But adding this code (line) below the code above i have no trouble anymore..
Options +MultiViews
* So i don’t know what i’m doing but i think it’s okay because it works.
Thanks..
Using Rich’s test site, I enabled email notification for certain threads, but haven’t seen a single notification. Is that not working yet?
excellent. I’ll wait for a few more things to be added before I code my extension to it then
Has any thought gone into integrating the existing akismet plugin to work with this? And should that functionality be in core if it possible?
I have a little problem and i can’t find how to fix it.
I have installed bbPress 1.0 on the same database of my wp-install (latest)
And now everything look like it’s okay but when i sign in as a admin on my wp site and than jump to my bbPress forum i still see i’m logged-in as a admin but when i try to go to my bb-admin.php file (on the site) it doesn’t load this page.. (it only refreshes the bbPress forum homepage)
I can’t get into my bbPress dashboard.
But when i go back to my wp -site and log-off and switch back to my bbPress forum and log-on everything is fine. and i can use both admin-dashboards.
What can be this problem?
Okay this topic can be closed and deleted..
I don’t want a deep integration anymore..
I only wanted the main navigation of the WP site on top of my bbPress forum but i can change that manually and don’t need to load the entire WP site into my bbPress forum..
Okay this topic can be closed and deleted..
I don’t want a deep integration anymore..
I only wanted the main navigation of the WP site on top of my bbPress forum but i can change that manually and don’t need to load the entire WP site into my bbPress forum..
I want to customize the email that bbpress fires off when a user registers. What do I need to edit to do so?