Neil
Forum Replies Created
-
Hi @noruzzaman, thanks a lot for the detailed tips. JS console shows no errors, cache is clean, no server-side errors logged, no browser addon conflict… But testing another theme, the issue does not happen. So, I’m sure it’s got to do with Softwerk. Since I’m not much familiar with this theme, I better contact their support about this issue. Thank you again!
Forum: Fixing WordPress
In reply to: Disable post revisions and autosaveAs I mentioned in my 2nd post, I found how to disable revisions without a plugin, but it requires editing one of the core files which is not a recommended thing. Other than that, to delete already created revisions you can do that manually in PHPmyAdmin (wouldn’t take more than a couple of minutes if you have a couple hundreds of them) or look for a plugin to do that and then remove the plugin because the revisions will be off afterwards.
Forum: Fixing WordPress
In reply to: How does WordPress prevent directory listing?Thanks. I always thought WordPress had an internal mechanism to prevent directory listings, now after your reply and checking some more WordPress sites, I see that it doesn’t.
Forum: Hacks
In reply to: Filtering post via emailSorry, I tried to update the question but there was an error. Anyway, the way I have it, it worked. Just took a little longer for the post sent via email to show up on the dashboard. I will keep in mind your suggestion about not editing core files. Thanks.
Forum: Fixing WordPress
In reply to: Disable post revisions and autosaveThanks for the input but I already tried it a couple of times and it didn’t work. I am using 3.4 maybe the way the constant is defined is changed. Anyway I found the file to edit:
wp-includes\default-constants.php
if ( !defined('WP_POST_REVISIONS') ) define('WP_POST_REVISIONS', true);Changing “true” to “false” did the trick.
This is why I don’t want to use a plugin for every simple task. Change just one word and it is done. Now I am looking for how to disable the autosave.
Forum: Hacks
In reply to: Not found or invalid function errorThanks for the link, I guess I should have started learning from that page.
Forum: Hacks
In reply to: Not found or invalid function errorHi,
Thanks for the reply, “$this” didn’t work and I found the answer on http://codex.wordpress.org/Function_Reference/add_submenu_page
Now I have
add_menu_page( 'Plugin Settings', 'Settings', 'manage_options', 'plugin-slug', array( __CLASS__, 'settings' ) );and it works.
Sorry, I am new to all this, what does “you instantiate the class, but then hook to the static methods.” mean? Why should I keep everything in the plugin class? What problems could happen?
Thanks a lot.
Forum: Everything else WordPress
In reply to: Is it possible to view all posts of a blog?Do you mean show all posts in someone else’s blog
Yes.
Forum: Everything else WordPress
In reply to: WordPress coding standardsThanks for your ideas.
Forum: Fixing WordPress
In reply to: "Mark as Spam" – shall I?If you set up your spam folder to auto-purge, it’s fairly close.
auto-purge? How can I?
Forum: Fixing WordPress
In reply to: "Mark as Spam" – shall I?Navigate to Settings -> Discussion and scroll about halfway down the page.
I know that, but this is not what I asked. The blacklist marks the comments as spam. What I asked is if there is a way to block comments from certain domains so that I will not bother deleting them from the spam folder.
For example, something like this:
If comment website field includes websiteA.com, do not accept that comment and give an error to the visitor. A plugin maybe?
Forum: Fixing WordPress
In reply to: "Mark as Spam" – shall I?No. If I use it will it report spam comments to Akismet? And, for example is there a method for blocking domains from posting comments on my blog?
Forum: Fixing WordPress
In reply to: A small issue with Linkubaitor plugin.Hi Jae,
Thank you very much for the update. It works great now.
Nail
Forum: Fixing WordPress
In reply to: A small issue with Linkubaitor plugin.Any update on this?
Forum: Fixing WordPress
In reply to: How to Add a Line into a PostOk, found the solution. There was a line in the CSS file something like
hr {display:none}Removing it fixed the issue.