Forum Replies Created
-
In reply to: WP Sweep and Topic changelogs
no idea ! but I think you are there in terms of getting rid of 99.9999% !
In reply to: WP Sweep and Topic changelogsthe ‘term’ code deletes orphaned and unused stuff in the database. By definition these belong to nothing, so there is no bbpress relationship (or indeed other relationship) that you can select against
In reply to: WP Sweep and Topic changelogsI can’t see an option for tags in the code
In reply to: WP Sweep and Topic changelogsActually, this is the (I hope) correct code for revisions
foreach ( $query as $id ) { $post_parent_id = wp_get_post_parent_id ($id) ; $type = get_post_type ($post_parent_id) ; if ($type != 'topic' && $type != 'reply' ) wp_delete_post_revision( (int) $id ); }In reply to: WP Sweep and Topic changelogsif you go into the plugin and find
wp-sweep.php
find line 557 which says
foreach ( $query as $id ) { wp_delete_post_revision( (int) $id ); }and amend to
foreach ( $query as $id ) { $post_parent_id = wp_get_post_parent_id ($id) ; $type = get_post_type ($post_parent_id) ; if ($type != 'topic' && $type != 'reply' ) wp_delete_post_revision( (int) $id ); }that should do it
In reply to: Child Forums not showing on Index under Parentsbbpress is not particularly Xampp friendly, and without being able to see your site of ocurse it’s hard to start to problem find.
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: bbPress forum blank pagetry dashboard>settings>permalinks and just click save, that will, reset the permalinks
then come back
In reply to: Username is Participant?no problem … ignoring you …. 🙂
In reply to: How to use website login credential for forum login?if you have set
dashboard>settings>roles>Automatically give registered visitors the participant forum role
then registered users will on first login get that role and be able to access the forums
In reply to: Empty forum indexgreat- glad you are fixed
In reply to: Add placeholder to forum search input🙂
In reply to: Layout of my bbPress pages🙂
In reply to: Styling of “Latest Forum activity” widget🙂
In reply to: Empty forum indexyou have in-line css code that says
.bbp-forums { display:none }which means they don’t display, but the forum is there on the page.
I cannot see what is setting that, and in-line code cannot be overridden.
It may be your theme, or another plugin, so a setting you have in your theme or another plugin.
Have you added any plugins lately, or updated theme or plugins ?
In reply to: XAMPP bbPress “Internal Server Error 500”great !
In reply to: getting emails at Forum & Topic levelsyes !
In reply to: Styling of “Latest Forum activity” widgetalways a toss up – I can add endless options to my plugins or take judgements on what people want.
<span class=”bsp-la-text”>in </span> lets people translating change what they want. If I take then space out, then that is always there.
you can use
//This function changes the text wherever it is quoted function change_translate_text( $translated_text ) { if ( $translated_text == 'old text' ) { $translated_text = 'new text'; } return $translated_text; } add_filter( 'gettext', 'change_translate_text', 20 );to put in a : if you want it
In reply to: bbPress 2.0: designed for scale?not sure why you are asking on a bbpress forum – a bit like asking the Ford Garage about the best place to buy chrysler cars !
In reply to: Why is index sooooo slowis your site public ?
In reply to: Why is index sooooo slowso this forum has a greater number of posts, but loads fine.
Do you want to define ‘super slow’ in terms of seconds?
In reply to: Confirmation email overwriteI thought BNFW were fixing?
In reply to: bbPress 2.0 – Shortcodesno problem – glad you are fixed !
In reply to: bbPress 2.0 – Shortcodesok reverse your above changes, and then apply the same process to
form-topic.php
In reply to: Fatal errordo come back if you need further help
In reply to: Fatal errorthat’s a WordPress core function, looks like you site is having issues.
Suggest you contact your host provider and see what advice they offer. You might need to roll back to a previous backup if the site is corrupted.