Geoff Palmer
Forum Replies Created
-
Thanks Glen, yes it did.
Excellent plugin, by the way. Thanks for all your hard work!
Forum: Fixing WordPress
In reply to: Get rid of Gutenberg welcome messageThanks, Kyle! That’s done it. I knew there had to be an option somewhere.
Forum: Themes and Templates
In reply to: [evolve] Add new page or new post, comes up blankCorrection! Although Classic Editor brought up a screen, I could only enter a Title and nothing else.
Switching off all plugins didn’t work, but changing themes did! Turns out the Revenue theme is suddenly broken for entering new posts. It still seems to work for everything else.
Another note: turning on WP_DEBUG didn’t help with this. Or writing errors to debug.log.
Forum: Themes and Templates
In reply to: [evolve] Add new page or new post, comes up blankSame here, Neilll. Deactivate Gutenberg, activate Classic Editor and I can add a new post.
Gutenberg was fine last week so something’s changed.
Excellent, thanks for that. It worked perfectly!
Now, onward testing Blog2Social. So far it’s looking very good …
Geoff
Forum: Fixing WordPress
In reply to: How to get rid of “Your corresponding translation file is …”Thanks James. Turns out it was one of the plugins.
And thanks for the tip about Health Check. A very useful plugin!
Forum: Fixing WordPress
In reply to: Sorry, you are not allowed to preview drafts.What worked for me: Deleting the browser’s cookies for the site I was working on.
Forum: Plugins
In reply to: [Polylang] “Sorry, you are not allowed to preview drafts.”What worked for me: Deleting the browser’s cookies for the site I was working on.
What worked for me: Deleting the browser’s cookies for the site I was working on.
Forum: Plugins
In reply to: [WP Social Sharing] How to exclude social buttons for a specific pageHi Pieter,
Hmms, that looks all right to me. Have you cleared the browser’s cache? Is your site using a cache — something like WP Super Cache? Is so, either clear it or deactivate it while you’re testing.
For reference, here’s the exact code I’m using on one of my own sites:
.page-id-1480 .social-sharing, .page-id-1481 .social-sharing, .page-id-1522 .social-sharing { display:none; }Cheers,
GeoffForum: Plugins
In reply to: [WP Social Sharing] How to exclude social buttons for a specific pageThe easiest way is to use CSS.
First off, find the page ID by hitting F12 in Firefox or Chrome to bring up the Developer Tools. The HTML will look something like this:
<body class="page page-id-#### ...(where #### is a number).
Now go to Appearance / Editor. Check it’s opened your Stylesheet — typically called “style.css” — scroll to the bottom and add this:
.page-id-#### .social-sharing { display:none; }Click the Update File button at the bottom, go back and refresh your page. The social sharing buttons should be gone!
You can add multiple page-ids to this piece of CSS, but remember to comma-separate them, like this:
.page-id-#### .social-sharing, .page-id-#### .social-sharing, .page-id-#### .social-sharing { display:none; }Forum: Fixing WordPress
In reply to: Permalinks only half-working@a.
That’s it! Forgot the file permissions!! Actually, 644 works fine — which I think is the defauilt.
Thanks for your help, Adam. Much appreciated. I’ll mark this “resolved”.
Cheers,
GroffForum: Fixing WordPress
In reply to: Permalinks only half-working@a,
Good point!
You’re right. It’s not actually being updated! Clearing it out and making a permalink change does nothing to it, despite the messge “Permalink structure updated.”
So why isn’t .htaccess being written? I’ve got wp_debug on but get no errors.