Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello, i have a problem with Mystile theme. After update to the new version, the bottom navigation from “Shop” page appears without formatting, just like this:

    •1
    •2

    if anyone has how to help about it, i thank you

    I managed to solve it doing the following: I tested most of free WooCommerce themes and none of them are compatible with this new version of the plugin. Every broke in somewhere.. So I removed the new updated version of WooCommerce plugin (2.01) and installed back again the old (1.6) and Mystile layout from my store back to normal. I did not lose any data, product or customization. Just had to put the pages in the top menu again, but it is easy via the custom menu. I had to do it in two stores from customers, but thank God it worked. Hope that helps someone. In any case, before to try this, do a backup.

    is there any way to fix this bug?
    •1
    •2

    Woothemes just came out with a new version of the Mystile theme today, it resolves most of the issues. There are still a few kinks to work out. Also, make sure the framework is updated as well. And if you have made any changes to the theme files, make sure to backup everything before upgrading the theme.

    They should have upgraded their themes before they updated woocommerce to accommodate the changes.

    they still not using woocommerce 2.0.1, take a look into their demo theme, and look on the source code, you’ll be find it.

    by the way, i had a same problem with jplana66 🙁

    is there anyone can help?

    Solved

    http://wpsnacks.com/wordpress-tutorials/how-to-add-custom-pagination-page-navigation-to-woocommerce/

    Step 1:
    You should download and install WP-PageNavi into your WordPress plugins directory and then activate the plugin in your WordPress Dashboard.
    Step 2:
    Once it is installed, you can set up the options using the settings page for this plugin in your WordPress Dashboard.
    Step 3:
    After you have the settings set up, add this code below to your current theme’s Functions.php file to have WP-PageNavi’s pagination replace WooCommerce’s default page navigation:

    `/**
    * Replace WooCommerce Default Pagination with WP-PageNavi Pagination
    *
    * @author WPSnacks.com
    * @link http://www.wpsnacks.com
    */
    remove_action(‘woocommerce_pagination’, ‘woocommerce_pagination’, 10);
    function woocommerce_pagination() {
    wp_pagenavi();
    }
    add_action( ‘woocommerce_pagination’, ‘woocommerce_pagination’, 10);

    That’s it, now you have a much better looking and easier to use Pagination Page Navigation on your WooCommerce Product Archive Pages.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Problems after update 2.01 Mystile Theme’ is closed to new replies.