How do I change the background of the Category Tree)
Click on your store name. Then, look at the right pane and you’ll see an option for Misc Colors. You can change it from that option.
I would like to remove the left hand tree completely from my miva site. How do I do that?
You’ll need to remove the following from each of your pages:
<mvt:item name=”category_tree” />
How do I change the order of the credit card listings on my drop-down menu?
In your admin screen, remove all payment options and then re-enter them IN THE ORDER you want them to appear.
Is it possible to make Miva entirely CSS driven?
Miva, by default, utilizes tables for formatting. This tends to render better across different browsers. However, if you are familiar with CSS, you could change a variety of layouts by going into the code and changing the code to CSS.
How do I change the order my categories are displayed?
You can sort categories by going into the Admin screen and clicking on Categories. Then, simply use the arrows nest to the names to move them around.
Is there a way to remove the Order button if an item is out-of-stock?
Sure. Turn on inventory tracking. Then select the option ‘do not hide product when out of stock’. Then, set the inventory level to zero. This will leave the product active, so customers can see it, display an ‘out-of-stock’ message and remove any buttons to purchase. Just remember to increase your inventory levels once the product is back in stock.
I created a custom field and now I want to limit how many characters it is… How can I do that?
The easiest way is to modify the HTML code by setting the maximum inside the textfield code. Ex: < maxlength=25>
I made a bunch of HTML changes in Miva that I need to be validated (without having to buy expensive HTML editors). Is there something free out there I can use?
You can go to www.w3c.org – they have a free validator.
How do I add more product descriptions?
Two ways. 1. Add it to the ‘Product Description’ field. 2. Add it to the ‘Custom Product Field’
How can I set up a simple content management system where my client can change certain pages on the web
Create a couple new screens inside MIVA Merchant and show your client how to access and edit those screens.
Can I add an icon that can play a sound next to the product description?
Yes. Simply add the link in your code to the sound file.
How do I add a custom field to my product page? (For example – weight)
Do the following:
- Turn on Custom Fields in the Utilities Menu
- Create your custom field under the Custom Product Fields tab
- Go into your PROD Page Template and click on Product Display Layout (make sure it is in Point + Click Mode)
- Assign the custom product field to that template.
- Add the following in your code to call the custom field in the template:
&mvt:product:customfield_values:customfields:your_custom_field_code;
What code do I need to display a welcome (first name -last name) message in a custom location in the global header for each page.
Try this:
&mvte:global:Customer:bill_fname;
&mvte:global:Customer:bill_lname;
Can I change the image sizes for the products in Miva?
No. You would need a graphics program to set the exact dimensions you wanted for the images to appear in Miva.
How can I change a customer’s order after it has been placed and confirmed?
Unfortunately, there isn’t any good way to do that in Miva. Your best bet is to cancel the order and ask the customer to reenter it.
How do I remove the link "place order without an account"?
1. Click on your store name
2. Click on the ‘Shopping Interface Settings’
3. Uncheck the box to display customer login before checkout.
Where can I see the order processing screen? If someone buys something from the store, how am I supposed to know and where can I see that order?
View and batch your orders under the "Order Processing" screen. To get to it, click the plus sign next to "Order Processing".
I have multiple items in my category list. I would like to have page numbers display on the product pages so customers can see how many pages there are in that category.
Create a page number bar for each category, and put it in the category footer.
Can Miva be configured to send an encrypted email with order information on completion of an order?
This is currently not supported.
I deleted a product from the store, but it did not delete the image. Why and how do I delete it?
Because an image might be used for more than one product. You can delete it via FTP.
Is there a way to play music in the background from Miva 5?
Actually, no. But what you can do is create an HTML frame, play your background music through the HTML page and put the entire Miva store as a frame within the main HTML page.
How do I remove the store name so it doesn't show up on top?
Towards the top of each page template, you'll see the 'title' tag. Remove the text '&mvt:store:name;:' .
Can you help me make the Google Checkout Button display the Basket page?
After you login to your Miva Merchant click on Pages link, then click on the EDIT button.In the main template of the BASK page, put the code below. Remember to confirm that Googlecheckout is assigned as an item on the BASK page by clicking on Items tab on BASK page.
<mvt:item name="googlecheckout" param="button" />
I want to make a new product be the #1 on the list when I click Show Order. Can anyone help me figure this out?
You can go to category page and change the order in that specific category in admin. admin > categories > select the category Click Products then Assigned and Change the order.
Can I change a category tree order to put it at the top?
Yes. It is very simple. You have to get CSS to display it in rows by putting each category link in a div and float the div. This way a new row will start automatically when the one before fills up.
Can I make MIVA pull the description of a product into multiple pages?
First use a custom field and then do the multiplying offline and import.
I am using the html layout and I can't get to center pages horizontally.
You can add align="center" to the main table.
I would like to use the word “cart” instead of “basket”. Can anyone help me do that?
You will need to configure the module to use a different word. To do this you need to single out the text to be able to identify the module.
We would like to change the font color for our store. Is there a simple way to do this?
Yes. Click your store name> and then the categorytreetemplate tab should allow you to modify the color.
Is it possible to change the layout of the order history page?
To change the layout and more follow the steps below:
- Go to admin
- Order fulfillment
- Customer account management.
- Click the link. You will find inputs for the 6 template sections.
- Select "Use template below instead of default".
- Make necessary changes.
- Click the update button.
I would like the Buy button to say “How many do you want to buy” instead of “Add one to the basket”. Is that possible?
Yes. You have to modify the input for quantity from hidden to text in the template.
What conditional should I use to know if a customer on the CTGY or the PROD screen?
You should use something like this:
<mvt:if expr="g.screen EQ 'PROD'>
We want to edit the SKIN HEADERS for our MIVA 5.5 site. Can anyone guide us?
A CSS file comes with the Skin and you can edit it to make the changes you need.