falc0nit3
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Social AutoConnect] FB Login and then DisappearsHi, I’m having the exact same problem as described above. Deleting and recreating the app doesn’t work.
I’m also trying to migrate my site from AWS to WPEngine and the plugin worked great before(even with caching plugin like w3-total-cache’). THere is no way for me to just turn off caching within wpengine as that is something they do internally. Is this a known issue that it doesn’t work with wpengine’s aggressive caching?
I’d love to get this solved and would appreciate any help.
Thanks!
Forum: Plugins
In reply to: [W3 Total Cache] After logging in, new page displays logged out version!I think i might have fixed the problem:
Essentially you need to tweak the browser cache settings like i suspected. The more you know….Check this page for more details.
http://wordpress.stackexchange.com/questions/87685/wordpress-browser-cache-with-w3-total-cache-doesnt-show-new-posts?rq=1Hope it helps someone!
Forum: Plugins
In reply to: [W3 Total Cache] After logging in, new page displays logged out version!I was looking at chrome debug console and noticed that the homepage is almost always being served from the cache. My login scripts redirect to the homepage by default.
So when a user logs in, it shouldn’t serve the homepage from the cache.
Is there a way i can tell w3 total cache to not to serve the cached version of any page once the user has logged in?I see the ‘wordpress_logged_in’ cookie being set when i log in. Can’t the plugin use that cookie info to check when to serve cached and when not to?
Forum: Plugins
In reply to: [W3 Total Cache] Auto Versioning of Minified FilesI’m not able to figure out why the filename isn’t changing at all. I went through all the settings/options and nothing seems out of place. Any reason why i don’t see new filename when changes to the css and js files are detected? Anyone else faced similar situation before?
Forum: Plugins
In reply to: [W3 Total Cache] Auto Versioning of Minified FilesAh ok, so that’s where my problem lies. I misinterpreted your first post that the generated combined filenames do stay the same.(which is what is happening in my case and i thought that was weird). I understand that the path will remain same, but everytime i make my changes they go into the same file. (default.include.<same_number>.css). It is not creating a new file. I’m not sure why this is happening. I’ll look into w3tc settings to see if i’ve set something wrong.
Forum: Plugins
In reply to: [W3 Total Cache] Auto Versioning of Minified FilesThanks for the reply.
– What is the best way then to push new changes to the live server without temporarily breaking the site(either look through css or functionality through js). There has to be a more elegant way. I can’t rely on end users waiting on the expiry time to pass before they download the new changes.
One crude way i can think of is embedding the new styles within the php file itself and also add that into the stylesheet. That way, each time a request is made, the inline css changes are downloaded without downloading the css files. So the site still appears normal and eventually the css changes are propogated. I will then need to remove the redundant inline code from the php file. This is obviously hacky, and will not work if page cache is on.
Can someone explain a clean way of doing this? Thanks!
I got it to work by modifying jfb_output_facebook_btn() as Justin mentioned above:
<span class=”fbLoginButton”>
<?php echo ‘<fb:login-button scope=”‘. $scope . ‘” v=”2″ size=”small” onlogin=”‘. $jfb_js_callbackfunc . ‘()”>’. apply_filters(“wpfb_button_text”, “Login with Facebook”) . ‘</fb:login-button>’; ?>
</span>This should output the facebook button on any modal (lightbox/simplemodal etc)
Were you able to get this sorted? I’d like to be able to add the facebook button onto a modal. Could you please elaborate a bit more Justin?
I did try to output the tags directly but that doesn’t do anything and the button doesn’t show up. Any help is greatly appreciated. Thanks!
Forum: Plugins
In reply to: [W3 Total Cache] W3TC – Minify and Roots Theme Plugin Rewrite doesn't work<BUMP>
Anyone have any solution on how to get this to work?I tried enabling ‘Rewrite URL Structure’ under W3 minify, but the htaccess file it creates will undo all the url rewriting i pasted earlier.