Woo-commerce issues with Compass

Discussion in 'Compass WordPress Theme' started by smarta, Nov 12, 2014.

Thread Status:
Not open for further replies.
  1. smarta

    smarta Member

    Joined:
    Jul 20, 2012
    Messages:
    225
    Likes Received:
    4
    working on this site http://bouncebackshoes.com.au/
    having issues with product images not showing up - there is no "Featured Image" selection box on the product editing page

    there is one product with an image but I don't know how the hell it got there!
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
  3. smarta

    smarta Member

    Joined:
    Jul 20, 2012
    Messages:
    225
    Likes Received:
    4
    thanks

    I don't really have an issue with the right hand column not showing in the shop pages - I just want the images to load

    I tried the process in your 3rd link (to copy/edit the page.php file and re-name woocommerce.php) but the page.php file bear no resemblance to the one in the example so I was unsure of what to edit

    I have attached a zip file with the page.php
    I have also attached a woocommerce.php that I downloaded form the following thread (which is currently in place)
    http://www.inkthemes.com/community/threads/woocommerce.12985/

    can you advise futher

    PS there is not :"Set Feature Image" button anywhere that I can see
     

    Attached Files:

  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Please copy below code and paste it in editor and save as woocommerce.php

    PHP:
    <?php
    /**
    * The main template file.
    *
    * This is the most generic template file in a WordPress theme
    * and one of the two required files for a theme (the other being style.css).
    * It is used to display a page when nothing more specific matches a query.
    * E.g., it puts together the home page when no home.php file exists.
    * Learn more: http://codex.wordpress.org/Template_Hierarchy
    *
    */
    ?>
    <?php
    /*
      Template Name: Fullwidth Page
    */
    ?>
    <?php get_header
    (); ?>
    <div class="clear"></div>
    <div class="page_content">
    <div class="heading_container">
    <?php inkthemes_breadcrumbs(); ?>
    </div>
    <div class="fullwidth">
    <?php woocommerce_content(); ?>
      </div>
    </div>
    <?php get_footer(); ?>
    You can upload it through FTP or you can simply download theme from member area and extract them.
    Put this file inside the folder and then compress that to make zip file.
    After that upload that zip in your member area.

    Thanks & Regards
    Pramod
     
  5. smarta

    smarta Member

    Joined:
    Jul 20, 2012
    Messages:
    225
    Likes Received:
    4
    Hi Again

    ok - I did that - saved the code you sent as woocommerce.php and FTP'd it into
    wp-content/themes/compasstheme/woocommerce.php

    it did not make any difference - still no images displaying on the products (apart from the additional gallery images and the catogory images are displaying fine) and still no "Set Featured Image" button/area on the product editing page
     
  6. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Please provide the following information listed below.

    Thread Link:
    Your Website URL:
    WordPress Username:
    WordPress Password:
    Send this information on our email at [email protected]

    Thanks & Regards
    Pramod
     
  7. smarta

    smarta Member

    Joined:
    Jul 20, 2012
    Messages:
    225
    Likes Received:
    4
    thank you ... info has been sent
     
  8. smarta

    smarta Member

    Joined:
    Jul 20, 2012
    Messages:
    225
    Likes Received:
    4
    im not sure of this is relevant but I found this on another forum discussing the same problem

    This took me AGES to figure out!
    I was using the Kinetico theme and couldn't see the product image. I had to update the following code in /single-product/product-image.php file that WAS

    <?php do_action('woocommerce_product_thumbnails'); ?>

    But I made into:
    <?php if ( has_post_thumbnail() ) : ?> <a itemprop="image" href="<?php echo wp_get_attachment_url( get_post_thumbnail_id() ); ?>" class="zoom" rel="thumbnails" title="<?php echo get_the_title( get_post_thumbnail_id() ); ?>"><?php echo get_the_post_thumbnail( $post->ID, apply_filters( 'single_product_large_thumbnail_size', 'shop_single' ) ) ?></a> <?php else : ?> <img src="<?php echo woocommerce_placeholder_img_src(); ?>" alt="Placeholder" /> <?php endif; ?> <?php do_action('woocommerce_product_thumbnails'); ?>
     
  9. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    We have fixed your issue. Please have a look .
    I have added a product as a NEW TESTING SHOE in boots category you can delete it and ad your another products.
    While selecting now you have to set feature image to show product thumbnail.
    You have to edit your all previous product and set feature images for them.

    Thanks & Regards
    Pramod
     
  10. smarta

    smarta Member

    Joined:
    Jul 20, 2012
    Messages:
    225
    Likes Received:
    4
    thank you

    fixed it you certainly have !
     
    Pramod likes this.
Thread Status:
Not open for further replies.

Share This Page