ODAK71
Forum Replies Created
-
Forum: Plugins
In reply to: [wp-Typography] Problems related to today’s update, March 18 2017Similar problem with the newest version 4.1.0 here – all very, very slowly after update. Before version: 4.0.2. PHP 7.0 with OPcache and wp-rocket.me as Caching Plugin.
Because WP Rocket has a good caching “engine” – can I disable the wp-Typography built in caching via a config parameter?
Forum: Plugins
In reply to: [Wordpress File Upload] Targert folder doesn't existI made a german translation of the actual .pot file, if you like, I can sent it to you, if you give me an email adress, i’m not an professional translater, but the tranlation is usuable and better than the englisch version for german users.
Forum: Plugins
In reply to: [Wordpress File Upload] Targert folder doesn't exist[wordpress_file_upload uploadpath="/Pfad/zur/datei/" maxsize="180" createpath="true" accessmethod="ftp" ftpinfo="login:[email protected]" useftpdomain="true" ftppassivemode="true" dublicatespolicy="maintain both" uniquepattern="datetimestamp" placements="title/filename+selectbutton+uploadbutton/progressbar/message" uploadtitle="Dateien Hochladen:" uploadbutton="Hochladen starten" successmessage="%filename% erfolgreich hochgeladen" errormessage="%filename% nicht hochgeladen" waitmessage="%filename% wird hochgeladen" notify="true" notifyrecipients="[email protected],[email protected]" notifysubject="Datei-Upload Hinweis" notifymessage="Hallo,%n%%n%Das ist eine automatisch generierte Nachricht.%n%%n%Gerade wurde die Datei %filename% per FTP hochgeladen. Sie findet sich unter folgendem Pfad:%n%%n%%filepath%%n%%n%MfG%n%Das Upload-Script ;-)"]
Forum: Plugins
In reply to: [Wordpress File Upload] Targert folder doesn't existHello, same Problem here: Target folder doesn’t exist.
But the folder real exists und the shown path ist correct in Admin Message – but there comes the message, that is not exists.
Older Versions of the Plugin are working; the last 2 or 3 not.
The ftp-Server accept only connections to the right upload folder, other connection trys will canceled by the ftp server.
Forum: Plugins
In reply to: [Highlight Search Terms] Did not workingGladly. Thank you very much for your coding work!
How about to set jquery classes and IDs via an setting field in backend?
Till now all user, which has individual classes and IDs set in the plugin must adapt it on every update of the plugin manually.
Forum: Plugins
In reply to: [Highlight Search Terms] Did not workingadd_action('wp_head', array(__CLASS__, 'query'));
was the solution. Thanxs.
Forum: Plugins
In reply to: [Highlight Search Terms] Did not workingI have the same problem.
Forum: Plugins
In reply to: [Contact Form 7] not-valid-tip-message in non-js-way although active jsHere is the Solution:
The Flickering was a problem in my CSS-File.
Change the custom CF7 CSS of not-valid-tip to:
span.wpcf7-not-valid-tip { color: #f00; /* or any else other font color */ font-size: 10pt; /* or any else other font-size */ display: block; }
Change in plugins/contact-form-7/includes/js/script.js the
$.fn.wpcf7NotValidTip = function(message)
to$.fn.wpcf7NotValidTip = function(message) { return this.each(function() { var into = $(this); into.append('<span class="wpcf7-not-valid-tip">' + message + '</span>'); }); };
this means: remove the following lines in this function:
$('span.wpcf7-not-valid-tip').mouseover(function() { $(this).fadeOut('fast'); }); into.find(':input').mouseover(function() { into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast'); }); into.find(':input').focus(function() { into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast'); });
Forum: Plugins
In reply to: [Contact Form 7] not-valid-tip-message in non-js-way although active jsPerhaps I have a solution. I will test it and write the solution tommorow here.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] complex HTML-email autopThanx!