Title: bigneno's Replies | WordPress.org

---

# bigneno

  [  ](https://wordpress.org/support/users/bigneno/)

 *   [Profile](https://wordpress.org/support/users/bigneno/)
 *   [Topics Started](https://wordpress.org/support/users/bigneno/topics/)
 *   [Replies Created](https://wordpress.org/support/users/bigneno/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/bigneno/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/bigneno/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/bigneno/engagements/)
 *   [Favorites](https://wordpress.org/support/users/bigneno/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/users/bigneno/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/bigneno/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Availability Datepicker – Booking Calendar for Contact Form 7 – Input WP] Mouse Wheel don’t work correct!](https://wordpress.org/support/topic/mouse-wheel-dont-work-correct/)
 *  [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/mouse-wheel-dont-work-correct/#post-11771523)
 * 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](https://wordpress.org/support/users/carlosmoreirapt/), please
   let us know when you fix this in your plugin. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Regenerate Thumbnails] Can I add custom action or filter?](https://wordpress.org/support/topic/can-i-add-custom-action-or-filter/)
 *  Thread Starter [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/can-i-add-custom-action-or-filter/#post-9175841)
 * My mistake, it does fire wp_generate_attachment_metadata.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Quiz and Survey Master (QSM) - Easy Quiz and Survey Maker] php fatal error register_question_type](https://wordpress.org/support/topic/php-fatal-error-register_question_type/)
 *  Thread Starter [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/php-fatal-error-register_question_type/#post-6786329)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Editor Tools] modify fontsize_formats?](https://wordpress.org/support/topic/modify-fontsize_formats/)
 *  Thread Starter [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/modify-fontsize_formats/#post-6065552)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress HTTPS (SSL)] This Plugin Breaks Embedded Google Maps (2014)](https://wordpress.org/support/topic/this-plugin-breaks-embedded-google-maps-2014/)
 *  [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/this-plugin-breaks-embedded-google-maps-2014/#post-4875331)
 * iframe#myid means:
 * `<iframe id="myid" src...`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress HTTPS (SSL)] This Plugin Breaks Embedded Google Maps (2014)](https://wordpress.org/support/topic/this-plugin-breaks-embedded-google-maps-2014/)
 *  [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/this-plugin-breaks-embedded-google-maps-2014/#post-4875329)
 * [@zonetrap](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress HTTPS (SSL)] This Plugin Breaks Embedded Google Maps (2014)](https://wordpress.org/support/topic/this-plugin-breaks-embedded-google-maps-2014/)
 *  [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/this-plugin-breaks-embedded-google-maps-2014/#post-4875327)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress HTTPS (SSL)] Breaks Google Maps](https://wordpress.org/support/topic/breaks-google-maps/)
 *  [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/breaks-google-maps/#post-5485909)
 * Here’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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] Problem with questionmark at end of URL](https://wordpress.org/support/topic/problem-with-questionmark-at-end-of-url/)
 *  [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/problem-with-questionmark-at-end-of-url/#post-4551021)
 * Thank you for your quick reply and for a great plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] Problem with questionmark at end of URL](https://wordpress.org/support/topic/problem-with-questionmark-at-end-of-url/)
 *  [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/problem-with-questionmark-at-end-of-url/#post-4551019)
 * Same 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? Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] How to disable cache if specific cookie exists?](https://wordpress.org/support/topic/how-to-disable-cache-if-specific-cookie-exists/)
 *  Thread Starter [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/how-to-disable-cache-if-specific-cookie-exists/#post-4425609)
 * OR maybe there is a way to send a cookie which simulates logging in to disable
   WPSC.
    Please help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] Different paths to check in security status](https://wordpress.org/support/topic/different-paths-to-check-in-security-status/)
 *  Thread Starter [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/different-paths-to-check-in-security-status/#post-4091350)
 * Thanks!
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Wierd AJAX/session issue – sessions being emptied on ajax call](https://wordpress.org/support/topic/wierd-ajaxsession-issue-sessions-being-emptied-on-ajax-call/)
 *  [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/wierd-ajaxsession-issue-sessions-being-emptied-on-ajax-call/#post-3748982)
 * Hi, have you solved this problem? My ajax/$_session script also works OK on localhost,
   but not on a web server.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Admin Search Post Meta] Result displayed multiple times.](https://wordpress.org/support/topic/result-displayed-multiple-times/)
 *  [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/result-displayed-multiple-times/#post-3908780)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] Plugin settings don't load on locahost](https://wordpress.org/support/topic/plugin-settings-dont-load-on-locahost/)
 *  Thread Starter [bigneno](https://wordpress.org/support/users/bigneno/)
 * (@bigneno)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-settings-dont-load-on-locahost/#post-3820430)
 * Thank you for all your answers.

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/users/bigneno/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/bigneno/replies/page/2/?output_format=md)