Title: BASEtraining's Replies | WordPress.org

---

# BASEtraining

  [  ](https://wordpress.org/support/users/basetraining/)

 *   [Profile](https://wordpress.org/support/users/basetraining/)
 *   [Topics Started](https://wordpress.org/support/users/basetraining/topics/)
 *   [Replies Created](https://wordpress.org/support/users/basetraining/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/basetraining/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/basetraining/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/basetraining/engagements/)
 *   [Favorites](https://wordpress.org/support/users/basetraining/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Snippets] Error in logs related to code snippets](https://wordpress.org/support/topic/error-in-logs-related-to-code-snippets/)
 *  Thread Starter [BASEtraining](https://wordpress.org/support/users/basetraining/)
 * (@basetraining)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/error-in-logs-related-to-code-snippets/#post-6875438)
 * I only have two snippets working right now. They both seem to be doing what they
   are intended to do from a functionality standpoint. Both are related to the woocommerce
   cart.
 * This one adds a “continue shopping” button in the cart:
 *     ```
       /**
       * Add Continue Shopping Button on Cart Page
       * Add to theme functions.php file or Code Snippets plugin
       */
       add_action( 'woocommerce_before_cart_table', 'woo_add_continue_shopping_button_to_cart' );
       function woo_add_continue_shopping_button_to_cart() {
        $shop_page_url = get_permalink(3434);
   
        echo '<div class="woocommerce-message">';
        echo ' <a href="'.$shop_page_url.'" class="button">Continue Shopping →</a> Did you forget anything?';
        echo '</div>';
       }
       ```
   
 * This one moves the “proceed to checkout” button to a different place in the cart
   view:
 *     ```
       add_action( 'woocommerce_cart_actions', 'move_proceed_button' );
       function move_proceed_button( $checkout ) {
       	echo '<a href="' . esc_url( WC()->cart->get_checkout_url() ) . '" class="checkout-button button alt wc-forward" >' . __( 'Proceed to Checkout', 'woocommerce' ) . '</a>';
       }
       ```
   
 * Any idea which is the issue with the error?
 * Can snippets that aren’t active cause errors too? Those are the only two active.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress HTTPS (SSL)] Changing a page to Secure causes it not to work](https://wordpress.org/support/topic/changing-a-page-to-secure-causes-it-not-to-work/)
 *  Thread Starter [BASEtraining](https://wordpress.org/support/users/basetraining/)
 * (@basetraining)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/changing-a-page-to-secure-causes-it-not-to-work/#post-3259939)
 * Google Chrome could not load the webpage because [http://www.tribasetraining.com](http://www.tribasetraining.com)
   took too long to respond. The website may be down, or you may be experiencing
   issues with your Internet connection.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress HTTPS (SSL)] Changing a page to Secure causes it not to work](https://wordpress.org/support/topic/changing-a-page-to-secure-causes-it-not-to-work/)
 *  Thread Starter [BASEtraining](https://wordpress.org/support/users/basetraining/)
 * (@basetraining)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/changing-a-page-to-secure-causes-it-not-to-work/#post-3259923)
 * I can save the page with the secure thing clicked and it is fine. However, when
   I go to the url after that (with https or http in front), IE just says that it
   can’t display the page. As soon as I take it off, the page is fine again. I did
   not do anything with the settings in the admin area of the plugin…do I need to?
   I just installed it, activated, and secured that one page.

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