Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Damn! 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!

    Hello! 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?

    OK… 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 correct

    I 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!

    Hello 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

    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! πŸ˜‰

    riki81

    (@riki81)

    Hello!
    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?

    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">&laquo;</a></div>
    <?php } elseif ($loaded_page == 0) { // if is home ?>
    <div class="navigation_next"><a href="<?php next_posts(); ?>#box2">&raquo;</a></div>
    <?php } else { //otherwise ?>
    <div class="navigation_previous"><a href="<?php previous_posts(); ?>#box2">&laquo;</a></div><div class="navigation_next"><a href="<?php next_posts(); ?>#box2">&raquo;</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! πŸ˜‰

    Thread Starter riki81

    (@riki81)

    Hi, 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">&laquo;</a></div>
                                <?php } elseif ($loaded_page == 0) { // if is home ?>
                                    <div class="navigation_next"><a href="<?php next_posts(); ?>#box2">&raquo;</a></div>
                                <?php } else { //otherwise ?>
                                    <div class="navigation_previous"><a href="<?php previous_posts(); ?>#box2">&laquo;</a></div><div class="navigation_next"><a href="<?php next_posts(); ?>#box2">&raquo;</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!

    Thread Starter riki81

    (@riki81)

    Thanks 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! πŸ˜‰

Viewing 10 replies - 1 through 10 (of 10 total)