gxt
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] My site is down after updatingThe only solution at this time is to Downgrade, ’till the developer decides to release another update.
• export your current settings (Performance > General Settings > Import / Export settings)
• deactivate + delete the plugin
• download some of the older versions: http://wordpress.org/extend/plugins/w3-total-cache/developers/
• upload it and activate
• import settings if needed!it works for me 🙂
Forum: Plugins
In reply to: [W3 Total Cache] My site is down after updatingI have the same problem! Anyone?
P.S.
every mothaf**** time there’s an update of this plugin there’s ALWAYS, something that doesn’t work… next time I’ll not update. Do you even test it before release?Forum: Fixing WordPress
In reply to: is_single problem!it’s not online yet. But problem was solved
– 2 ways to exclude attachments from POSTS and get a file only and exclusively on POSTS.
– 1:<?php if ( is_single() && !is_attachment() ) { ?> <link rel="stylesheet" href="style.css" /> <?php } ?>– 2 way:
<?php if ( is_singular('post') ) { ?> <link rel="stylesheet" href="style.css" /> <?php } ?>I suggest the second way.
Forum: Fixing WordPress
In reply to: is_single problem!when I insert images I use
[gallery columns="1" size="large"]
then in the post, images (somename-500×550.jpg) point to the original image (somename.jpg) not to the attachment page.Hi Maria,
but it works fine with “random” if the w3 total cache isn’t active…hmm so you tell me that, that may be the problem? wIll try and see without “random”
thank you very much Héctor! You’re a good guy! Thanks 🙂