Forum Replies Created
-
In reply to: Cleaning Up Forum Sub-Forum
On your dashboard, go to ‘Tools > bbP Toolkit’
Under the ‘bbPress Information’ button you can tick
Do not show the counters next to the subforums on the forum index page (v1.0.5)
And then put the
Change the separator between the subforums on the forum index page to:
to ‘newline’Pascal.
In reply to: Topic answer – proble with font alingmentKalimera,
Strange, mostly width 100% is needed, but it’s because of the width 100% that you have this issue 🙂
Try to add the following CSS:
#bbpress-forums div.reply { width: auto; }
Pascal.
In reply to: When Click “Register” Receive ErrorHi,
Your message seems to relate to BuddyPress ? Then please try on their forum to get a correct response.
Pascal.In reply to: Topic answer – proble with font alingmentHi,
That’s a typical issue with some themes. You probably need a CSS like width: 100%
Is it a public site ? If so, please post the URL so we can have a look.
Thanks, Pascal.In reply to: Double Click to Follow Forum LinksHi,
Using Chrome standard tools, I saw you run into a warning ‘Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience.’I arrived on https://wordpress.org/support/topic/heatmap-xmlhttprequest-deprecated?replies=5 so as you confirmed you have WP Slimstat installed and switching it off, the URL clicks are working fine, you will have to check on their forum.
Pascal.
In reply to: Double Click to Follow Forum LinksI tested Chrome and IE11, but anyway it should work in all browsers. I have been trying to check around, but have no idea ! Any plugin that would be delaying things ???
As you we are talking tuning, launch your website also on https://gtmetrix.com/ . It will indicate some performance improvements (but this should have nothing to see with the issue you experience now)
Pascal.
In reply to: Cleaning Up Forum Sub-ForumDid you try just ADDING it to the end of the file in the editor and saving it ?
Pascal.In reply to: Admin Bar Menu EditingHi,
No dumb questions here…As you might have seen in your database, the ID field is a bigint, so to continue on the IF that you used, you could go for:
$myadmins = array(1, 2); // Add all IDs of the admins in this array if ( !in_array($current_user->ID, $myadmins) ) {
Pascal.
In reply to: Multiple password protected forums on one site?Indeed,
That plugin I use everywhere. Check also Members from Justin Tadlock.
With those 2 you can secure all that is needed, based on roles and access to forums.
Pascal.In reply to: Auto reply to topics after a certain time periodHi,
I’m not aware of any plugin for this, but just to elaborate a bit… Let’s say you set 1 hour:
– Would this message be on every topic, or only on the ones that do not have a reply yet within the hour?
– Only once I suppose, not every hour?
– Should the topic owner be notified?
Pascal.In reply to: Double Click to Follow Forum LinksIncorrect.
You don’t need to double-click, just click once. But it takes 1 or 2 seconds before it starts redirecting. Not sure what it is …
Pascal.In reply to: Converter for Dizkus ForumsIf you look for a coder concerning WP/bbPress, don’t forget to post on http://jobs.wordpress.net/
Pascal.
In reply to: Admin Bar Menu EditingHi,
Are you sure your $current_user already has data at that moment ?Just before your if statement, try to run
get_currentuserinfo();
And just to make a quick test, you could always echo the ID just after running the above function to verify
echo 'User ID: ' . $current_user->ID . "\n";
Pascal.In reply to: How to disable participants in creating topic?Hi,
If it can help, my ‘bbP Toolkit’ plugin can lock down (protect) forums based on roles. So you could e.g. leave it up to admins and moderators to create topics, but let all others reply.
Pascal.In reply to: WordPress Import from PHPBBHi,
If you have bbPress 2.5.8, you should have ‘Tools > Forums > Import Forums’.
If you start from scratch, know that version 2.6-alpha has better import functionalities. Although already very stable, as it says, it’s still alpha version.
Pascal.In reply to: Strings not translated with .mo and .po filesHi,
So you have bbPress translated into CZ if I understand correctly ?
If so, would you mind helping with the translation for the whole CZ community ? https://translate.wordpress.org/locale/cs/default/wp-plugins/bbpressIf you are interested, I can guide you on becoming PTE for bbPress, let me know. Then you can import you .po file and everybody can have bbPress in CZ then !
Thanks,
Pascal.In reply to: Plugin to show Last PostHi,
You could do this by copying the bbPress php file needed to a (child) theme and then modify it accordingly.
More info here: https://codex.bbpress.org/themes/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/
Pascal.In reply to: Hide SubForums details From Main PageHi,
I see what you mean. That’s not possible in the current version, but let me see in one of the next ones…
Pascal.In reply to: Hide SubForums details From Main PageHi,
Check if my ‘bbP Toolkit’ plugin can help you. It has the following option: ‘Do not show the table with the list of subforums, only show the current forum and the topics’.
Pascal.In reply to: Forums Page LayoutHi Brandi,
Did you try to add the above CSS somewhere in your theme’s options ? There should be a place where you can add it.
Pascal.
In reply to: Import data from Drupal 6.x Advanced forumDid you run the repair tools ?
From ‘Tools > Forums > Repair Forums’Pascal.
In reply to: Activity Stream Privacy IssueIt seems I cannot see the contents of that page, so you might have found it ?
Your initial request was to put security on a page, so Members from Justin Tadlock is my personal preferred one.
However I now get the impression you want to secure forums, not pages ? In that case also check bbP Private Groups.Pascal.
In reply to: Remove the light yellow box on topWithout checking the site itself, I don’t really know where it would be coming from… Did you create a child theme ? Did you modify your functions.php ?
In reply to: Breadcrumb and wrapper issueHi,
Just some ideas:
– Did you try with a standard WP theme (to make sure it’s not your theme) ?
– Do you have more then 1 shortcode on that page ?If the site is public, a URL would be great…
Pascal.
In reply to: Making bbpress forum as a catalogHi,
I don’t think that bbPress is the best option for that. I think you are more looking for an ads/classifieds plugin.
Pascal.