Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #198356

    binkatl
    Participant

    I’m trying to set up a simple store using the Integrity stack. On my Cart page, I am missing the “Proceed to checkout” button. I can’t figure out why. Does anyone have any idea why this wouldn’t show up?

    In the page source code, I see the following:

      <div class="wc-proceed-to-checkout">
          </div>
    

    which indicates something is missing.

    Any help? Thanks!

    #198597

    Friech
    Moderator

    Hi there,

    Thank you for writing in! Please read our release notes. We have an important notes about woocommerce with X latest version there.

    Thanks

    #198607

    binkatl
    Participant

    Thanks. Ok, I updated Woo Commerce to the beta, and that solved the problem. But now the software add-on isn’t working. It must not be compatible with the beta.

    Is it possible to revert back to the previous version of X, so that Woo Commerce and the software add-on will work correctly? Or if not, when are these expected to be released so they will work properly with X?

    #198853

    John Ezra
    Member

    Hi there,

    thanks for updating the post. Regretfully we have no influence on 3rd Party compatibility, and we can only test on what’s available for us released by woocommerce ​so far. If you want to downgrade would you mind providing us with login credentials so we can manually install and older version of X? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password
    – FTP credentials

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    #200713

    Michael J
    Participant

    Hello,

    I am having such an issue with the X Theme upgrade and Woocommerce. I’ve read over all your release notes and have done all of your requested work arounds, installed the newest beta version, and though it seems to work somewhat, I’ve lost so much functionality because of this update. (My plus and minus buttons on the items are missing, customers can no longer pay by check, my Name Your Price Plugin no longer works because their latest version is not compliant with the Woocommerce beta update.) I would like to downgrade my x theme if possible. Everything was working so perfectly before I pushed the button to update my x theme.

    Could you please help and manually downgrade my x theme?

    I know I will have to downgrade Woocommerce also.

    Thank you!

    #200715

    Michael J
    Participant
    This reply has been marked as private.
    #200858

    Rad
    Moderator

    Hi Michael,

    There is no need to downgrade X theme, but you may downgrade your woocommerce by downloading the woocommerce’s stable version and install it. Once you’re done with the downgrade, you can proceed to the following :

    Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.

    1. Copy /x/woocommerce/cart.php to your child theme (eg. /x-child-{stack}/woocommerce/cart.php

    2. Edit your /x-child-{stack}/woocommerce/cart.php and replace this code :

    <div class="update action-group">
                <input type="submit" class="button" name="update_cart" value="<?php _e( 'Update Cart', '__x__' ); ?>" />
                <?php do_action( 'woocommerce_cart_actions' ); ?>
              </div>

    with this :

    <div class="update action-group">
                <input type="submit" class="button" name="update_cart" value="<?php _e( 'Update Cart', '__x__' ); ?>" /> <input type="submit" class="checkout-button button alt wc-forward" name="proceed" value="<?php _e( 'Proceed to Checkout', '__x__' ); ?>" />
                <?php do_action( 'woocommerce_cart_actions' ); ?>
              </div>

    3. Save and upload

    Hope this helps.