- This topic has 8 replies, 5 voices, and was last updated 10 years, 5 months ago by .
Viewing 9 posts - 1 through 9 (of 9 total)
Viewing 9 posts - 1 through 9 (of 9 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP Photo Seller › Sharing WP Photo Seller Cart with WP Shopping Cart
Tagged: old url, photo seller, wp shopping cart
In addition to WP Photo Seller, I am using WP Shopping Cart on my site. Can I specify the WP Photo Seller Cart to be the designated cart for WP Shopping Cart?
WP Photo seller works on its own. It doesn’t share with other cart. Which cart do you actually mean when you say “WP Shopping Cart”?
WordPress Simple Paypal Shopping Cart Plugin
ok. It is perfectly fine to have a store/products page that handles the selling of your other products via the simple shopping cart plugin. The photo seller can handle the selling of your photos from the gallery pages.
Can I redirect purchases from Simple Shopping Cart Plugin to the Photo Seller cart?
There is no way for the Photo Seller cart to handle non Photo Seller products.
Me too was looking for a way to sell a product in sidebar (add to cart/shortcode) into the WP Photo seller cart = so people can checkout the bulk of order (!!) Seems I can only sell from the gallery, I find this unfortunate. Logically you would want to sell also via 1 click from sidebar (!!) Please give us shortcode [add_to_cart_photo/product_id-” “]
I tried:
function AddtoCartYes() {
return ‘<p>Add to Cart</p>’;
}
add_shortcode(‘addtocartyes’, ‘AddtoCartYes’);
function AddtoCartYes() {
//Adds items to cart.
public function addToCartNonAjax($item_array){
$cart = WPSSession::get(‘WPSCart’);
$cart->addItemPhoto($row, $row, $row, $row, $row); //add item to cart
}
But this messed up a lot.
PLEASE HELP OUT
@Roos,
There is a shopping cart widget you can add to the sidebar from the widget menu of WP.
Go to Appearance->Widgets and drag the WPS Shopping Cart widget to the sidebar.
Alternatively you can add the following shortcode in a standard text widget:
[WPS_display_compact_cart]