Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using WP e-commerce for my worpress blog. I want to display a particular product in my template. I wrote the code like this.

          query_posts('p=186'); 
          while (wpsc_have_products()) :  wpsc_the_product(); 
                 echo wpsc_the_product_title();
                       ................
                       ................
          endwhile;

But it is not working. I think the problem is with query_posts(). Is there any equivalent function for query_posts or How can I display a product with it's id in WP e-commerce.

share|improve this question

1 Answer

See if it works for you:

$wpsc_query = new WPSC_query("category_id=3");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.