Title: withinboredom's Replies | WordPress.org

---

# withinboredom

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

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

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dynamic Visibility for Elementor] Issue with Dynamic Visibility and LiteSpeed ​​and Cloudflare caches](https://wordpress.org/support/topic/issue-with-dynamic-visibility-and-litespeed-and-cloudflare-caches/)
 *  [withinboredom](https://wordpress.org/support/users/withinboredom/)
 * (@withinboredom)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/issue-with-dynamic-visibility-and-litespeed-and-cloudflare-caches/#post-16196260)
 * Came here looking for a different issue but I know the answer. Have your server(
   or cache) send a Vary on cookie header. This will cache the page for each value
   of the cookie.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redirection] WordPress database error Table doesn't exist for query](https://wordpress.org/support/topic/wordpress-database-error-table-doesnt-exist-for-query/)
 *  [withinboredom](https://wordpress.org/support/users/withinboredom/)
 * (@withinboredom)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/wordpress-database-error-table-doesnt-exist-for-query/#post-6095956)
 * Also seeing this on multisite, did you hook into the multisite network upgrade
   hook?
 * `PHP message: WordPress database error Table 'flagship.wp_1239_redirection_404'
   doesn't exist for query SHOW FULL COLUMNS FROM`wp_1239_redirection_404`made by
   require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'),
   do_action('template_redirect'), call_user_func_array, WordPress_Module->template_redirect,
   RE_404::create` is filling my logs!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Messages aren't showing](https://wordpress.org/support/topic/messages-arent-showing/)
 *  Thread Starter [withinboredom](https://wordpress.org/support/users/withinboredom/)
 * (@withinboredom)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/messages-arent-showing/#post-4576483)
 * Ah, there was a stray `</div>` hiding in the template. No bug to report!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Messages aren't showing](https://wordpress.org/support/topic/messages-arent-showing/)
 *  Thread Starter [withinboredom](https://wordpress.org/support/users/withinboredom/)
 * (@withinboredom)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/messages-arent-showing/#post-4576478)
 * No, it wasn’t replicated in the standard theme, but still a plugin issue.
 * I went through the js code, I noticed it calls
    `$form.find("div.wpcf7-response-
   output");`
 * However, for some reason, the shortcode has output the response outside of the
   form. The output is showing the structure:
 *     ```
       <div class="wpcf7">
         <form></form>
       </div>
       <div class="formItem">
         <div class="div.wpcf7-response-output">
         </div>
       </div>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Messages aren't showing](https://wordpress.org/support/topic/messages-arent-showing/)
 *  Thread Starter [withinboredom](https://wordpress.org/support/users/withinboredom/)
 * (@withinboredom)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/messages-arent-showing/#post-4576419)
 * Things like: “Your message was successfully sent” etc.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Bug: Page Caching HTTPS pages as HTTP](https://wordpress.org/support/topic/bug-page-caching-https-pages-as-http/)
 *  Thread Starter [withinboredom](https://wordpress.org/support/users/withinboredom/)
 * (@withinboredom)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/bug-page-caching-https-pages-as-http/#post-4322277)
 * My mistake, ‘HTTPS’ was not set.
 * Please add this line:
 *     ```
       238: $v = getallheaders();
       242: case (isset($v['X-Forwarded-Proto']) && $v['X-Forwarded-Proto'] === 'https'):
       ```
   
 * to define.php
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sliderly] Please enqueue your css correctly!](https://wordpress.org/support/topic/please-enqueue-your-css-correctly/)
 *  Thread Starter [withinboredom](https://wordpress.org/support/users/withinboredom/)
 * (@withinboredom)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/please-enqueue-your-css-correctly/#post-4322248)
 * For anyone else who needs a quick hack, place right under $url = ..
 * for Linux based servers
 *     ```
       if(isset($_SERVER['HTTPS'])) {
                       $url = str_replace('http', 'https', $url);
               }
       ```
   
 * and for IIS
 *     ```
       if(!isset($_SERVER['HTTPS'])) {
                       $url = str_replace('http', 'https', $url);
               }
       ```
   
 * in css.php and js.php
 * Dear plugin developer, PLEASE DO NOT USE THIS and if you are looking for late
   loading of css/js, look up how to put your javascript and css into the footer,
   there is plenty of information in the codex.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sliderly] Please enqueue your css correctly!](https://wordpress.org/support/topic/please-enqueue-your-css-correctly/)
 *  Thread Starter [withinboredom](https://wordpress.org/support/users/withinboredom/)
 * (@withinboredom)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/please-enqueue-your-css-correctly/#post-4322242)
 * Also, please set your javascript requires instead of just enqueueing a bunch 
   of jquery and hoping it all comes out in order.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Store Locator Plus®] I want to change the Find Locations button?](https://wordpress.org/support/topic/i-want-to-change-the-find-locations-button/)
 *  [withinboredom](https://wordpress.org/support/users/withinboredom/)
 * (@withinboredom)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/i-want-to-change-the-find-locations-button/#post-3156185)
 * Look in the plugin dir/storelocatorle/core/templates/searchform.php down towards
   the bottom of the file change the line reading:
 *  <input <?php echo $button_style?> value=’Find Locations’ id=’addressSubmit’/
   >
    To say find instructors.
 * We’ll get a setting for you in there in a release or two.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Store Locator Plus®] [Plugin: Google Maps via Store Locator Plus] Tables Wrapping the Divs so Cannot Customize Location o](https://wordpress.org/support/topic/plugin-google-maps-via-store-locator-plus-tables-wrapping-the-divs-so-cannot-customize-location-on-page/)
 *  [withinboredom](https://wordpress.org/support/users/withinboredom/)
 * (@withinboredom)
 * [13 years, 12 months ago](https://wordpress.org/support/topic/plugin-google-maps-via-store-locator-plus-tables-wrapping-the-divs-so-cannot-customize-location-on-page/#post-2970081)
 * Nothing is wrong with your install … we’re preparing a big update in the coming
   weeks, that won’t be an issue anymore.

Viewing 10 replies - 1 through 10 (of 10 total)