Makapaka
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-LESS] Sourcemapsjust created pull request adding sourcmap generation
https://github.com/oncletom/wp-less/pull/107
If You can’t wait for pull request beeing approved just clone/download my fork of WP_Less https://github.com/gitowiec/wp-lessForum: Plugins
In reply to: [WP-LESS] SourcemapsHi
What’s going on with this topic?
I mean WPLess 1.8 is able to pass configuration to Less compiler or still no chance?
I have to use sourcemaps and I don’t know should I change WPLess myself or download 1.8 version?Forum: Reviews
In reply to: [WP Term Images] No magic, well written, straight to the solutionForum: Reviews
In reply to: [Events Made Easy] Garbage plugin with no directionsI partially agree with jholmes1, but if one will spend enough time digging into options of this enormous plugin it is possible to configure everything in Eme. I did it, used spare time through few months, but it is possible. Looking into the code helps sometimes (and sometimes scares)
Forum: Plugins
In reply to: [Disable All WordPress Updates] does not seem to be workingFor the themes and core You have to cope Yourself, sorry but I have no time. I think that resolution is very similar – just analyze file /wp-includes/update.php – lines around numbers 295 and 455 and another one which I don’t remember.
I think that this bug came out because of problems with Internet connection between my home and api.www.ads-software.com – sometimes there is a connection lag which makes WP http-query object throw exception with message ‘An unexpected error occurred. Something may be wrong with www.ads-software.com or this server’s configuration.‘ – that’s how I got it.
Forum: Plugins
In reply to: [Disable All WordPress Updates] does not seem to be workingOK this is how I resolved problem:
1. Edit plugin’s file ‘disable-updates.php’, at very begging right after
PHP opening markup “<?php” add:require_once realpath( __DIR__. '../../../../wp-admin/includes/plugin.php');
2. Edit constructor of the object’s class OS_Disable_WordPress_Updates:
Right at the constructor’s start add:foreach (get_plugins() as $file => $pval) { $this->__pluginsFiles[$file] = $pval['Version']; }
3. Edit last_checked_now method, add:
$current->checked = $this->__pluginsFiles;
That’s it!
* This is quick and dirty, call it brown, but it works.
Forum: Plugins
In reply to: [Disable All WordPress Updates] does not seem to be workingI agree with shazdeh, plugin doesn’t work correctly with WP4.1 on localhost or vbox machine (ip 192.168….),
Plugin should stop file /wp-includes/update.php
to connect with outside (The Internets)
on line 295 (URL https://api.www.ads-software.com/plugins/update-check/1.1/)
and on line 455 (URL https://api.www.ads-software.com/themes/update-check/1.1/)Forum: Plugins
In reply to: [Simple Lightbox] SLB doesn't workAnd one more thing, could You please remove all value assignments by reference where it cause STRICT WARNING?
When in development process it really hurts my eyes to see all that
warning messages “Strict Standards: Only variables should be assigned by reference”Forum: Plugins
In reply to: [Simple Lightbox] SLB doesn't workThat’s right! I removed http password and the SLB is all right.
But how come? How that password blocks access to plugin files in WP?
Could You please explain or provide reference where I could learn about
this behaviour?
Thanks in advance an Best regards