Forum Replies Created
-
In reply to: Non-members can view private forums
@robkk ?
In reply to: Import from PhpBB Issues – WordPress database error5.3 is a bit lower, but should not be the issue (I think).
What plugins do you have ? Any white/blacklisting ? Please close down all possible plugins.
Pascal.
In reply to: Cannot see option to subscribe to a forumAre you sure there is no ‘Subscribe’ just next to the breadcrumbs ?
Can you send a screenshot or a link so we can see ?Pascal.
In reply to: Forum Empty ErrorPlease check in the backend. Is your forum set to public (and not closed or private) ? Is the topic not in spam or unpublished state ?
Pascal.
In reply to: Help with bbPress structureMultiple possibilities:
1) Install my ‘bbP Toolkit’ plugin
2) Check Robin’s ‘bbp style pack’ plugin
3) See the codex : https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#1-change-how-the-forum-list-displaysPascal.
In reply to: Import from PhpBB Issues – WordPress database errorThat’s not giving your PHP version…
MySQL is not the recommended one, but should be ok. Could you have another look for PHP ?
If you don’t find it, install my toolkit plugin that will tell you the PHP version in the ‘basic system info’: https://wordpress.org/plugins/bbp-toolkitPascal.
In reply to: SidebarIt seems you have answered your own question correctly 🙂
In reply to: Non-members can view private forumsHi,
https://wordpress.org/plugins/bbp-private-groups/ is what I use and it prevents the search for private forums.
Pascal.
In reply to: Import from PhpBB Issues – WordPress database errorCan you please give me your PHP and MySQL version ?
In reply to: bbpress login positionHi Sander,
You seem to have the pro version of SKT healing touch theme, so I would propose to ask them what to put exactly, but you will have to load the sidebar first and then the content. An example (for genesis) is here: http://www.billerickson.net/code/move-sidebar-content/Pascal.
PS: Kom gerust op slack, HowTo staat op casier.eu/wp/slackHi,
Activity streams and group forums are BuddyPress specific, not bbPress. So better ask on their forum.
Blogging is WordPress, not bbPress.So I’m sure that for what you want to do, the WordPress platform seems what you need. But for sure to accomplish what you want, you will need to have different plugins and maybe coding help.
Pascal.
In reply to: Add view count to forum and topic pages?Hi,
If it creates an error, then I would advise to open a thread on the support forum.
There is an alternative plugin that was discussed in this thread: https://bbpress.org/forums/topic/new-feature-viewhit-counts/Pascal.
In reply to: Import from PhpBB Issues – WordPress database errorHi,
I suppose you tried with 2.5.8 ? If you are starting now, I would advise to consider 2.6 (https://bbpress.org/download/). It’s still alpha but will soon be released. It offers better performance and better import capabilities.Let me know.
Pascal.In reply to: change “forums” headerHi Biorn,
Create a standard WordPress page and put the slug ‘forums’. Creating this page will override the standard page that comes out.
You can then add the [bbp-forum-index] shortcode on that page (see https://codex.bbpress.org/features/shortcodes/) and change the title of your page.
Pascal.
Hi,
It’s on my list, but I’m fully busy professionally this week. Will try some evening however !
Pascal.In reply to: Create similar topics to several forums at onceYou’re welcome, glad it helped.
Pascal.In reply to: Better WYSIWYG text editor?Hi @thinkDrew,
If it can help, a basic tinyMCE can also be activated in my bbP Toolkit plugin.
Pascal.
In reply to: bbpress login positionGoede middag Jeroen,
It’s probably just a CSS setting. Could you please post a link to the site here so we can have a look ?
Pascal.
PS: Ben je al op slack NL samen met andere WP fans ?In reply to: Multi option for selectingHi,
This is a bbPress forum, what is your exact question related to bbPress ?
Pascal.In reply to: Reverse Title OrderHi,
Copy this code into your functions.php:function casiepa_bbp_has_topics() { $args['order'] = 'ASC'; // 'ASC' (Ascending), 'DESC' (Descending, Default) return $args; } add_filter('bbp_before_has_topics_parse_args', 'casiepa_bbp_has_topics' );
Pascal.
In reply to: Importing Large Xenforo ForumIt seems the topic is connected ok, but not the replies.
In reply to: Create similar topics to several forums at onceAdd this in your functions.php or in a plugin:
add_filter( 'manage_edit-forum_columns', 'casiepa_edit_forum_column' ) ; function casiepa_edit_forum_column( $columns ) { $columns['id'] = __('ID'); return $columns; } add_action('manage_forum_posts_custom_column', 'casiepa_manage_forum_columns', 10, 2); function casiepa_manage_forum_columns($column_name, $id) { global $wpdb; switch ($column_name) { case 'id': echo $id; break; default: break; } // end switch }
It will add the ID column when you go in your Dashboard to ‘Forums’.
Pascal.In reply to: Vertical alignment of textIf somebody has Safari already installed, maybe they can help ? It will need some specific CSS I suppose.
PS: casier.eu/wp/slack en dan naar de BE slack.In reply to: Vertical alignment of textI’m not on Apple, so won’t be able to help you, sorry.
PS. Nog niet op WordPress Belgium ?In reply to: Vertical alignment of textGoede middag,
Is your link http://www.wfcfotovisie.be/forums/ ? On Chrome it seems to be ok.
Pascal.