• I have installed latest woo and wp, whenever i change product base to any page, that page does not display anything at all. Rest of the pages like cart, my account, profile displays. Only the product page’s base is not displaying even the product page them self does not display anything.

    ### Environment ###

    WC Version: 2.1.12
    WC Database Version: 2.1.12
    WP Version: 3.9.1
    WP Multisite Enabled: No
    Web Server Info: Apache
    PHP Version: 5.2.17
    MySQL Version: 5.5.37
    WP Memory Limit: 96 MB
    WP Debug Mode: No
    WP Language: Default
    WP Max Upload Size: 10 MB
    PHP Post Max Size: 10 MB
    PHP Time Limit: 30
    PHP Max Input Vars: 1000
    SUHOSIN Installed: No
    WC Logging: Log directory is writable.
    Default Timezone: Default timezone is UTC
    fsockopen/cURL: Your server has fsockopen and cURL enabled.
    SOAP Client: Your server has the SOAP Client class enabled.
    WP Remote Post: wp_remote_post() was successful – PayPal IPN is working.

    ### Locale ###

    decimal_point: .
    thousands_sep:
    mon_decimal_point:
    mon_thousands_sep:

    ### Plugins ###

    Installed Plugins: Contact Form 7 by Takayuki Miyoshi version 3.8.1
    Hide My Site by Justin Saad version 1.4.1
    Recent Tweets Widget by Theme Prince version 1.3
    Revolution Slider by ThemePunch version 4.2.3
    Theme My Login by Jeff Farthing version 6.3.10
    WooCommerce by WooThemes version 2.1.12
    WP Smush.it by WPMU DEV version 1.6.5.4

    ### Settings ###

    Force SSL: No

    ### WC Pages ###

    Shop Base: #6 – /blog/
    Cart: #150 – /cart/
    Checkout: #151 – /checkout/
    My Account: #152 – /my-account/

    ### WC Taxonomies ###

    Order Statuses: cancelled (cancelled)
    completed (completed)
    failed (failed)
    on-hold (on-hold)
    pending (pending)
    processing (processing)
    refunded (refunded)

    Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)

    ### Theme ###

    Theme Name: Brandon
    Theme Version: 1.6.1
    Author URL: https://muffingroup.com

    ### Templates ###

    Template Overrides: No overrides present in theme.

    Request you to kindly help.

    Thanks in Advance.

    https://www.ads-software.com/plugins/woocommerce/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter ffan_of_your_eyes

    (@ffan_of_your_eyes)

    On further testing found out this works in Native WP theme like 2014. PLease suggest what is an issue with current theme!!

    Theme Name: Brandon
    Theme Version: 1.6.1
    Author URL: https://muffingroup.com

    Thread Starter ffan_of_your_eyes

    (@ffan_of_your_eyes)

    It was working earlier with this theme like charm. Due to sudden crash i had to install wp and woo and theme again and since them its not working. on my localhost this is working woo wp and brandon theme. but on shared hosting same setup has issue

    Thread Starter ffan_of_your_eyes

    (@ffan_of_your_eyes)

    Now shop page display,

    I had to do following to make it work.

    https://docs.woothemes.com/document/third-party-custom-theme-compatibility/

    Duplicate your theme’s page.php file, and name it woocommerce.php. This file should be found like this: wp-content/themes/YOURTHEME/woocommerce.php.

    Replace the loop <?php if ( have_posts() ) : <?php endif; ?>

    This varies between themes. Once you have found it, delete it. In its place put:

    <?php woocommerce_content(); ?>

    This has enable the shop page.

    But now there is issue that shop page is not displaying properly.
    all the shop images is zoomed big and even woo side bar is also not showing.

    Code of my page.php
    ————————-

    <?php
    get_header();
    ?>

    <!– #Content –>
    <div id=”Content”>
    <div class=”content_wrapper clearfix”>

    <!– .sections_group –>
    <div class=”sections_group”>
    <?php
    while ( have_posts() ){
    the_post(); // Post Loop
    mfn_builder_print( get_the_ID() ); // Content Builder & WordPress Editor Content
    }
    ?>
    </div>

    <!– .four-columns – sidebar –>
    <?php get_sidebar(); ?>

    </div>
    </div>

    <?php get_footer(); ?>

    code of newly created woocommerce.php
    ———————————–
    <?php
    /**
    * The template for displaying all pages.
    *
    * @package Brandon
    * @author Muffin group
    * @link https://muffingroup.com
    */

    get_header();
    ?>

    <!– #Content –>
    <div id=”Content”>
    <div class=”content_wrapper clearfix”>

    <!– .sections_group –>
    <div class=”sections_group”>

    <?php woocommerce_content(); ?>

    </div>

    <!– .four-columns – sidebar –>
    <?php get_sidebar(); ?>

    </div>
    </div>

    <?php get_footer(); ?>

    Can someone of you please suggest how i can i correct shop page display and make it look like normal.

    Thanks in advance.

    I have copied woocommerce plugin files only (no database) from my backup and it works. It is dirty, but fast solution.

    Thread Starter ffan_of_your_eyes

    (@ffan_of_your_eyes)

    Lucky you bobo!! I have tried that several times but does not work!!

    Please anyone can help!!

    Thread Starter ffan_of_your_eyes

    (@ffan_of_your_eyes)

    anyone please!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘WooCommerce Shop Does not display anything’ is closed to new replies.