Re: Shipping Rates in Cart [support thread]
Hi Steven300,
After installing the Shopping Cart with Image Sidebox mod I thought it would be a much more informative and complete if the shipping rate is also displayed at the bottom of this sidebox the same as in the shopping cart, i.e. Sub-Total, Shipping and Total. Would it be possible to do this as well?
Thanks.
Re: Shipping Rates in Cart [support thread]
Hi, this is next on the roadmap. However, my main focus will be on the default shopping cart sidebox and not any related mods.
Re: Shipping Rates in Cart [support thread]
I'm just about to upload a new version of Shipping Rates in Cart. It has a new feature to optionally display the shipping costs in the shopping cart sidebox.
@msatkn
It should be easy to merge the mod's code into the mod you're using.
Re: Shipping Rates in Cart [support thread]
Hi,
That's great news. I did not expect it to be that quick. I shall look out for the new mod. Thanks again.
Re: Shipping Rates in Cart [support thread]
SRiC v2.0 is now available for download.
There are specific instructions in the READ_ME for upgrading from v1.1 to v2.0.
Re: Shipping Rates in Cart [support thread]
Hi,
I merged the sidebox mod. It works as expected.
Thanks.
Re: Shipping Rates in Cart [support thread]
i have a problem with the new version.
when having the sidebox display on and viewing the shopping cart page i recieve an error.
Fatal error: Cannot redeclare class shipping in /home/public_html/store/includes/classes/shipping.php on line 163
when i turn the display is side box to off the error is removed.
Re: Shipping Rates in Cart [support thread]
Hi,
What happens when you make the following change?
includes/templates/your_template/templates/tpl_shopping_cart_default.php
Find:
PHP Code:
require(DIR_WS_MODULES . 'shipping_rates_in_cart.php');
Change to:
PHP Code:
require_once(DIR_WS_MODULES . 'shipping_rates_in_cart.php');
Re: Shipping Rates in Cart [support thread]
Hopefully the above solution will work but if not, in the meantime you could just set the shopping cart box status to 2 in Admin -> Config -> Layout Settings. This will display the shopping cart sidebox on all pages except the shopping cart page.
Re: Shipping Rates in Cart [support thread]
yep require once worked :D thanks