bigneno
Forum Replies Created
-
My temporary fix to reverse the timebox scroll direction (in the github version):
1. edit assets\js\vendor\datetimepicker\jquery.datetimepicker.full.js
2. change the minus sign to plus sign in: (line 898) top = top – (event.originalEvent.deltaY * 1);
3. minify the file
4. save the file as jquery.datetimepicker.full.min.js@carlosmoreirapt, please let us know when you fix this in your plugin. Thanks!
Forum: Plugins
In reply to: [Regenerate Thumbnails] Can I add custom action or filter?My mistake, it does fire wp_generate_attachment_metadata.
Hi,
at any point. I had to turn it off.
I tried to add if(is_object(…)) check at the beginning, but the errors repeat multiple times in that file.
The previous version of the plugin (old name) was completely OK.Forum: Plugins
In reply to: [Advanced Editor Tools] modify fontsize_formats?Those values are in /plugins/tinymce-advanced/tinymce-advanced.php file (editing works), but I don’t want to edit it on every plugin update
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] This Plugin Breaks Embedded Google Maps (2014)iframe#myid means:
<iframe id="myid" src...Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] This Plugin Breaks Embedded Google Maps (2014)@zonetrap
You can paste it into header.php or into specific post’s text editor.Make sure you have jquery library enabled. Change #map to #YourIframeID.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] This Plugin Breaks Embedded Google Maps (2014)This plugin replaces https sources (src) with non-https.
Here’s my working solution via jquery:
<script> jQuery(document).ready(function($){ $('iframe#map').attr("src", $('iframe#map').attr('src').replace("http:","https:") ); }); </script>Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Breaks Google MapsHere’s my working temporary solution via jquery.
<script> jQuery(document).ready(function($){ $('iframe#map').attr("src", $('iframe#map').attr('src').replace("http:","https:") ); }); </script>Forum: Plugins
In reply to: [BulletProof Security] Problem with questionmark at end of URLThank you for your quick reply and for a great plugin!
Forum: Plugins
In reply to: [BulletProof Security] Problem with questionmark at end of URLSame issue here, users get 500s on empty questionmark, please remove this rule in future updates.
If I copy the whole section “CUSTOM CODE BPSQSE BPS QUERY STRING EXPLOITS” to custom code and comment out only one line, how will I know that there’s nothing new in other lines of this section on a plugin update.
Is there any way to compare my current customized htaccess with any new one after plugin update?
Should I clean all custom code, copy new sections and edit it (comment out lines etc) on every plugin update?
ThanksForum: Plugins
In reply to: [WP Super Cache] How to disable cache if specific cookie exists?OR maybe there is a way to send a cookie which simulates logging in to disable WPSC.
Please help.Forum: Plugins
In reply to: [BulletProof Security] Different paths to check in security statusThanks!
Forum: Hacks
In reply to: Wierd AJAX/session issue – sessions being emptied on ajax callHi, have you solved this problem? My ajax/$_session script also works OK on localhost, but not on a web server.
Forum: Plugins
In reply to: [WP-Admin Search Post Meta] Result displayed multiple times.Permarad is right – there is a bug.
This happens when you have many postmetas attached to one post (even hidden with keys starting with “_”) . This plugin uses only one LEFT JOIN.Each postmeta key-value pair has it’s own row in postmeta table, so this plugin should generate a JOIN query for each pair, not just one.
For example:$join .= "LEFT JOIN (SELECT post_id,meta_value FROM $wpdb->postmeta WHERE meta_key='_firstkey') meta1 ON $wpdb->posts.ID = meta1.post_id LEFT JOIN (SELECT post_id,meta_value FROM $wpdb->postmeta WHERE meta_key='_secondkey') meta2 ON $wpdb->posts.ID = meta2.post_id ... ... $where .= " OR ( meta_value LIKE '%{$wp->query_vars['s']}%' ) ";You should modify this plugin to use ONLY ONE user-defined postmeta key or build a large JOIN query for all existing postmeta keys.
Hope this was helpful.
Forum: Plugins
In reply to: [BulletProof Security] Plugin settings don't load on locahostThank you for all your answers.