NetBlazon is now selling Smart Links for SEO v5 at mvtrocks.com.
Smart Links for SEO is the ultimate solution for shortening the links on your website, providing the shortest possible links as well as maximum flexibility.
< mvt:rocks /> New Product Addition: Smart Links for SEO v5 version 5.08
December 20th, 2009 ModulePartner Posted in New Miva Modules | No Comments »
< mvt:rocks /> New Product Addition: Payment on Account v5 version 5.002
December 20th, 2009 ModulePartner Posted in New Miva Modules | No Comments »
NetBlazon is now selling Payment on Account v5 at mvtrocks.com.
Payment on Account is the ultimate billing and purchase order payment module for B2B sites. Allow all or only certain customers to enter their purchase order number, or even to bypass payment information collection altogether.
< mvt:rocks /> New Product Addition: PCI Net Tool Belt version 5.350
December 15th, 2009 ModulePartner Posted in New Miva Modules | No Comments »
PCINET, LLC is now selling PCI Net Tool Belt at mvtrocks.com.
Get more morph from Store Morph. This module dramatically extends the Miva Merchant 5 page template language, adding over 200 new functions. Finally you can have the ability to create the pages you've always dreamed of. The ten page template included.
< mvt:rocks /> New Product Addition: Emporium Plus Tool Kit v5 version 5.151
December 14th, 2009 ModulePartner Posted in New Miva Modules | No Comments »
Emporium Plus is now selling Emporium Plus Tool Kit v5 at mvtrocks.com.
Easily and quickly extend store morph technology (SMT). The tool kit function library fills in many of the gaps in the SMT coding system by using the module's item tags, similar to those you are familiar with in your pages. Also, includes dozens of features which replace many modules.
< mvt:rocks /> New Product Addition: Product Comparison version 5.0001
December 12th, 2009 ModulePartner Posted in New Miva Modules | No Comments »
eMediaSales is now selling Product Comparison at mvtrocks.com.
Create a product comparison engine for your store! This module creates a custom page and storemorph display array for showing product data and extra product fields in a comparison matrix.
< mvt:rocks /> New Product Addition: Product Template Manager – v5 version 5.220
December 11th, 2009 ModulePartner Posted in New Miva Modules | No Comments »
Sebenza, LLC is now selling Product Template Manager – v5 at mvtrocks.com.
Product Template Manager allows merchants to create multiple display templates that can then be assigned to products. This module gives the merchant complete control over the entire look and feel of the product page. Included features are multiple templa
< mvt:rocks /> New Product Addition: Category Template Manager – v5 version 5.360
December 11th, 2009 ModulePartner Posted in New Miva Modules | No Comments »
Sebenza, LLC is now selling Category Template Manager – v5 at mvtrocks.com.
Category Template Manager allows merchants to create multiple display templates that can then be assigned to categories. This module gives the merchant complete control over the entire look and feel of the category page.
< mvt:rocks /> Product Update: WYSIWYG HTML Editor version 5.0001
December 1st, 2009 ModulePartner Posted in New Miva Modules | No Comments »
eMediaSales has updated WYSIWYG HTML Editor to version 5.0001 at mvtrocks.com.
Simplify your life! Add a validating WYSIWYG HTML Editor to Miva Merchant. Turns product, category, page and store "textarea" HTML boxes into HTML Editors with the click of a button! Works with StoreMorph code, items and entities.
< mvt:rocks /> New Product Addition: WYSIWYG HTML Editor
December 1st, 2009 ModulePartner Posted in New Miva Modules | No Comments »
Simplify your life! Add a validating WYSIWYG HTML Editor to Miva Merchant. Turns product, category, page and store "textarea" HTML boxes into HTML Editors with the click of a button! Works with StoreMorph code, items and entities.
Add attribute prices to Miva Merchant product page
November 24th, 2009 admin Posted in Miva Merchant Tutorials | No Comments »
The default Miva Merchant 5 product page attribute layout doesn’t include prices for attributes, so customers may be surprised to learn a total product price one they add the product to the basket.
To add attribute prices on your product page, you only need to add a little bit of HTML and StoreMorph code:
- In the Miva Merchant administration console, click Pages
- Click the Product Display Page (PROD) Page to edit it
- Click the Product Attribute Template tab. This will give you access to the template code used to display attributes in your store. *NOTE: if this tab is not available, you may not be running the latest version of Miva Merchant 5.5 and may need to run all updates.
- The original Product Attribute Template display (not to be confused with the Attribute Templates feature of MM5) contains HTML tables, though recent versions may be div and css based. Each of the types of attributes are represented in this template script. To add prices to the different types of Attributes, you’ll need to change the HTML code for EACH of the “mvt:if” conditions that appear. In this code you will add: &mvt:attribute:formatted_price;
The following attribute types may need to be adjusted in different ways. Checkboxes, text inputs and memo (textarea) inputs only have one price for the attribute. However radio buttons and select type attributes may have different attribute options each with a different price.
For single-price attribute types:
- Checkboxes: find <mvt:if expr=”l.settings:attribute:type EQ ‘checkbox’”>, add the attribute price after the attribute prompt, eg:
&mvt:attribute:prompt; (&mvt:attribute:formatted_price;) - Text Inputs: find <mvt:if expr=”l.settings:attribute:type EQ ‘text’”>, add the attribute price before the attribute input, eg:
(&mvt:attribute:formatted_price;) <input type=”text” name=”Product_Attributes[&mvt:attribute:index;]:value” value=”&mvte:attribute:value;” /> - Memo Input (textarea): find <mvt:elseif expr=”l.settings:attribute:type EQ ‘memo’”>, add the attribute price before the textarea
For attributes with selectable “options”, you’ll need to put the option price within the loop that displays each of the options for the attribute. Find the “foreach” loop that displays the multiple options: <mvt:foreach iterator=”option” array=”attribute:options”>, and add pricing where you want it:
- Radio Input: find <mvt:elseif expr=”l.settings:attribute:type EQ ‘radio’”>, add the attribute price after the prompt:
&mvte:option:prompt; (&mvt:option:price;) - Select Input: find <mvt:elseif expr=”l.settings:attribute:type EQ ’select’”>, add the attribute price inside the Option tag, next to the option prompt:
<option value=”&mvte:option:code;”>&mvte:option:prompt; (&mvt:option:price;)</option>
Now your attributes with prices will display the full pricing within the product page.