Jump to content


Corporate Sponsors


Latest News: (loading..)

reflex-ocasion

Member Since 23 Jan 2009
Offline Last Active Oct 05 2011, 19:30
-----

Posts I've Made

In Topic: Different Prices for Registered Users Vs Unregistered

23 July 2011, 23:40

I understand that the problem is that without a price register shows and register shows another. Right?

That may be more off the mark applies. They may be two reasons.

One (unlikely). The price is not correct.
Two (very likely). Somewhere in this repeated a line that makes it more applicable discount.

In the Spanish forum there who had a similar problem. In the cart there were two units by default. The problem was that a line had doubled. Solution to the problem is eliminated.

In Topic: Different Prices for Registered Users Vs Unregistered

23 July 2011, 23:07

SPPC use it on a store that no discount applies. But if I have another store where discounts apply. I have not been seen since the case of this problem. Approximately 120 contributions are installed in each store, 95% are common in both stores.

At some points I struggled to integrate the contribution. Elsewhere it has been impossible to integrate, in particular there is a part product_info impossible. That part (attributes) is also amended by another contribution: QT Pro

Particularly not give greater importance is a very specific point that no one usually pay attention. Not what I mean.

Usually the customer does not pay attention, just interested to know how much you will pay eventually.

I have installed on the admin the option to choose the shipping method. If I do so the client always click continue and choose the most economical shipping available (default method osC: cheapest). When you want to make a mistake and want to rectify, it's late because it has been sent.

The cheapest shipping method available to me is ordinary mail. That is no guarantee that it is given or done on time. You can not claim from the postal service. From the following shipping methods if they can claim, so I have that contribution.

If something as fundamental as this, the client is pending... are you going to be that the price out correctly throughout the store? not


Sorry for my bad English. I use an online translator.

In Topic: Login Redirect to index instead of previous page

30 April 2011, 03:50

I tried all the options and none work as needed.

Problems:

1 - the client is identified with nothing in the car... why you have to show the empty car? why not go to the front of the store?

2 - the client is identified having items in the cart... because he has to send the cover of the tent? why not go on the buying process?

Solution:

Open catalog/login.php

Find:

// restore cart contents
        $cart->restore_contents();

        if (sizeof($navigation->snapshot) > 0) {
          $origin_href = tep_href_link($navigation->snapshot['page'], tep_array_to_string($navigation->snapshot['get'], array(tep_session_name())), $navigation->snapshot['mode']);
          $navigation->clear_snapshot();
          tep_redirect($origin_href);
        } else {
          tep_redirect(tep_href_link(FILENAME_DEFAULT));
        }


Replace:

// restore cart contents
        $cart->restore_contents();

        if (sizeof($navigation->snapshot) > 0) {
          $origin_href = tep_href_link($navigation->snapshot['page'], tep_array_to_string($navigation->snapshot['get'], array(tep_session_name())), $navigation->snapshot['mode']);
          $navigation->clear_snapshot();
          tep_redirect($origin_href);
        } elseif (!$cart->count_contents() > 0) {
          tep_redirect(tep_href_link(FILENAME_DEFAULT));
        } else {
          tep_redirect(tep_href_link(FILENAME_CHECKOUT_SHIPPING));
        }

This sends the customer to the front of the store if you have nothing in the car when it is identified, or is sent to the buying process if you have a product in the cart.

Sorry for my bad English.