Forum Replies Created
-
In reply to: send passwords to registered users manually by admin
Have you checked the moderation possibilities of the ‘Theme My Login’ plugin ? You have the admin approval there …
Pascal.In reply to: Ask to change password at first connexionHi, there are multiple plugins that exist:
– WP Password Policy Manager
– Force Password ChangeCheck if something would fit your need.
Pascal.
In reply to: send passwords to registered users manually by adminHi,
Don’t know if it can fit your needs, but last time I had to create some users, I used https://wordpress.org/plugins/import-users-from-csv-with-meta/ . In a CSV file I have set their login, email and password (and some extra fields) and the plugin then sends the login and password to the user.
Pascal.In reply to: Topics and replies per pageHi Ian,
With reply threading enabled there is no pagination. Switch it off in the settings and see if that is what you want.
Pascal.In reply to: Login pageHi,
You could use the redirect feature of the login that results in a URL like this:
http://www.example.com/login/?redirect_to=http%3A%2F%2Fwww.example.com%2Fmyfolder%2Fmypage%2F
Pascal.
In reply to: bbpress shortcodes do not workGreat, happy to see you found it.
Pascal.Hi Vicky,
Does this help ?
<a href="'. wp_logout_url() .'">Log Out</a>
Pascal.Hi,
What you want to obtain is not just a basic setting in bbPress that you can switch on. It requires changing one of basic php files. As the golden rule is to never change any bbPress files directly, there are different ways of coming to what you want, in this case it would be copying the file from the bbPress folder/directory and modifying it. Information on creating a child theme can be found on the codex: https://codex.bbpress.org/functions-files-and-child-themes-explained/
Hope that helps,
Pascal.In reply to: No user password when they register?Did you activate moderation on TML and set it to none ?
Pascal.In reply to: bullets in front of everythingSo now that I have access, you fixed it, pffff 🙂
Glad you found it.
Pascal.Hi,
To remove the messages above and below, you could use CSS like:.bbp-template-notice { display: none; }
or use a plugin like bbP Toolkit.
To change the message so it includes the standard bbPress login, you would have to copy ‘bbpress/templates/default/bbpress/form-reply.php’ to your child theme and then adapt the file. On line 175 add:
<p> <?php echo do_shortcode ('[bbp-login]') ; ?>
so that it becomes:<p><?php is_user_logged_in() ? _e( 'You cannot reply to this topic.', 'bbpress' ) : _e( 'You must be logged in to reply to this topic.', 'bbpress' ); ?></p> <p><?php echo do_shortcode ('[bbp-login]') ; ?></p>
If you want to do something different, this is anyway the place to start from.
Pascal.
In reply to: bullets in front of everything@Robkk, I will leave this one in your hands as San Diego is closer to you then to me 🙂
In reply to: bullets in front of everything“Apologies, but the page you requested could not be found. Perhaps searching will help.”
Probably only available for registered users…
In reply to: Import data from Drupal 6.x Advanced forumGreat, keep us aligned !
In reply to: counts not automatically refreshingFor the issue: try to deactivate all plugins except bbpress and start activating one after the other to find the culprit…
For the questions on knowing about changes, I’m using ‘Simple History’ as we work with multiple admins, but there are probably others that exist.
Pascal.Glad it’s solved.
Pascal.That’s most probably a question for the buddypress forum and not for the bbPress forum, right ?
Pascal.In reply to: bullets in front of everythingHi kallard,
The best place to start from would probably be the bbpress codex: https://codex.bbpress.org/themes/
If you are not really sold on this theme, try to look for bbpress compatible themes to get started faster.
Pascal.In reply to: Possible to send replies to discussions via e-mail?Hi Alessandra,
I confirm that bbPress has all it need for subscription to forums (in case new topics are created) and to topics (to get notified in case of replies).
Pascal.In reply to: create menu style forums?Can this help ?
Or you are looking for something different ?
Pascal.In reply to: Pagination for Forums ListingHi,
Adding the snippet should at least help you with the pagination on the books-2 forum I think.
For the index, you might have to rethink it a bit, probably creating a different forum index page because I suppose your main categories of General,Author,Dedicated,Genre,Books will remain.
Anyway with that many books, I would put more attention to search possibilities then to the listing.
Pascal.In reply to: counts not automatically refreshingHi,
What happened about 2 weeks ago ? Any updates of plugins or themes ?From my experience, running the repair tools fixes this kind of issues in the database and after that from the moment a new reply or topic is created, all counters and refresh are having the correct one.
(second part of my phrase is important because of the current freshness bug in bbPress).Pascal.
In reply to: Intalling & Merging & Headaches, Oh My!Hi,
AFAIK, any import is ADDING records, so it will never erase what you already have.If you want to try yourself, there is always the custom import possibility: https://codex.bbpress.org/getting-started/importing-data/import-forums/custom-import/
Pascal.
In reply to: No user password when they register?Hi TallSam,
Securing your user base should always be taken seriously. Personally I’m using TML (Theme my login) with the recaptcha and the security options activated. Then I also use wangguard to check for sploggers.
Pascal.
In reply to: Private Discussions listed on public siteHi,
Are you using any plugins to keep things private ? I’m using bbP Private Groups and it seems to do what I expect from it.
But for your specific issue, I don’t see immediately what to do…
Pascal.