jrandomh
Forum Replies Created
-
I had to add this to Checkout page CSS to force it to show
.payment_method_s4wc {display:initial !important;}I had to add this to Checkout page CSS to force it to show
.payment_method_s4wc {display:initial !important;}Forum: Fixing WordPress
In reply to: Won't allow user login (forces a reauth)Switching from HHVM back to PHP5-FPM sorted this out.
I suspect something to do with batcache/memcache – I had some “f_mkdir/nnnn: Permission denied” errors in the HHVM log, but there isn’t a clean timeline link between them.
Forum: Fixing WordPress
In reply to: Remove classes from post_class()Here’s the fix – minor tweaks are double quotes and removal of brackets.
function jrh_post_names($classes) { $classes = array_diff($classes, array("tag-link", "tag-links")); return $classes; } add_filter('post_class','jrh_post_names');Forum: Fixing WordPress
In reply to: How do I make my CSS work with admin bar?Awesome, that worked (with top:4% rather than margin-top)
Thanks 🙂
Forum: Plugins
In reply to: Enable user task completeI’m thinking about writing this as a plugin.
Forum: Fixing WordPress
In reply to: Visual Editor appears as HTML in 2.9Hi guys,
update for me – issue was local – TinyMCE files were corrupted in upload, I deleted and re-uploaded wp-includes and it all working 100% now.
Cheers,
J. Random. H.Forum: Fixing WordPress
In reply to: Visual Editor appears as HTML in 2.9Exact same issue on WP 2.9.1. Haven’t found many other reports.
This is a showstopper issue for us – is it possible to downgrade to WP 2.8.6 and use the same database (as it “upgraded” when installing 2.9)?