Hi,

Thanks for prompt reply of my last bug report regarding missing shopping cart links in block view. Kudos for the great work you are doing for the Drupal community.

Here are few more suggestions for the Ecom module

1. BUG - Attached Picture name product page: This is screenshot of product page. As shown product one is already in cart. If you click buy now on product two page, it will lead to directly to checkout with product two leaving product one in cart only. Ideally if cart is not empty than the click on buy now should add the product to cart and show cart page or Hide Buy now link when cart is not empty

2. Attached Picture name Shopping cart: As shown in display, the second $15 can be prefixed with Total: $15 in shopping cart display in block.

3. Ideally from seller point of view, the link add to cart should add the product with quantity one to shopping cart without going to cart page. The quantity can be increased or removed when user would finally go to checkout.

Thanks

Rugman

CommentFileSizeAuthor
Product Page.JPG13.05 KBRugman
Shopping Cart.JPG6.38 KBRugman

Comments

gordon’s picture

Thanks for the issue. In future can you please post only 1 problem per issue. It makes it easier to respond to and also management the problems as they are fixed.

1. This is not really a bug, but I can see what is confusing. buy now will mainly be used for loading recurring payment products since recurring products need to be purchased individually and not with other products.

2. Yes this is going to be fixed, but it is going to be turned into a template which is why I am not fixing it now.

3. This is a setting as some people want to go to the cart after adding a product to the cart. I think that it got dropped when I was moving some stuff around. I will add it back in.

if you could split this up into 3 issues would be most appreciated.

Rugman’s picture

Hi,

Thanks for the prompt response.

Shall I split the existing one into three issues or this is an advise for future issues?

I have some time spare with me during most of the week days. Is there any non-programming work I can assist you?

Thanks

Rugman

gordon’s picture

Yes if you can split these up as I have done point 2, and I will most likely loose the other points if they are not directly in my face.

As for help, I am starting to split all the theme function out into templates so if you want to play with these and improve them. Also if there are any reports you need start trying to build them in views and tell me what is missing or stopping you from building the reports.

Rugman’s picture

Category: bug » feature

Hi,

Following is splitted from original post as directed by you. (3 of 3 from original post)

Ideally from seller point of view, the link add to cart should add the product with quantity one to shopping cart without going to cart page. The quantity can be increased or removed when user would finally go to checkout.

Good Luck

Rugman’s picture

Category: feature » bug

Hi,

Following is splitted from original post as directed by you. (1 of 3 from original post)

Attached is screenshot of product page. As shown product one is already in cart. If you click buy now on product two page, it will lead to directly to checkout with product two leaving product one in cart only. Ideally if cart is not empty than the click on buy now should add the product to cart and show cart page or Hide Buy now link when cart is not empty

http://drupal.org/files/issues/Product%20Page.JPG

Good Luck

gordon’s picture

This functionality I consider a site specific modification.

Given that you can actually make the change by doing the using the following code.

function custom_link_alter(&$links, $node) {
  if (ec_cart_current()) {
    unset($links['ec_buynow']);
  }
}

So whenever the cart has a product in it, it will remove the buynow link.

gordon’s picture

However you are quite welcome to submit a patch, or put forward reasons to include this functionality.

Rugman’s picture

Hi,

Thanks,

I would surely put forward reasons to include the functionality. Right now trying hands on new Dev version and would post back with feedback.

Good Day

davea’s picture

Status: Active » Closed (fixed)

no activity for six months. Closing.