Forum Replies Created
-
Thank you, I just cancelled the whole padding. It looks good now. Would you confirm this, hope I did not miss something?
#wp-link, #wp-link p { font-size: 15px; line-height: normal; } #wp-link h1, .h1, .title h1 { color:#000; } #wp-link .screen-reader-text, .screen-reader-text span, #wp-link .ui-helper-hidden-accessible { position: absolute; margin: -1px; padding: 0; height: 1px; width: 1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; word-wrap: normal!important; }
Dear Robkk,
the code is almost perfect. Thank you. Only the button text for the submit button is out of place, would you have another look?
Hej Robkk,
please use *** with password ***. I will delete this data rightaway, so only you will be notified with it via email. Sign in here: ***
Best
ManuelHi Robkk,
thanks for your suggestion. No, this code does not change anything, not even with !important after the font size.
Thank you all for your feedback. After some thorough investigation, I managed to finally configure my caching so that it actually works (never checked that… my mistake – I entered the wrong path in .htaccess). Also, I hard-coded some tweak in my theme, something which was only recently brought to my attention.
And this morning, one of our users finally had site load times of <1s on our forums. I can happily leave them on our main site – even if P3 reported bbpress & Associates as major sources of site load time: That it still is very little with good caching and static CSS/JS files in place (which I did not have before, they were computed on site load, thanks to my theme).
Best
ManuelIn reply to: Meta Title for Profile Pages w/ Yoast SEODear Terence Milbourn,
today I found time to try out The SEO Framework. Unfortunately, it does not offer the option to give my bbpress pages specific titles like Yoast SEO. It might check on that on some point in time again, but for the time being, I will stay with Yoast SEO.
Best
ManuelIn reply to: Meta Title for Profile Pages w/ Yoast SEODear Erik,
I now understand what’s happened. The other URL had our former user tag in it, which I replaced a while ago (nutzer -> benutzer). Now, the system tries to match this URL with whatever makes most sense – in this case, the image I used for myself (and named accordingly) on our front page. So, this is no profile page, but a media page. Look at the URL after loading, it will include the deeplink to our front page (which nobody should be able to see, except in this case).
Ciao!
ManuelIn reply to: Double Click to Follow Forum LinksThanks a lot for your assistance, Pascal. This is the Slimstat support thread.
In reply to: Double Click to Follow Forum LinksLet me be more precise: In Chrome, it does follow the link after some delay. But in Firefox, it does not. Me and most of my users use this browser, it is more common in Germany.
In reply to: Meta Title for Profile Pages w/ Yoast SEODear Erik,
unfortunately, you are mistaken. Have a look at our most active forums member – I was not able to do any of what you describe. If you are successful with the plugin recommended above (which is still on my to-do-list), or any other, I would be glad to hear from you again.
Best
ManuelThank you Brandon! It looks great!
It really had given me a white screen of death, or how it is called…
Well, thanks, Brandon! It shows right underneath the profile box, that is a good spot for it. Could you also tell me how to put the notice box in line with the rest of the fields?
(Image not working? Here is the link)
In reply to: Freshness broken (Multisite issue)Hi,
thanks, I did just that! https://bbpress.trac.wordpress.org/ticket/2909#ticket
~ManuelIn reply to: Freshness broken (Multisite issue)So, after further testing, I can indeed confirm what I found yesterday. It is a bug, from my point of view, since changing forum descriptions can hardly be counted as activity in the forum itself. That means mixing up meta and operative level. (And I don’t think it is a MS issue at all, could anyone test that in a single install?) Could be something for 2.6, then.
In reply to: Freshness broken (Multisite issue)@Johnnieasear: To me, MS is the future of WP. Why have one site, if I can have at least one more for testing purposes? That was what I thought about before setting up my network. Of course, that means mostly styling tests, since plugins are integrated with the network and some plugins can only be (de-)activated on network level, so testing is limited. But still.
Do you refer to this Guide? “Extensive” would too far-fetched a word for that, in my opinion. It’s more of a brief overview. Useful, of course. 🙂
In reply to: Meta Title for Profile Pages w/ Yoast SEOThank you, I will have a look! At the moment I’m happy everything is running, but it is on my list. Thanks for taking the time.
In reply to: Freshness broken (Multisite issue)I have a suspicion. It could be that if I edit the forum description, possibly also the title, the Freshness gets reset to first post in the newest topic for this particular forum. Will keep watching.
Thanks for updating me about 2.6. Pity you have to do work again, only because main broke it!
Regarding push, I was told that dev is not pushed out to the users, only stable, and I only updated dev. So no wonder why dev is not pushed.
In reply to: Freshness broken (Multisite issue)Not currently we have one, no. And still, I doubt that I could replicate the conditions, with users and replies and cross-testing all this with our 40 plugins, one by one for days each.
Well, I’ll watch the Freshness closely and come back to this thread if it does not resolve itself. Thank you for being there for me!
In reply to: Freshness broken (Multisite issue)Uhh, that is a tricky one. We have so much parts that work together, not least the firewall and security plugins. I cannot run the website and test bbpress behaviour for hours or days without any of them. Also, I can’t imagine how any of them could interfere with bbpress. It usually isn’t about plugin conflicts, if such tiny details get wrong. Come to think of it, it never really is about plugin conflicts in my experience, whenever something is wrong on the website.
Do you see any other way to test this?
In reply to: Freshness broken (Multisite issue)Update: It’s been 8 hours, and we had some new replies since. However, after some hours, they disappeared from Freshness view again on the main forums page, again showing the threadstarting posts. Meanwhile, the remnant of my thread in the lowermost forum has disappeared.
So somehow, there must have been a recalculation, and it had one good and several bad outcomes for my Freshness accuracy.
Hi,
we are just discussing this in Slack. I only translated dev, but not stable. And honestly, I see no point in manually copying every new and changed string from dev to stable, as was suggested there. This could take hours again, only to be obsolete soon.So, when is bbpress 2.6 due? Is this correct, that then the dev translations become the new stable?
ManuelIn reply to: Changing name of "Key Master"I wanted to change two titles, so I wrote this (had to take the translated strings though, so this fix will fail again when roles are renamed in bbress or our locale):
function my_custom_roles( $role, $user_id ) { if( $role == 'Teilnehmer' ) return ' '; return $role; } add_filter( 'bbp_get_user_display_role', 'my_custom_roles', 10, 2 ); function my_custom_roles2( $role, $user_id ) { if( $role == 'Keymaster' ) return 'Administrator'; return $role; } add_filter( 'bbp_get_user_display_role', 'my_custom_roles2', 10, 2 );
It doesn’t say anything in the Codex about “don’t you dare activate on network once you activated on subsite only, you will never again be able to activate on subsite only”. I looked.
However, I am not 100% sure that I first activated on subsite only. Maybe I only thought so, and am now back to original configuration: network yes, subsite no.
Sooooo… I have to have bbpress activated on both MS subsite AND network admin (not root site) to have it all working again.
EDIT: Only network activated is sufficient. I do *not* have to activate on subsite first, network second.
Did I miss something here? Were these instructions I should have followed all the way?