withinboredom
Forum Replies Created
-
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
In reply to: [Redirection] WordPress database error Table doesn't exist for queryAlso 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_404made 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
In reply to: [Contact Form 7] Messages aren't showingAh, there was a stray
</div>
hiding in the template. No bug to report!Forum: Plugins
In reply to: [Contact Form 7] Messages aren't showingNo, 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
In reply to: [Contact Form 7] Messages aren't showingThings like: “Your message was successfully sent” etc.
Forum: Plugins
In reply to: [W3 Total Cache] Bug: Page Caching HTTPS pages as HTTPMy 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
In reply to: [Sliderly] Please enqueue your css correctly!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
In reply to: [Sliderly] Please enqueue your css correctly!Also, please set your javascript requires instead of just enqueueing a bunch of jquery and hoping it all comes out in order.
Forum: Plugins
In reply to: [Store Locator Plus? for WP] I want to change the Find Locations button?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.
Nothing is wrong with your install … we’re preparing a big update in the coming weeks, that won’t be an issue anymore.