riki81
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Save option wont work on general>>minifyDamn! I’ve understood right now the problem by myself! π
It seems that if I activate the extension CloudFlare under Performance > Extensions menu, automatically it removes minification.
My personal consideration: if I “tell” W3TC that I am subscribed to CloudFlare, it checks my CF options and one of them is (under CloudFlare) auto minification of HTML, CSS and JS files.
That means that W3TC work with a correct OR statement. If minification is active on your CloudFlare account for this website, it won’t be active inside W3TC, else, if not active on CF, it’ll be possible to activate it on W3TC.That’s all folks and I think is a correct way to manage minification!
Forum: Plugins
In reply to: [W3 Total Cache] Save option wont work on general>>minifyHello! The same here!
Standard WP installation on a subdomain.Sometimes it works, sometimes not more.
Once fresh installed, minify option can be enabled and customized. After few works (maybe adding manually JS and CSS files) it stops working and if I try to reactivate this option from general panel, once clicked “Save all settings” the checkbox is not more selected and in the minify area options appears this text: “Minify via disk is currently disabled”.What can I do? What is wrong?
Forum: Plugins
In reply to: [WooCommerce] Orders not completingOK… few minutes after posting my SOS here, I’ve found solution for my problems!
I’ve got products on my WooCommerce store flagged as “virtual”, but not as “downloadable”.
WooCommerce autoswitches order status to COMPLETED only if:
– product is flagged as “virtual” AND “downloadable”
– PayPal payment is correctI mean that, if you set a product only virtual OR only downloadable, WooCommerce will not change product’s status in “completed”.
If you want to go over this stupid limitation, and be able to autoswitch order status to “completed” (also for only “virtual” products), I suggest you to download this plugin:
http://ww.wp.xz.cn/plugins/woocommerce-autocomplete-order/Cheers!
Forum: Plugins
In reply to: [WooCommerce] Orders not completingHello everybody!
Is there any update about auto change of order status to COMPLETED if a PayPal payment is ok?I’ve checked my log file for a real payment I checked… this is the result:
01-23-2014 @ 11:08:40 – Received valid response from PayPal
01-23-2014 @ 11:08:40 – Found order #112
01-23-2014 @ 11:08:40 – Payment status: completed
01-23-2014 @ 11:08:42 – Payment complete.BUT ORDER IS STILL NOT COMPLETED!
I don’t think problem is from PayPal… but from WooCommerce!Thanks
Forum: Plugins
In reply to: [WooCommerce Sequential Invoice Numbers] Documentation?Hi, please let us know hot to add the invoice number to the invoice template php file.
Please, as soon as possible… my customer wants sell using WooCommerce. Everything’s ready, except this. But for law reasons, as in Germany (larsactionhero user) also in Italy we have to create a sequential invoice number.Thanks a lot! π
Forum: Plugins
In reply to: [Simple Dropbox Upload] File Extensions MissingHello!
Great plugin, but I confirm the same error explained by Tallowood.Screenshots and cameras files generated are, often, in some date/time format, so I really hope that you solve this problem asap. π
Thanks a lot for your nice job!!!
Works on Safari, not on Chrome or Firefox! π Others with this problem?
Forum: Fixing WordPress
In reply to: Passing an linked anchor through pagination?Check this!
<?php $the_last_page = $wp_query->max_num_pages; $loaded_page = intval($paged); ?> <?php if ( $the_last_page == $loaded_page) { // if is the last page ?> <div class="navigation_previous"><a href="<?php previous_posts(); ?>#box2">«</a></div> <?php } elseif ($loaded_page == 0) { // if is home ?> <div class="navigation_next"><a href="<?php next_posts(); ?>#box2">»</a></div> <?php } else { //otherwise ?> <div class="navigation_previous"><a href="<?php previous_posts(); ?>#box2">«</a></div><div class="navigation_next"><a href="<?php next_posts(); ?>#box2">»</a></div> <?php } // links to newer and older posts ?>It is valid for next-posts() and previous_posts(), typical in HOME PAGE, but not for next_post_link() and previous_post_link(), both used in SINGLE POST template.
I’m looking for the same solution, but for SINGLE POST page navigation (from one post to another one).Hope has been useful! π
Forum: Fixing WordPress
In reply to: next_post_link(); with anchorHi, I’ve checked, but nothing… the problem is that previous_post_link generates entire link, so I am not able to do sth like previous_post_link#anchor.
For HOME I did:
<?php $the_last_page = $wp_query->max_num_pages; $loaded_page = intval($paged); ?> <?php if ( $the_last_page == $loaded_page) { // if is the last page ?> <div class="navigation_previous"><a href="<?php previous_posts(); ?>#box2">«</a></div> <?php } elseif ($loaded_page == 0) { // if is home ?> <div class="navigation_next"><a href="<?php next_posts(); ?>#box2">»</a></div> <?php } else { //otherwise ?> <div class="navigation_previous"><a href="<?php previous_posts(); ?>#box2">«</a></div><div class="navigation_next"><a href="<?php next_posts(); ?>#box2">»</a></div> <?php } // links to newer and older posts ?>but for single one I cannot do, ’cause previous_post is deprecated function! π
Any other solution? Maybe a good programmer, looking at previous code I’ve shared above, could think sth of useful for my situation… π
Thanks a lot!
Forum: Fixing WordPress
In reply to: next_post_link(); with anchorThanks for quick reply!
I knew that thread, and I used it a lot for POSTS navigation (normally used in home page) with “previous_posts_link”, etc… but I need to do the same for SINGLE POST page with “previous_post_link”.It sounds ridiculous, but actually it seems so different! π
Waiting for someone help!!! Thanks t-p! π