dvize
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] V3 broke my entire layouti am having the same issue. litespeed is loading cached scripts using http
My settings (general >Site Address + WordPress Address) are set to https
I ran a search and replace on the database and updated everything to https
Installed Really Simple SSL to force ssl on every thingLite speed is still using http
Forum: Plugins
In reply to: [WooCommerce] Taxes are not displayingThank you very much @lorro… that worked…. shame this bit is not more intuiative. much appreciated
Forum: Plugins
In reply to: [WooCommerce] Taxes are not displayingVery silly of me.. i uploaded the tax screen twice instead of the standard tax rate. Here it is:

I am using a NSW local address to checkout: 2479 BINNA BURRA, NSW
here is the base location screenshot:

here is the product settings:

Thank you very much @lorro and @riaan for your fast response. much appreciotaed
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] SSL supportahh that only worked for a bit… must of been because cache was empty
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] SSL supportswitching off cache viua settings and switching it back on has worked
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] SSL supportremoving RS SSL plugin stops redirecting to https: meaning fastcache does not work with https
one approach could be for fastcache to wrote the redirect http to https code as an option in plugin … or send the code to be manually inserted.
here is the code generated by RS SSL
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.3.6] <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} !=on [NC] RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule> # END rlrssslReallySimpleSSLif i add your suggested code, the redirect stops working
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.3.6] <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} !=on [NC] RewriteCond %{REQUEST_URI} !wp-content\/(cache|wpfc-mobile-cache) RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule> # END rlrssslReallySimpleSSLForum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] SSL supportthis did not work… however helped me work out that the plugin “Really Simple SSL” was conflicting.. I have removed the plugin and all is working.
Forum: Plugins
In reply to: [The Events Calendar] How to view all events in list modeThank you Brook… did the trick
Forum: Plugins
In reply to: [Envoke Supersized] how can I use it on one template page onlyput this in your header. This example only displays SS on the home page. use conditional tags to customise it
<?php if ( !is_front_page() ) : ?> <style> #supersized { display: none; } </style> <?php endif; ?>any luck with this?
I have emailed all the details.. let me know if you need anything else 🙂
that will be appreciated.. i can send access details if you want to look at my dev instal. email me gt /at/ dvize /dot/ com
The issue happens to all number based urls (eg 674653645). So it not duplicates. I am able to add posts and custom post types with numbers. It is only custom posts created by ctp that are causing this issue.. any help will be appreciated. I have build a whole site around numbers.
Forum: Fixing WordPress
In reply to: Displaying Future/Scheduled Poststhankyou keesiemeijer… this is working a bit better… the posts are not showing the next ones.. they are about a month ahead.. also this code is displaying above the posts:
AND wp_posts.post_type = 'post' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'private') AND post_date > '2013-03-06'Forum: Fixing WordPress
In reply to: Displaying Future/Scheduled Poststhank you keesiemeijer… this code returned
AND wp_posts.ID = 131 AND wp_posts.post_type = 'post' AND post_date > '2013-03-05' Sorry, no posts matched your criteria.i also trie dthis code with a
<?php wp_reset_query(); ?>to ensure it was not conflicting with the main loop