Title: SabaAdmin's Replies | WordPress.org

---

# SabaAdmin

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Product photo not showing – WP Ecommerce vs Customizr](https://wordpress.org/support/topic/product-photo-not-showing-wp-ecommerce-vs-customizr/)
 *  Thread Starter [SabaAdmin](https://wordpress.org/support/users/sabaadmin/)
 * (@sabaadmin)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/product-photo-not-showing-wp-ecommerce-vs-customizr/#post-5643683)
 * No worries. Woocommerce seems to be easier to work with and does not conflict
   with the customizr theme. I do thank you 😉 But since I am still learning, if
   I were to go back to WP Ecom, is there a code that would force a picture to show?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Product photo not showing – WP Ecommerce vs Customizr](https://wordpress.org/support/topic/product-photo-not-showing-wp-ecommerce-vs-customizr/)
 *  Thread Starter [SabaAdmin](https://wordpress.org/support/users/sabaadmin/)
 * (@sabaadmin)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/product-photo-not-showing-wp-ecommerce-vs-customizr/#post-5643659)
 * I decided to go with Woocommerce instead of WP Ecommerce thank you again..
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Product photo not showing – WP Ecommerce vs Customizr](https://wordpress.org/support/topic/product-photo-not-showing-wp-ecommerce-vs-customizr/)
 *  Thread Starter [SabaAdmin](https://wordpress.org/support/users/sabaadmin/)
 * (@sabaadmin)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/product-photo-not-showing-wp-ecommerce-vs-customizr/#post-5643651)
 * Hi thank you for your help, I was able to add the code to my child-theme and 
   it did allow for my theme to come through. Which is more than it was showing 
   prior to the add. But I am still unable to see my product photos. I feel like
   I’m so close!! I am new at this. Is this what it’s supposed to look like
 *     ```
       <?php add_action('wp', 'wp_e_commerce_patch', 0);
       function wp_e_commerce_patch(){
           if ( ! ( class_exists('WP_eCommerce') && class_exists('TC_header_main')) )
               return;
           remove_action('template_redirect', array(TC_header_main::$instance, 'tc_set_header_hooks'));
           remove_action('template_redirect', array(TC_header_main::$instance, 'tc_set_header_options'));
   
           add_action('template_redirect', array(TC_header_main::$instance, 'tc_set_header_hooks'), 0);
           add_action('template_redirect', array(TC_header_main::$instance, 'tc_set_header_options'), 1);
       }
       ```
   

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