If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Announcement
Collapse
No announcement yet.
Alternative to Emporium Plus Miscellaneous Fee Module for Heavy Shipping Surcharge
Originally posted by Bruce - PhosphorMediaView Post
Miva has many shipping rules that can be applied. Either by basket totals (i.e., weight) or on a product by product basis.
Thanks Bruce, but I have not been able to figure out if it was possible, and if so how.
We typically offer free US shipping over X, along with other popular shipping options. However we have about two dozen or so products that are very heavy and we use old man Weiland's Miscellaneous Fee module to add a Heavy Shipping Surcharge in addition to applicable shipping option.
That is where my confusion is lies. If this is possible, can you please give me an example, the last time I spoke with Technical Support they advise it was not possible.
Well, its true you can't use 'shipping' methods to ADD a 'shipping' charge, but there are many ways to configure merchant to do this. personally, if this is a flat rate, I'd just add it as a required checkbox 'option'. You'll less sales showing the "Actual" price rather then surprising them on shipping. IMO.
Originally posted by Bruce - PhosphorMediaView Post
Well, its true you can't use 'shipping' methods to ADD a 'shipping' charge, but there are many ways to configure merchant to do this. personally, if this is a flat rate, I'd just add it as a required checkbox 'option'. You'll less sales showing the "Actual" price rather then surprising them on shipping. IMO.
Interesting idea, we already have that information in the product description (example), but I was looking for a solution that would eventually list the information on the product page is enabled/applicable (conditional).
Originally posted by Bruce - PhosphorMediaView Post
Simple add a checkbox option called Heavy Shipping Surcharge, add the additional cost to it and make it required.
Bruce, I am relatively new to M5 & 9, is that an existing feature in Miva? Please keep in mind that there are different Heavy Shipping Surcharges option based on delivery location (example).
You mean as an additional attribute? How would system validate customers selects the correct country?
Hello Leslie:
Maybe you cn help me?
I'm attempting to accumulate basket charges that originate from the Emporium Plus Misc Fee module. This is my code to do that but I cannot make it work:
<!-- display misc fees -->
<mvt:item name="toolkit" param="sassign|sum|0" />
<mvt:foreach iterator="charge" array="basket:charges">
<tr>
<td class="baskettext_left" colspan=4> <i>&mvt:charge:descrip;</i> </td>
<mvt:if expr="l.settings:charge:formatted_disp_amt NE '$0.00'">
<td class="baskettext_right"> &mvt:charge:formatted_disp_amt; </td>
<td class="baskettext_right"> &mvt:charge:formatted_disp_amt; </td>
</mvt:if>
<mvt:item name="toolkit" param="math_add|sum|l.settings:basket:charges:amou nt;|sum" />
</tr>
</mvt:foreach>
<!-- show result -->
(&mvt:global:sum;)
My issue is with this statement:
<mvt:item name="toolkit" param="math_add|sum|l.settings:basket:charges:amou nt;|sum" />
Does Miva template code have any add capability that might accomplish this?
Any ideas?
Hello forum:
The atached BASK page illustrates our issue. The item and fee amounts don't total down because the basket total does not incclude misc fees. I need to add the misc fees and add them to the basket total and then show that amount on our BASK page.
Hope someone can help!! Screenshot (277).png
basket:charges:amount is not a correct variable name. basket:charges is an array, and each element of the array has its own :amount member. I think that if you replace basket:charges:amount with charge:amount, this will work correctly. But I didn't study it closely, just a quick skim.
But if I was working on this, I'd start by removing the obsolete and cumbersome Toolkit tags like "math" and "sassign." They were useful at one time; but now these things can be done with the mvt:assign tags that are built into the template language..
Comment