I am game.
wmarcy AT stny DOT rr DOT com
Erm, why so top secret? You might get some help and brainstorming if you disclose it, you know.
I’m after a few brave souls to beta test my latest plugin.
Anyone got the time? I promise it’s worth it.
Raise your hand here and add your email address (in some obfuscated fashion). All will be revealed via email…
Is this plugin supposed to work with the latest version of BBPress because following the upgrade – I’ve lost complete access to my restricted forums – they don’t even appear in the list of forums on my admin screen – As these forums are the ones used by moderators and admins – they are very important to retrieve without displaying their contents to the world
Also worth noting is that the config screen for this plugin doesn’t appear to be working with the latest version either
<h2>< ? php _e(‘Latest Discussions’); ? ></h2> will only give you the h2 element saying latest discussions. You also want to move <table id=”latest”> and everything in it.
only this part ? <h2>< ? php _e(‘Latest Discussions’); ? ></h2> or anything relating to latest dicussions
Edit the template file front-page.php
so that the ‘latest discussions’ part is beneath the ‘forums’ part.
how to move latest dicussions to the bottom of the forum instead of up top
I can create a test account and help test if you put the URL up!
Trent
Latest status: I can’t even log on to wp now. Even with re-install, I’m getting invalid password error.
I have confirmed this issue with a squeaky clean install of wpmu 1.2.3 + bbPress 0.8.2.1. All attributes are stripped from html elements included in a post. Now installing and testing with plain old WP 2.2.1, will report back shortly.
Sorry fel64. I am not being very articulate and I appreciate your replies. There are two tables on the main page. One with latest discussions and below that it says forums. There are three columns on the forums section: main theme, topics and posts. I want to add another column that tells you who lost posted in that forum and at what time.
Thanks,
Daniel
Hi!
You can use WordPress Pages inside bbPress. I’m testing an integration between bb and wp and it works flawlessly. Look for some posts about including wp-config.php or wp-blog-header.php in your config.php.
The SVN address is https://plugins-svn.bbpress.org/
You can also browse that address with a web browser and find specific plugins.
Latest versions of individual plugins are in:
https://plugins-svn.bbpress.org/<plugin-name>/trunk/
for example:
https://plugins-svn.bbpress.org/support-forum/trunk/
I agree with this. Also, what would I call to display the date/time of the last post in a forum? This would be so I could say: Latest post at TIME by USER
I have created my-templates in the bbpress directory and copied the kukumei directory from bb-templates under a new name so I can tinker with it. However the admin menu/dashboard does not have a presentation menu anywhere in it! What am I missing? Using latest version of bbpress, 0.8.2.1
kwizNET Learning System, LLC (http://www.kwiznet.com) offers online educational programs for elementary, middle, and high school students.
kwizNET Learning System is an exceptionally effective system for parents, teachers, and homeschoolers to help their students learn and excel in mathematics and language arts. Suggested uses are:
* as a primary teaching tool for your homeschooler
* skills assessment to find student’s strengths and learning needs
* for systematic at-home practice when schools do not follow text books
* supplementing any textbook or school/homeschool curriculum
* extra at-home practice of already learned skills
* extra practice for reinforcing concepts that a child is struggling with
* extra practice over holidays to keep skills sharp
* review tests, quizzes, and homework
Phone no : 1-866-860-8686
Hi Trent;
” the TRAC ticket (development and testing site) shows that this issue with translating dates from the .mo file should work now. Test it out would be the only way to find out for sure.”
-> Nop, impossible because after wp integration you get the streams.php error whenever you set a .mo file in the config.
Let me ask just one question; if you manually translate each file, file by file, all translation you need (excluding admin control panel) are located in the template?
I’ve noticed when multiple topics share the same topic name, the slug gets modified a little strangely. For example, if I have four topics named “Test” the slugs would be:
I’d imagine by the 50th topic, the URL would become quite unwieldy. Surely only the last slug number is necessary. Is there any way to fix this? Since these are supposed to be permalinks, it’s somewhat urgent.
MMember
Culprit – Forum Restriction plugin
Ah. I just got an email notice from my private forum. The test forum I created to try and get some heirarchy going on is visible but creating a post did not seem to work and left me with a 0 post count (the posts appeared in one of my private forums instead).
The Forum Restriction plugin doesn’t work with 0.8.2.1 in that the forums are not visible but still exist in the database.
I deactivated the plugin and deleted our sensitive posts. Voila, all the forums appear in the dropdown menus and the forum admin appears heirarchal.
That’s it for me tonight, but at least I’m pretty sure that’s the source of the problem now.
Ganzua, I haven’t tested it, but the TRAC ticket (development and testing site) shows that this issue with translating dates from the .mo file should work now. Test it out would be the only way to find out for sure.
Trent
I cannot test your permalinks because you turned them off. If you get this, maybe turn them back on so we can test it. As well, your blog took more like 8 seconds to load and your forum was really quick for me. Maybe a coincidence….?
Trent
For error: “Cannot redeclare class streamreader …”, read this…
https://wordpress.org/support/topic/111411?replies=9
has anyone got this patch to work on the latest release? when i apply the patch i get a lot of failed chunks and then when i try and view the site i get
Fatal error: Call to undefined function bb_get_categories();
eek!
It’s there! I’m looking at it right now. In the code you copied it is line 10.
The bb_posts table is what we’re looking for, not wp_posts (also a table), and it tells you the databasename.tablename
so it’s actually trying to look for a table called “posts”. I don’t think the wpbb_prefix
option exists in your tables, I suspect that’s a Latest Discussions plugin thing (ah, hindsight). If it did, it would read bb_
. The .
is used to join two strings together, so what it should be doing is joining 'bb_'
and 'posts'
together into the table name 'bb_posts'
, but since that option doesn’t exist in your tables it just join together ''
(a blank) and 'posts'
, leaving us with the incorrect table name of just 'posts'
. I suspect.