Forum Replies Created
-
In reply to: Importing from vanilla
ehm … i think with a lot of work it should be doable to grab the rss-feed, re-format it and put it into the bbpress database … but i can’t do that
In reply to: Plugin: Post NotificationMaybe you were too fast for me to upload the new one
Do you use permalinks? I only tried it without.
For me it works (see on my demo-board).
In reply to: Plugin: Post NotificationOh … didn’t notice this issue. Thanks a lot!
Fixed it now … in a simple way, but it should work now. Try it.
In reply to: Plugin: Simple OnlinelistIt’s your choice where you put ‘show_online_users()’ in your template. I suggest the following way if you use default theme:
– open bb-templates/front-page.php
– search for line 5 – 8:
<div id="hottags">
<h2><?php _e('Hot Tags'); ?></h2>
<p class="frontpageheatmap"><?php tag_heat_map(); ?>
</div>
– replace with:
<div id="hottags">
<h2><?php _e('Hot Tags'); ?></h2>
<p class="frontpageheatmap"><?php tag_heat_map(); ?>
<h2><?php _e('Online'); ?></h2>
<?php show_online_users(); ?>
</div>
– save as my-templates/front-page.php
I’ll fix the database setup and some other things as fast as i can
#edit: new version up, feel free to try it out
In reply to: Email subscriptionIn reply to: Plugin: Post NotificationWhen you go to your profile preferences there should be a new section… look here:
http://la-school.com/bbpress/profile.php?id=2&tab=edit (Login: Test / test )
In reply to: Plugin: Post NotificationUPDATE:
Now users can decide if they want to receive emails on their favorites. There is no need to change templates, simply upload the plugin
In reply to: Plugin: Simple Onlinelistthe *first* time after you’ve installed the plugin, it will display this error, but then the table will be added automatically and there shouldn’t be any errors any more
In reply to: bbPress installation not working?Hmm … looks like you have a problem with your permalinks. Maybe try it without, does it work?
Look here:
In reply to: Plugin: Simple Onlinelist“PS: it just tells who was online over the past 5 minutes. This is not true, it only shows te persons currently online, which is good!”
– If the user clicks on Logout, otherwise he will disappear after 5 minutes.
“Would be nice to add total guests too”
– Good idea … i’ll give it a try
“Great plugin, if you made this one AJAXED it would be even greater!”
– Thought about it, but this would be easer to realize with next version of bbpress (current version only loads bb_head() when topic is displayed)
Thx for your critique.
In reply to: bbPress installation not working?In your config file it should look like this, does it?
// If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.
// Adjust the domain and path to suit your actual URL.
// Just the domain name; no directories or path. There should be no trailing slash here.
$bb->domain = 'http://patrimoineacadien.com'; // Example: 'http://bbpress.example.com'
// There should be both a leading and trailing slash here. '/' is fine if the site is in root.
$bb->path = '/bbpress/'; // Example: '/forums/'