Forum Replies Created
-
In reply to: User registration on multisite
👍🏻 By the way we can translate mentioned (my) article to English and publish on Smashing Magazine or WP Tavern… All we need is native english speaker which can checkout my english version and correct my errors (mistakes).
In reply to: User registration on multisiteHi @mairag. Updated step by step tutorial with working source code example available in next article https://wpmag.ru/2015/wordpress-multisite-signup/ (on Russian but you can use Google Translator to translate this) 🙂 Inside article you can find the links to Github with source code. Feel free to leave any questions here.
In reply to: notify me about new replies via emailthis chechbox changed when user send a reply and click Submit?
Right. To unsubscribe without posting any messages you can click “unsubscribe” link at the top of page (your theme may not showing this block). Or you can manage your subs at profile page (
forums/users/YOUR_NICKNAME/subscriptions/
).In reply to: Topic ID instead of slugs?The plugin comes to wordpress org! Checkout https://wordpress.org/plugins/bbpress-permalinks-with-id/
Right now without auto flushing rules 😭
In reply to: how to change the post Permalinks?Already publish the plugin on wordpress org. Right now without automatically flushing rewrite rules https://wordpress.org/plugins/bbpress-permalinks-with-id/
In reply to: how to change the post Permalinks?Hi. The ending
/
(trailing slash?) added automaticly if you setup something like/news/%POST_ID%/
on the WordPress permalinks page. And not be added if no slash at the end —/news/%POST_ID%
. This works because I useuser_trailingslashit()
inside the code.BuddyPress group forums not supported yet. Something hardcoded inside and I not find the solution to this issue right now but I keep digging. 🙂
In reply to: how to change the post Permalinks?- Create folder
bbpress-permalinks-with-id
inwp-content/plugins
dir. - Download 1.0.3 version github . com / korobochkin/bbpress-permalinks-with-id/releases/tag/v1.0.3 (remove spaces bbPress forum doesn’t allow publish links)
- Unpack archive.
- Put
plugin
folder content into thebbpress-permalinks-with-id
. - Activate plugin.
- Flush rules by visiting
/wp-admin/options-permalink.php
page.
And after this in all bbpress permalinks for topics and forums will be using ID’s instead of slugs.
In reply to: how to change the post Permalinks?Looks like I can’t publish something here.
Yaaay. This plugin can help you but right now I trying fix some bugs so before i do that you need flush rewrite rules manually after activating it. This plugin will be available on wordpress org coming soon! 🙂
In reply to: how to change the post Permalinks?Yaaay. This plugin can help you but right now I trying fix some bugs so before i do that you need flush rewrite rules manually after activating it. This plugin will be available on wordpress.org coming soon! 🙂
In reply to: Hook to bbpress notificationsbbPress 2.5.6 have some changes with this. Filter
bbp_notify_subscribers
renamed tobbp_notify_topic_subscribers
.In reply to: bbPress on GithubHm. I can’t use this link like a bower component (something not work). But I find
https:// github . com/wp-plugins/bbpress.git
– pretty good and working with bower and you can set up something likehttps:// github . com/wp-plugins/bbpress.git#2.5.6
to set up vertsion.In reply to: How to share bbPress forum multisiteNo way. Each site stores forums and topic in his wp_ID_posts table.
In reply to: User registration on multisiteI’ve posted the long article about this question on my blog with source codes, examples and screenshots (on Russian language): https://korobochkin.wordpress.com/2015/02/10/rukovodstvo-po-sozdaniju-stranicy-registracii-v-multisajte/
In reply to: bbPress on Github@Robkk yep, I saw this. But this repo don’t have releases tags (for example 2.5.4)
In reply to: Layout in progressYep. I see facebook’s design here. But facebook’s interface is not example of good interface (don’t forget this) 🙂
In reply to: Layout in progressIn my opinion your templates have to many extra details. Checkout my super tiny and cleanest bbPress forum http://selenaselena.ru/community/talks/
In reply to: User registration on multisite@caneblu it is not a bug. wp-signup.php on the root site – is how WordPress working.
In reply to: Hook to bbpress notifications@andreippo Do not change the plugin files (bbPress). Use MU plugins or write your custom plugin. I use MU. If you write custom plugin make sure what all hooks connects in the right sequence.
Do not change the attributes passed to functions (they are correct). You can change logic inside functions and change the headers, title, text of outgoing emails.
selena_network_
is my multisite prefix used in all functions at armyofselenagomez.com and selenaselena.ru.In reply to: How to make tags page's url use id instead of name?Ooops. Its about topics and forums, not tags. 🙂
In reply to: How to make tags page's url use id instead of name?Finally we are got the solution!
Discussion bbpress. org/forums/topic/topic-id-instead-of-slugs/
Working plugin github. com/korobochkin/bbPress-permalinks-with-idIn reply to: Email notifications not working; looking for helpI’m also stopped recive the notifications by email after update… to 2.5.4 (not sure about version). This happens because new bbPress send one email to all subscribed people. I publish the solutions for another issue few weeks ago https://bbpress.org/forums/topic/hook-to-bbpress-notifications/#post-156426 but it also the solution for your issue.
In few words about my code:
- Disable default bbPress notifications (one email per all users).
- Add similar notifications but it sends one email per user and WordPress send it by using cron (not immediately).
P. S. I’m also using WP SMTP plugin to send email throw external SMTP server.
In reply to: bbpress.org got new style?I’m not sure that I completely understand that you say. But few weeks ago this super big green labels not appeared on the forums root at bbpress.org.
In reply to: bbPress on GithubThank you 🙂 I’m just trying to use this repository like bower_component. I can’t find SVN URL endpoint to using it in bower. Few examples from Bower API (bower. io/docs/api/#install):
svn+ssh://package. googlecode. com/svn/ svn+https://package. googlecode. com/svn/ svn+http://package. googlecode. com/svn/
I try use
svn+h t t p s : / / bbpress. svn. wordpress. org/
but it doesn’t work.P. S. I use a lot of spaces because bbpress. org doesn’t allow publish replies with external links.
In reply to: User registration on multisiteFix it. Just add
global $active_signup;
inselena_network_signup_main
. Already update this file on gists.github.In reply to: User registration on multisiteOh. Found another bug right now. In wp-signup.php and wp-activate.php exists global variables and in my main function they not defined. I’l publish the solution in the near future.
- Create folder