• I have been working to set up a shop on my wordpress blog using the WP-Ecommerce plugin. When I first set up my initial two product pages, everything seemed to be working fine.

    Earlier this evening, I uploaded a customer header to my blog via the header option under the appearance tab. After the header was in place, I noticed that on each of the individual product pages the site header appears either above or in place of the actual product image that I’d previously uploaded. I have tried deleting the old pages and creating new ones, but I just encounter the same problem. I have also gone through the Presentation page under the Store tab for WP-Ecommerce and flushed my theme cash, with no results. At this point I am unsure as to what to do, other than delete the custom header, which I’d rather avoid.

    Just in case it’s relevant, I am currently using the Tarski theme.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You could try this which works for my child themes of twentyten.
    You will probably have to change the theme call to the one that you use.
    It does not stictly solves the problem but resizes the custom header on the single product page to 1 pixel by 1 pixel so that it is not noticable.

    add_filter('twentyten_header_image_height','my_header_height');
    add_filter('twentyten_header_image_width','my_header_width');
    function my_header_height($size){
    return 1;
    }
    function my_header_width($size){
    return 1;
    }

    this is a seriously much better way to deal with it

    https://www.pramudita.com/duplicate-header-on-wp-e-commerce.html

    kevin

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom Header Overriding Image on Product Page’ is closed to new replies.