Forum Replies Created
-
In reply to: Topics and Forums
Just make the topics ‘sticky’ do not set them to ‘stick to front’
Try posting WordPress questions on https://wordpress.org/support/
(I would also break up your question into multiple questions eg. Post your BackupBuddy plugin question in there support section for the plugin.)
Try posting BuddyPress questions on http://buddypress.org
This is the .zip file to download and extract on your PC to then upload with FTP to your webhost:
https://github.com/EpicWebs/bbPress-starter-theme-epicwebs/archive/master.zip
In reply to: Use BBpress in message board styleIndeed you can do this, you just need to use a custom query to query both topic & reply custom post types.
`function my_get_posts( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( ‘post_type’, array( ‘topic’, ‘reply’ ) );return $query;
}
add_filter( ‘pre_get_posts’, ‘my_get_posts’ );
`In reply to: Problems with Buddypress Group ForumsI suggest you ask this one over at http://buddypress.org
In reply to: Group forum posting causing redirect loopI suggest you ask this one over at http://buddypress.org
Apologies, I missed this when you posted this. This has been fixed in the upcoming bbPress 2.3.release.
In reply to: Write to group forum as non-memberYou should ask this over at http://buddypress.org
In reply to: Provide custom info with shortcodesIn reply to: BuddyPress +BBPress Groups not workingI suggest you post this over at http://buddypress.org as it is more of a BuddyPress issue.
Copy all the files to your themes root directory and it should look something like this:
- /wp-content/themes/my-theme/bbpress-functions.php
- /wp-content/themes/my-theme/bbpress
- /wp-content/themes/my-theme/css
(Where ‘my-theme’ is the name of your theme, there is nothing you need to activate.)
Looks like the conversion hangs around 13,000 replies …. I have about 20,000 more to go. It definitely slows down near the end.
If it hangs and appears that nothing is progressing, click ‘stop’, wait a minute to give your webhost a moment to finish anything it might be doing, click ‘start’ and it should resume from where it left off. Take note of the step and count of where it was up to so after importing you can check that for example all replies between 13,400 & 13,499 have indeed been imported.
However, the posts that do end up getting converted look beautiful.
Cool, took a while to get to this point but quite satisfied with the results.
My only guess is the scrubbing process is taking a lot more resources than before this beta version? Any insights would be much appreciated
There have been no changes to the actual converter, only the importer. Granted that the import now imports more phpBB fields than it did previously but this should make only a small increase to the SQL query performance.
As each topic or reply is imported it is parsed with ~30 regex strings to convert the BBCodes, I haven’t done any benchmarks but presumably this has some impact.
My base phpBB database import I have used for the past 6 months to test with is around ~6000 topics and 30,000 replies and I haven’t really noticed much of an impact during what I would say has been ~100 imports.
Also, I’ve noticed that there seems to be only two levels of hiearchy that gets converted … Categories and 1 level of forums below that. Nested forums within forums in phpbb don’t get pulled in? It’s okay for me either way because i’ll modify my forum structure before importing them.
That should work fine, I tested things to a depth of 4 with a forums hierarchy based on the ‘‘nested set model’.
In reply to: login shortcodehttp://www.newlifeworshiparts.com/wp-content/themes/Soundstage/style.css?ver=3.5 Line #1478
Remove the `float: left` from your CSS (Check where else this may affect your site also)
`.comments-list .title strong{font-family:DroidSerifBold;}
.comments-form .txt,
input[type=”password”]{
float:left;
clear:left;
width:204px;
padding:8px 9px 9px;
background:#fff;
border:1px solid #c2c4c6;
margin:0 0 12px;
position:relative;
}`I just sent you a pull request over at GitHub and updated all the things.
- Update to latest bbPress r4754 code changes
- Added README.md
- Updated bbpress-functions.php
- Updated bbpress.css
- Added custom CSS changes to bbpress-rtl.css
- Removed unused templates
bbPress r4754 is at this stage bbPress 2.3 Beta 2 and I am pretty sure any other changes we make before releasing 2.3 won’t affect any of what I just updated.
There are no changes to your code, just the bbPress updates to the latest version available.
In reply to: Topic count in Forum incorrectIn reply to: How to not gray-out closed topics.Just add the following to your themes CSS or if you are not using a child theme there are a few ‘Custom CSS’ plugins you could use so that you are also safeguarded against theme updates also.
`#bbpress-forums .status-closed, #bbpress-forums .status-closed a {color: #000;}`
In reply to: Have deleted forums URL in admin-sectionJust download and reinstall the plugin, your data is only deleted if you explicitly delete the data yourself. You will have to update the settings if you used custom slugs etc in bbPress options.
If you need to disable the forum in future just deactivate the plugin.
In reply to: phpBB magic URLs fix?The good thing though is that the majority of what is included in the 2.3 update can be used manually on your MySQL database to convert the BBCodes & Magic URL’s to WordPress friendly HTML.
I just haven’t written any docs on this yet, I also haven’t actually done it on a site I desperately need to do this with. Hopefully in the next couple of days I can get some time to get this started.
In reply to: Preventing name changesHaha… We don’t have that power yet 😉
In reply to: phpBB magic URLs fix?All the BBCodes and Magic URL’s are fully converted to HTML in the upcoming bbPress 2.3
There is no current way to rerun it though to convert existing sites.
In reply to: Preventing name changesStandard bbPress & WordPress do NOT support ‘signatures’ in the user profiles.
What are you using for bbPress signatures?
In reply to: Porting Existing Forum Into bbPressCustomizing the example.php file is what will map your existing SQL database tables and fields to the required bbPress tables and fields to import your data.
I am slowly getting some docs up on the codex, though these need updating.
In reply to: bbPress 2.2.4 ReleasedIt is limited to embedding a linked image only.
GD bbPress attachments is fully compatible with bbPress 2.2.x as far as I know.
https://wordpress.org/extend/plugins/gd-bbpress-attachments/In reply to: Problem to convert Simple Press to bbpressYou need to be using bbPress 2.3 for the SimplePress import module to be included with bbPress
You can download the bbPress 2.3 beta 2 from here: