- Q. Can I disable right clicking an image?
A. This is usually done via javascript. Just put the code on BACK END --> Layout --> Site --> Head Tag
- Q. Can I have a slide show?
A. Yes, if you have the slide show feature enabled on your site. To enable an item to have a slide show, just go select BACK END --> Catalog --> Products --> add/edit --> Image --> Layout --> Slide Show.
- Q. Can I have a splash page?
A. Yes. Go to the FTP and add an index.html page. This becomes the splash page. Make sure the links to your home page is "home.jhtm".
- Q. Can I have multiple home pages?
A. Yes you can. You do this by simply adding/editing a category and Options --> Home Page --> Yes. Multiple home pages will result in random home pages on the front end. You list these home pages on the back end by choosing Home Pages on the drop down seen when you are listing all categories.
- Q. Can the login navigation link turn into "log off" link once the user is logged in?
A. Yes. Just go to Layout --> Site --> Top Bar.
Put your navigation links that has the "log off" link on HTML Code Login.
- Q. For the site message when a person orders “Order #order# from xxxxxx“, what does the xxxxx mean?
A. You need to replace xxxxx with some meaningful text. #order# will be replaced dynamically with the order number.
- Q. How add extra to box works?
A.
Go to each product that has box size now you will see EXTRA AMOUNT.
Let's say you want to charge $2.00 for each extra chocolate, so type 2.00 in this field.
To handle the weight to as follow.
let's say I add 2 of A100
5 of A103D
10 of A106M
chocolates to product ID = 495 which the box size is 12 and weight is 3 lb.
box weight is: weight of product Id 495 + ( 2 x weight of product A100 ) + ( 5 x weight of product A103D ) +
( 10 x weight of product A106M )
- Q. How can I disable the bread crumbs?
A. You disable the breadcrumbs on a category or item basis. Just add/edit a Category/Product --> Layout --> Hide Bread Crumbs --> Yes
You can also remove the Bread Crumbs on all Categories and Products on the assets/stylesheet.css
.breadcrumbs {
display: none;
}
- Q. How can I have one rightbar image that changes depending on category?
A. Put an image on Layout --> Righ Bar with an id.
<img src="/assets/Image/images/xxxxxx.gif" id="rightbar_image">
On Category HTML, add this javascript code
<script language="JavaScript">
document.getElementById('rightbar_image').src="/assets/Image/images/xxxxxx.gif";
</script>
- Q. How can I reduce the excel file size when I am only changing the prices?
A. You can do any of these:
1. Remove all the columns completely including the header names and just leave the
SKU and Price columns.
2. Split the excel into multiple files less than 2 MB
3. remove lines that are not going to change.
- Q. How can I remove the sub-cat links on the category page?
A. You can do this on a global basis:
BACK END--> SiteInfo --> Site Configuration --> Category Options --> Global Sub Category Levels --> 0
or category basis:
BACK END--> Catalog --> Categories --> Add/Edit Category --> Layout --> Sub Category Levels --> 0
- Q. How can I track what category, products are being ordered from?
A. Create a hidden category, and put the products you want to track the sales there, then create a category, and use the category link to put a link to the hidden category and on that link you can put tracking code related to that category, then on the order page, you can sort orders by tracking code to track what category orders came from.
- Q. How can we add a customer # or any other custom made field on the invoice or a packing slip?
A. For the products, just enable "Show On Invoice" and "Show On Packing" on
BACK END --> Customers --> Fields
For the customers, just enable "Show On Invoice" on
BACK END --> Customers --> Fields
- Q. How come the checkout process keeps looping back to shipping method?
A. There might be a problem on your head tag. Remove LAYOUT--> Site --> Head Tag temporarily and see if this solves the issue.
- Q. How come the Price Table columns are not being updated on the site when I import?
A. Make sure you put absolute values and not excel formulas.
- Q. How do I access photos on a server?
A. There are two ways to access photos on server:
1. Using FTP Program (coreftp.com)(you can Upload/Delete) use a FTP application. The Product photos are in these paths /assets//Image/Product/detailbig or /assets//Image/Product/thumb. You can create a new folder and save your image there.
2. Html Editor (you can Upload images) Go to any product find Long Description and then click on Html Editor, click Insert/Edit Image icon, then click on Browse Server. Here you can Upload images to any folder.
- Q. How do I add more subcat columns?
A. Catalog --> Categories --> Add/Edit Category--> Layout --> Sub Category Columns
- Q. How do I add SEO javascript code on all pages?
A. You can put your code on STORE MANAGER --> Layout --> Site --> Footer
If you are using an external javascript file and you have an SSL enabled site, make sure the location starts with <script src="https://... to avoid security alerts.
- Q. How do I center the subcategories?
A. add the following on your stylesheet
.subCategories {
text-align: center;
margin: auto;
}
text-align: center; will align the links
margin: auto; will align the whole table
- Q. How do I change the also consider button?
A. Just edit the image located on your FTP.
assets/Image/Layout/button_alsoconsider.gif
- Q. How do I change the color of the category links on the left bar?
A. We use CSS for the category links on the left bar. 1. Go to the FTP
2. go to assets folder
3. download stylesheet.css
4. open this on a text editor
5. change the color property on this style class
.leftbar_catLink {
color: #000000;
}
- Q. How do I create a back to top link on my site?
A. On your Layout --> Site --> Header
<a name="top"></a>
On your Layout --> Site --> Footer
<a href="#top">Back To Top</a>
- Q. How do I create a generic form that sends to an email?
A. 1. create form with action="webform.jhtm"
<form method="POST" action="webform.jhtm">
2. for subject of email
<input type="hidden" name="subject" value="PLACE SUBJECT HERE">
3. for acknowledgement page, simply create a hidden category with HTML
<input type="hidden" name="returnURL" value="category.jhtm?cid=put category id here">
note: value must not contain "http" meaning path must be relative
4. for actual data to be emailed, form variables must start with two underscores
for example: <input type="text" name="__Name1">
5. the form accepts file upload in MS WORD or PDF that will be sent as an attachment
<form action="webform.jhtm" method="post" enctype="multipart/form-data">
<input type="file" name="file">
note:
this webform.jhtm doesn't validate so javascript must be written to
enforce required fields before submission.
Fields will be sorted alphabetically and not on the order of fields on the form.
If you want to maintain the order of fields on the form, you can do this.
__a_FirstName
__b_LastName
__c_Address
this form submits to:
BACK END --> SiteInfo --> Site Configuration --> Contact eMail
- Q. How do I create the search form?
A. This is the generic search form
<form action="search.jhtm">
<input type="hidden" name="category" value="" >
<input size="8" name="keywords" >
<input type="submit" value="Go" >
</form>
If you notice, there is a hidden category parameter. If you leave this blank, then it searches for all items on all categories. If you put a valid category id then it will search only on this category. Because of this it is possible to make this parameter a drop down.
<form action="search.jhtm">
<select name="category">
<option value="">All Categories</option>
<option value="1">Put any text here</option>
<option value="2">Put any text here</option>
</select>
<input size="8" name="keywords" >
<input type="submit" value="Go" >
</form>
You can create a category that contains items that are on a specific price range. Let's say "less than $100". On the dropdown you can put this plus the correct category id.
- Q. How do I make a department?
A. To make a department just go to
ADMIN --> Catalog --> Categories --> Add/Edit Category --> Layout --> Show Sub Categories --> Check
The subcategories of this category will show on the left bar.
- Q. How do I make the also consider appear only on the details page of an item?
A. BACK END --> SiteInfo --> Site Configuration --> Also Consider Details Only --> Yes
- Q. How do I modify the ADD TO LIST button?
A. The button is on your FTP:
assets/Image/Layout/button_addtolist.gif
Just download, modify and then upload.
- Q. How do I protect or hide product fields, categories, and products?
A. To hide or protect a product: STORE MANAGER --> Catalog --> Products --> Add/Edit --> Protected Level.
The protected level can be adjusted from level 1-10 to allow certain members who have access to view the product or category.
- Q. How do I put my logo and company information on the generated pdf invoice/packing list?
A. For the pdf invoice, you can upload an image for the header and footer section. Go to
BACK END --> Layout --> Invoice --> Invoice PDF
BACK END --> Layout --> Packing List --> Packing List PDF
- Q. How do I remove the right bar from the template?
A. Just leave the Right Bar (Top and Bottom) empty. You can also selectively hide the right bar on a per category or product basis.
- Q. How do we set a link in the shipping message that goes to UPS?
A. http://wwwapps.ups.com/etracking/tracking.cgi?tracknums_displayed=5
&error_carried=yes&TypeOfInquiryNumber=T&HTMLVersion=4.0&sort_by=status
&InquiryNumber1=#tracknum#
- Q. How does paypal orders work?
A. This is how paypal orders work. We are using Instant Payment Notification (IPN)
1. customer chooses paypal and hits purchase on checkout
2. order is saved and starts as paypal cancelled.
3. customer is redirected to paypal to complete his payment
4. paypal sends a message to your site and site verifies
5. once verified, order status changes to pending
If you look at steps #3 and #4. If something happens and paypal doesn't send a notification to your site then
the order stays as is which is paypal cancelled. It is also possible that your site was busy at that time so the
notification was ignored. Anything can happen.
Your paypal terminal and the STORE MANAGER goes hand in hand. You cannot rely on the STORE MANAGER
exclusively to tell you that a paypal payment is paid or not. In the end you still have to check your paypal terminal.
In certain instances where Step #3 and #4 above fails then you have to do the necessary steps. If you do receive payment from orders that show paypal cancelled then all you have to do is changed the status of these orders to pending.
- Q. How does the auto-ship discount work?
A. Discount will only apply if price of item didn't come from price table or special pricing. If item has a valid sales tag, discount will be applied to the discounted price.
- Q. How does the product comparison feature work?
A. The product comparison works by the customer adding multiple items on the comparison list. These items need to be enabled for comparison by checking the BACK END --> Catalog --> Products --> add/edit --> Compare.
You need to enable the product fields that will show on the comparison list by
BACK END --> Catalog --> Products --> Fields --> Compare.
You can compare 2 to 10 items on the front end. Just configure BACK END --> SiteInfo --> Site Configuration --> Maximum Comparisons.
- Q. How does the SiteInfo --> Search Options --> Default Keywords Search work?
A. The number of search matches will depend on Search Options --> Keywords Delimiter. You can further filter the results by "at least one word must match" or "all words must match".
- Q. How does the SiteInfo --> Search Options --> Keywords Delimiter work?
A. This option is for partial word searching.
If a customer types "123" and you have an item with a keyword that is "12345", then the item is a match if your keyword delimiter is NONE.
If you want full word searching then choose a SPACE or COMMA delimiter. You should modify your keywords to " 12345 " or ",12345,". The customer will then have to type "12345" in order to see this item.
- Q. How inventory works?
A. Once an order has been placed the following steps should be done in order to keep track on inventory
Note: Inventory will triger when order status change to "ship"
Workflow for new order:
- All Items in stock
- (One time ship) change the status to ship
- On fly a packing List will generate
- Notice background of quantity column will be change to green
- To print Packing List Click on Action -> Packing List
- (Partial Ship) Click on Action -> Packing List
- You will see the list of items with the ability of checking live inventory for each product
- You can update shipping tracking Number later (Just for reference)
- If you don't want to ship a product for any reason just simply click on remove check box
- select the quantity that you want to ship at this time from the drop down menu
- Finally click on Generate Packing List
- You will see a list of packing List for this order
- Mouse over the printer icon to print the packing List (There are 2 format for printing)
- Continue this partial generating Packing List untill you fully fulfill the order
- Part of items in stock
- Use Packing List for in stock products
- Use Drop Ship Click on Action -> Drop Ship
- You will see the list of items with the ability of checking live inventory for each product
- You can update shipping tracking Number later (Just for reference)
- If you don't want to ship a product for any reason just simply click on remove check box
- select the quantity that you want to ship at this time from the drop down menu
- Finally click on Generate Packing List
- You will see a list of packing List for this order
- Mouse over the printer icon to print the packing List (There are 2 format for printing)
- Continue this partial generating Packing List untill you fully fulfill the order
- Q. How many SKUs can you put on Product --> Also Consider Sku?
A. You can only put one SKU.
- Q. How shipping & handling works?
A.
Shipping cost = Carrier Price + HANDLING Base + ( weight or price x HANDLING INCREMENTAL )
let's say USPS returns $10.00 shipping for a specific item.
let's assume the subtotal of the order is $100.00
let's define:
Handling = base on price
HANDLING Base = $2.00
HANDLING INCREMENTAL = $0.05
Shipping cost = Carrier Price + HANDLING Base + ( weight or price x HANDLING INCREMENTAL )
$17.00 = ( USPS $10.00 ) + $2.00 + ( $100.00 x $0.05 )
This formula applies to both domestic and international
( there is no way to distinguish between domestic and international )
- Q. How the Box module works?
A. 1. Go to Add Product.
2. Name it for example Box or Gift Box or ... and fill out all the necessary info.
3. Specify the capacity of this box in the box size field.(If you don't put any number, the capacity of this box is unlimited)
4. Go to option and click
Add/Edit
5. click Update Product
6. You can add 2 types of options:
- Click Add -> regular options: eg. size,color,...
- Click Add Box Content -> sku: Simply provide a valid sku which you created before.
- Q. How the Weather module works?
A. If you have products that need to be ship faster, please follow below instruction:
Product setup:
1. Create a product( eg.
Chocolote 1 )
2. Click on
Temperature enable
3. Specify the maximum temperature which this product wouldn't damage.
Shipping Method setup:
1. Go to SiteInfo->Shipping
2. For slow delivery methods enter high temperature. This means delay on delivery wouldn't damage the product.
Rule of thumb: Faster delivery method lower the temperature.
Note:
- If the temperature of destination is higher than the product temperature, User wouldn't see the slow delivery method option in shopping cart.
- If the destination and company location are in the same State temperature effect will be ignored.
- Q. How Ticket System workd?
A. New Ticket
To create ticket click on NEW TICKET in My Account page. Then fill out the form. Be specific and explain your question or request clearly and submit.
When you submit a ticket an email will sent to you and admin to notify of the new ticket.
Tickets
You can keep track of the ticket by going to My Account and click on Tickets. Here you can update the ticket and look at the question/answers of the previous tickets.
After the issue is resolved you can close the ticket.
- Q. How to add customers to mailing list on Advanced Contact upon registration?
A.
- On Advanced Contact create a form (under Form Builder Tab) and name it xxxx
- Button Title: Submit
- trackcode: xxxxx
- click on Save Form
- click on HTML code
- Inside the HTML code you will see this:

Copy and Paste formid(highlighted area) to webjaguar->siteInfo->Site Configuration->form ID
You can add add all new customer mailing list to a specific group:
- On Advanced Contact create a group (under Group Tab) and name it xxxx
- Subject:
- Sender: This is an email address, Required
- Html Content: Required
- Plain Text Content: Required
- Click Add
- you will see the new group on the list, click on it
- copy the ID and save it to webjaguar->siteInfo->Site Configuration->group ID
- Q. How to add inventory?
A.
- Using Purchase Order Module. (Recommended - Keep history)
- Click on Inventory Tab on top and click on Import/Export
- Q. How to add my company Logo to email a Gift Card
A. Just add your company logo to the following location:
assets/Image/Layout/companylogo.gif
- Q. How to add or remove salesTag to selected products?
A. Go to Catalog->Products List->Click on yellow tab
Note: If you don't see the yellow tab just refresh your browser,
- Q. How to add price for each product option?
A. For each option value add price as the following format:
$99.99
Example:
Red $4
Blue $3
or
Red + $4
Blue + $3
for negative price:
Red $-4
Blue $-3
Note : $ sign will trigger the price don't forget it.
- Q. How to add welcome text after customer logged in?
A. Go to Layout -> Site -> Top Bar -> HTML Code Login add the following:
Welcome #firstname# #lastname#
Note: #firstname# AND #lastname# ARE KEYWORDS, DO NOT REPLACE THEM.
- Q. How to change From: on Notify Customer Email?
A. SiteInfo -> SiteConfiguration:
Modify Contact Email as Foloow:
your text<smith@webjaguar.com>
- Q. How to create a DropDown to link to a category?
A.
<form action="category.jhtm" >
<select onchange="submit();" name="cid">
<option value="13">category 1</option>
<option value="14">category 2</option>
<option value="23">category 3</option>
<option value="3">category 4</option>
<option value="4">category 5</option>
<option value="2">category 6</option>
<option value="6">category 7</option>
</select>
</form>
- Q. How to create Form that needs more than 10 Custom Fields?
A. Lets say you want 5 checkboxes under the subject Movie.
Please select all types of movie you want to watch:
1. movie type 1
2. movie type 2
3. movie type 3
4. movie type 4
5. movie type 5
In this case you can use only one custom field as follows:
<tr>
<td class="whiteTd" > Please select all types of movie you want to watch?
</td>
</tr>
<tr>
<td class="whiteTd" > movie type 1
<input type="checkbox" name="emailCollection.customfieldnote1" value="movie type 1">
</td>
</tr>
<tr>
<td class="whiteTd" > movie type 2
<input type="checkbox" name="emailCollection.customfieldnote1" value="movie type 2">
</td>
</tr>
.
.
.
<tr>
<td class="whiteTd" > movie type 5
<input type="checkbox" name="emailCollection.customfieldnote1" value="movie type 5">
</td>
</tr>
Note: Notice that in all five input tag the name is equal "emailCollection.customfieldnote1" and the value is added.
- Q. How to duplicate a product?
A. 2 ways:
1: When you add a product from the admin, you can load a product from SKU.
2: From the excel, you can simply copy one row and insert it into another...
Note: that not all the products characteristics are copied, but at least you have the base...
- Q. How to enable JavaScript in IE7
A. Microsoft Internet Explorer 7
In Internet Explorer 7 click on the 'Tools' button (step 1)
located in the upper right part of the screen (next to the gear icon) and select 'Internet Options' (step 2)
as shown on the picture. Click on the 'Security' tab (step 3)
and then click on the 'Custom Level...' button (step 4).
Scroll down (step 5)
until you can see options as shown on the picture. They are located near the bottom of the list. Set the option 'Active scripting' to 'Enable' (step 6).
Then click on the 'OK' button (step 7).
Click 'Yes' (step 8).
Click 'OK' (step 9).
This concludes enabling JavaScript for Microsoft Internet Explorer 7. If the problematic Web page (which did not work without JavaScript) is still opened inside Internet Explorer, simply press the 'F5' key on your keyboard to reload it. Now it should work correctly.
- Q. How to enable search on Product Field?
A. On Back-end
Step 1: Catalog -> Categories:
Choose a category that you want to enable Search on product Fields. Then click on Product Field Search
Step 2: Catalog -> Products -> Fields:
On the Search column select the fields you want to search. These Fields will appear as a drop-down menu the front-end on the category you chose on the step 1.
That's it. The pull-down dynamically generated depends on the products on the selected category.
- Q. How to get my Authorizenet API Login ID and Transaction Key?
A. On Authorizenet control panel.
go to account (on top) and then click on
API Login ID and Transaction Key
follow the steps and then go to
Just fill this up
BACK END --> SiteInfo --> Site Confiiguration --> Payment options --> Authorize.Net API Login ID
BACK END --> SiteInfo --> Site Confiiguration --> Payment options --> Authorize.Net Transaction Key
Account should be in LIVE MODE in order to charge
- Q. How to load data from another sku? (Duplicate a product)?
A. Go to Catalog->Products List->Add Product->Click on yellow tab
- Q. How to merge two column in excel?
A. 1- Assuming you have 2 columns and you want to merge them, one with the SKU and the other with .jpg, copy the 2 columns to Word
2- Select the 2 columns only (not select all), and go to the Table menu and click on merge cells
3- Go to Find and Replace in the Edit menu, and do the following:
- Check the 'Use Wild card' box
- In Find What --> select 'Any Character', and type after it '.jpg'
- in replace with --> type '.jpg'
- just apply to all
4- Then copy and paste the entire column into the right field in excel
- Q. How to move or add one category to another?
A. To Add a category under an existing category:
click on View Sub-Categories (0) and then Add category here.
- Q. How to set Free shipping above $100 and flat $6 below $100
A. Go to
SitInfo -> Shipping -> Shipping & Handeling and fill out the first part
Price Limit: 100
New price cost: 0.00
New Shipping Title: Free Shipping
for below $100
Shipping Title: Flat Price or UPS flat 5 day delivery
Shipping Base: 6.00
- Q. How to set Free shipping above $100?
A.
Price Limit: 100
New price cost: 0.00
New Shipping Title: Free Shipping
- Q. How to setup $4.95 flate rate shipping for all orders?
A. Go to
SitInfo -> Shipping -> Shipping & Handeling and fill out the first part
Price Limit: 0
New price cost: 4.95
New Shipping Title: Shipping
- Q. How to setup minimum order?
A.
SiteInfo -> Site Configuration -> Minimum Order Amount
- Q. How to show Sub-Category on the left bar?
A. Back-End SiteInfo - > Site Configuration -> look for Layout Option and chose Show-Sub category
- Q. How to upload PDF file to the server?
A. There are two ways to upload files to server:
- Use FTP access.
- On backend (admin)
- Go to any Category and click on html editor under HTML Code.
Click on this iamge.
- Click on Browse Server.
- Click Browse and select the PDT file from your local computer.
- Click Upload.
- You will see the PDF file on the server.
- It possible to create a folder and upload PDF file there.
- After file uploaded, simply close those two windows.
- Remember the path of this file do you can reference it later.
- Q. How to use contactus.jhtm and aboutus.jhtm?
A. After Creating categories for Contact Us and About Us. copy that category ID into SiteInfo -> Site Configuration and paste it into the ContactUs Category Id or AboutUs Category Id
You can use the following URL convention
http://yourDomain/contactus.jhtm
http://yourDomain/aboutus.jhtm
- Q. I am importing tan excel with the TM symbol, but they show up on the page as question marks.
A. Not all symbols are valid in HTML. You need to use the HTML equivalent for these special symbols.
ie. ® = ®
- Q. I have AuthorizeNet configured, what is the difference between "Authorize Card" and "Charge Card"?
A. "Authorize Card" means you are just confirming the credit card if it is valid. In a way you are reserving the
money for capturing later. You can then later charge the card by clicking the "Charge" button.
"Charge Card" is authorizing and capturing at the same time.
- Q. I want to change the background of the leftbar and use an image instead. How can I do that?
A. Just add a background image on the stylesheet
<style type="text/css">
<!--
.leftbar {
background-image: url(/assets/Image/Layout/background.gif);
}
-->
</style>
- Q. In quick mode the photos don't show on the front page, is there a way that I can get them to show?
A. Make sure this is not zero.
BACK END --> SiteInfo --> Site Configuration --> Quick Mode Thumbnail Height
- Q. Is it possible for me to load an image for the background white space of a category?
A. <style type="text/css">
<!--
.content {
background: #FFFFFF url(assets/Image/Layout/background.gif);
background-position: center;
background-repeat: no-repeat;
}
-->
</style>
- Q. Is it possible to change a subcategory to a main category?
A. Yes, just edit it and clear the Parent ID on the top right portion, then update.
- Q. Is it possible to display the subcats in a row instead of a column?
A. SiteInfo --> Site Configuration --> Category Option --> Sub Category Display --> Column or Row
- Q. My outgoing email does not work with Outlook!
A. Outgoing email needs Authentication.
Open Outlook Go to tools->Accounts->Mail->Properties->Servers
Under Out Going Mail Server click on Authentication and Cleck setting and select "Use same settings as my incoming mail servcer"
- Q. What are the link convention for some pages like shopping cart, etc?
A. Home
--> home.jhtm
My Account
--> account.jhtm
My List
--> viewList.jhtm
FAQs --> faq.jhtm
Policy
--> policy.jhtm
Shopping Cart
--> viewCart.jhtm
Logout
--> logout.jhtm
Login
--> login.jhtm?noMessage=t
or
--> account.jhtm
Order History
--> account_orders.jhtm
Product
--> product.jhtm?sku=__
or
--> product.jhtm?id=__
You can create a category for About Us, etc. Just replace the underline below with the correct Category ID.
--> category.jhtm?cid=__
- Q. What are the steps so I can move the thumbnail and big pictures from the old to the new system?
A. 1. Move the big images from MEDIA FOLDER --> detailsbig on the old system to FTP --> assets/Image/Product/detailsbig on the new system.
2. Move the thumbnail images from MEDIA FOLDER --> thumb to FTP --> assets/Image/Product/thumb on the new system.
3. Put the image names on Image columns of the export/import excel file on the new system.
On the old system the convention is SKU_1.jpg, SKU_2.jpg, etc. This means each item require it's own images. On the new system, you can have one image for multiple items.
- Q. What controls the image size of the thumbnails?
A. The thumbnails are controlled by CSS using the class "thumbnail_image", just adjust the height or width. You use height or width to force the dimension. Removing it will show actual dimension.
- Q. what is AdvancedContact Import Excel file format?
- Q. What is Custom Shipping Internal Checkbox?
A. If you want to use these custom shipping only on back-end, check the Internal check-box, this way these custom shipping wouldn't appear on the front-end.
the list of custom shipping will appear on invoice Edit and Add invoice.
- Q. What is the absolut path to my product image?
A.
http://yourdomainname/assets/Image/Product/detailsbig
http://yourdomainname/assets/Image/Product/thumb
- Q. What is the convention for links w/ tracking code?
A. for a link going to the home page w/ tracking code "campaign"
http://www.advancedemedia.net/home.jhtm?trackcode=campaign
OR
http://www.advancedemedia.net/home.jhtm?tc=campaign (tc works also works for the links below)
for a link going to a category w/ tracking code "campaign"
http://www.advancedemedia.net/category.jhtm?cid=_____&trackcode=campaign
for a link going to a an item w/ tracking code "campaign"
http://www.advancedemedia.net/product.jhtm?id=_____&trackcode=campaign
OR
http://www.advancedemedia.net/product.jhtm?sku=_____&trackcode=campaign
NOTE: Replace the underline with the correct category id or product id or sku.
You can also put #trackcode# on any Category HTML Code. This will be replaced dynamically by the current trackcode if present. This is useful for hidden fields on forms.
<input type="hidden" name="trackcode" value="#trackcode#">
- Q. What is the link to add an item to cart?
A. addToCart.jhtm?product.id=__&quantity_1=__
put product id on first underline and the quantity on the next
- Q. What is the quickest way to delete the products database?
A. The quickest way is to go to the products manager on the admin area, and list 500 products at a time, and click on the check box on top to select all 500 products, and you can delete 500 at a time. We do recommend that you back up the database before you delete, just export the database.
- Q. What is Ticket System link convention.
A. Ticket list: /account_ticketList.jhtm
Create Ticket: /account_ticket.jhtm
- Q. When I put key words in the category and product Head Tag it distorted the layout of the page. Why?
A. Make sure you include the reference to the stylesheet on the Head Tag
<link href="assets/stylesheet.css" rel="stylesheet" type="text/css">