
Some of you asked me for Ecommerce /shopping cart in Blogger platform . My result is template SimplexEshop .This is a test template and need more time to finish because every shop has its own options in shipping/tax rate/price/promotion ,and fill all needs with only Javascript is an impossible mission . But I want to show it here to get your feedback and hope I can make it better .
How to install this template
1,Download the template file .2,Open template file in a word editor .
3, To make a menu navigation
Find this code
<ul id="nav">Add link to your categories like my other template . You can see on Simplex Enews or Simplex Transcript for more about this multi-level menu .
<li><a href="http://simplexeshop.blogspot.com">Home</a></li>
<li><ahref="http://simplexeshop.blogspot.com/search/label/shop">Store</a> <ul class="children"> <li><a href="">Category</a></li> <li><a href="">Category</a></li> </ul> </li> <li><a href="http://simplexeshop.blogspot.com/search/label/blog">Blog</a></li> </ul>
4,Basic Shop Setting
This template was built based on SimpleCart solution (Simplecartjs.com ) , what I did only integrated Simplecart to a blogger template . So all options /setting for shop ,you can see in simplecart documentation .
a,Payment method
This Template support two payment methods : Paypal and Google Checkout . Default is Paypal ,and it was set in these line :
simpleCart.email = "brett@wojodesign.com";If you want to use Paypal ,you can replace brett@wojodesign.com to your paypal email .
simpleCart.checkoutTo = PayPal;
If you want to use Google Checkout ,you can replace two lines above with
simpleCart.merchantId = "111111111111111";Change 111111111111111 to your Google Checkout merchant ID .
simpleCart.checkoutTo = GoogleCheckout;
b,Currency
This template support GBP,USD ,and EUR . Default is USD and it was set in this line
simpleCart.currency = USD;if you want to change the currency ,you can change USD in the line above (marked in bold) to GBP or EUR .
c,Tax rate
The default tax rate was set in this line
simpleCart.taxRate = 0.08;You can change the value from 0.08 to another rate . If you don't want to add the tax rate ,you can delete this line
d,Shipping
There are many ways to calculating the shipping cost for an order :
-Add a flat rate to the entire order .This is the default method in template and it was set in this line
simpleCart.shippingFlatRate = 5.25;(an amount 5.25 shipping cost will be added to the entire order )You can change 5.25 to the value you want.
-Add a shipping cost to every item in the cart : if you want to use this method ,you can delete
simpleCart.shippingFlatRate = 5.25;and use this line
simpleCart.shippingQuantityRate = 3.00;This line will add an amount 3.00 to every item in the cart .Of course ,you can change 3.00 to other value .
-Add a shipping cost as percentage of total cost : to use this method ,you can delete the default
simpleCart.shippingFlatRate = 5.25;and use this :
simpleCart.shippingTotalRate = 0.05;
This line will add a shipping cost as 5% to the total cost .You can change this rate to another value .
If you require some advanced calculations for shipping, you can delete the default line and use the prototype object for CartItems:
CartItem.prototype.shipping=function(){
// we are using a 'size' field to calculate the shipping,
// so we first make sure the item has a size
if(this.size){
if( this.size == 'small' ){
return this.quantity*5.00;
} else if( this.size == 'large') {
return this.quantity*7.50;
} else {
return this.quantity*10.00;
}
} else {
// use a default of $2.00 per item if there is no 'size' field
return this.quantity*2.00;
}
}
The 'this' here refers to the item, and we are using a 'size' field and the item 'quantity' to calculate the shipping. Because an item may or may not have a size, we check to make sure it does with the 'if(this.size)'. If there is a size field, we use a different rate for each size and return a value based on the item quantity. Otherwise, we use a base rate of 2.00. simpleCart(js) will use the global shipping rates, and then add the shipping value for each item in the cart.
5,When you finish editing ,upload template to Blogger . Go to Dashboard ->Design ->Page elements
6,To add logo
click on logo widget
add logo as this image bellow

7,There are many places that you can add your own widget . For example ,you can add link list widget for making category menu ,subscription widget ,page list widget ...
8,That's all for install this template .
How to use this template
It's a little bit difficult when using this template .To post product to shop : Go to Dashboard -> Posting -> New Post .Click on Edit HTML and made a post with this structure
<div id="description">In structure above , this is the product information section :
<img src="image url goes here"><img src="image url goes here"><img src="image url goes here">
PRODUCT INFORMATION..................................</div>
<div class="simpleCart_shelfItem">
<span class="item_name">item name ...</span>
Price : <span class="item_price">price .........</span>
Quatity : <input class="item_quantity" type="text" value="1" />
<a href="javascript:;" class="item_add" title="Add to Cart">Add to Cart</a>
</div>
<div id="description">you can add image by using <img src="image url goes here"> and add product description bellow (in the text product information goes here )
<img src="image url goes here"><img src="image url goes here"><img src="image url goes here">
PRODUCT INFORMATION GOES HERE..................................</div>
After the product information section ,we move to add to cart section :
<div class="simpleCart_shelfItem"><span class="item_name">item name ...</span>Price : <span class="item_price">price .........</span>Quatity : <input class="item_quantity" type="text" value="1" /><a href="javascript:;" class="item_add" title="Add to Cart">Add to Cart</a> </div>in this section ,add the item name in where I marked item name .... ,add the price in where I marked price ... and change the quatity from '1' to another value .
If you want to set a special shipping cost for this item only ,you can add this line to the add to cart section
<input class="item_shipping" value="xxx" type="hidden">
replace xxx to the shipping cost of this item
and the code of Add to cart section will become :
<div class="simpleCart_shelfItem">When you set shipping cost for an item ,the method which used to calculate shipping fee in step 4 will be overide .
<span class="item_name">item name ...</span>
Price : <span class="item_price">price .........</span>
Quatity : <input class="item_quantity" type="text" value="1" />
<input class="item_shipping" value="xxx" type="hidden">
<a href="javascript:;" class="item_add" title="Add to Cart">Add to Cart</a>
</div>
After finish editing the post with structure above ,add a label 'shop' at the end of post ,and the product will be added to shop with sliders ,price and add to cart function
To post to Blog : to post to blog ,you can make a normal post ,and add a label 'blog' at the end of post .
It's similar to my older template Simplex Portfolio ,in Simplex Portfolio ,we have two display mode : display a post as a post in gallery ,and display a post as a normal blog post .In this template ,we also have two display mode : display a post as product in shop and display a post as a normal blog post .
For the page : you can make pages as normal .
That's all for this template . I think it is not easy to use and handle .If you familliar with the code ,you can take a try ^^ For detail shopping cart settings ,you can see more in simplecartjs
Feel free to leave me feedbacks






Gabfire theme have published new theme. can you convert it?
ReplyDeletehttp://www.gabfirethemes.com/snapwire/
and
http://www.gabfirethemes.com/linepress/
You ARE AWESOME!!
ReplyDeleteThis is what im searching for all these years,really THANKS!!
Best Regards,
CSkuan
Great template dude. More than online shopping template
ReplyDeleteProbando, parece exelente!
ReplyDeleteThis template is very good, but does not work in Blogger. Posts are not shown. That does not go see anything:
ReplyDeletehttp://3aribenblog.blogspot.com/
I've published, and nothing shows...
...?
@UrbanBg : You didn't add label 'shop' to the post ,so nothing will be shown .Pls check my instruction
ReplyDeletehow can i add label 'shop'to tha post
DeletePlease teach me how to put shop in the end of post? immediately..please..
DeleteThanks so Much.
ReplyDeleteI wil try to make Blogspot to sell something :)
Latest Products is the problem. If you type will be a very good solution.
ReplyDeleteGreat one nhamngahanh,
ReplyDeleteJust one little add, a product rating widget will make the template more professional ^^
This comment has been removed by a blog administrator.
ReplyDeleteYou r really biggest blogger user in the world...
ReplyDeletewhy i can't choose multiple item to be in the cart. When i click on item A, it will be in the cart, but when i click on other item, item A removed from the cart.
ReplyDeleteok. fixed it. thanks
ReplyDeleteNice template. Thanks Huy :)
ReplyDeleteThanks Alot friends. This is the best template that I've searching for. And its really free
ReplyDeleteOne more thanks bro ^_^
hi, it's an owesome template. my question is, if i want to use bank transfer for the payment method. how do i make it?since i have no paypal account.
ReplyDeleteregards,
jefky
can I use it without paypal???
ReplyDeleteChào admin tôi đã sử dụng thử Simplex Eshop tuy nhiên bài đăng không được hiển thị ở trang chủ mặt dù tôi đã thêm label.Hướng khắc phục?.Nhãn bài đăng có định trước không? Tôi thấy admin hướng dẫn đăng bài chưa thực tế lắm vì đây là một giao diện hoàn toàn pro!
ReplyDeleteXin cảm ơn!
@suports12@yahoo.com.vn : thực ra đây là 1 template thử nghiệm của mình ,hơi khó dùng và lằng nhằng vì nó hoạt động trên nền Blogger .
ReplyDeleteĐể hiện bài viết trên trang chủ thì bạn có thể thêm label 'shop' ở cuối mỗi bài viết . Còn các chi tiết khác bạn có thể xem ở bài viết của mình và đặt câu hỏi tại đây (vì comment ko thể viết dài được :( ) ,còn hướng dẫn thì mình đã cố hết sức để viết rồi ..... thông cảm ,khả năng trình độ đều có hạn .
@administrator : You can switch to Google checkout . See my post again,pls
ReplyDelete@jefky Que : Sorry I can't help you because this template is not a wordpress or joomla template .It's just a Blogger template comes with Simplecart (a simple javascript solution for shopping cart ) . As you see ,it's very simple and straight ,so it can't help you for complex transactions or payment method .
In my opinion ,if you want to do further transactions such as accepting payment from Visa/Master card or bank transfer automatically ,you can find professional software such as Joomla-virtual mart ,Ubecart ...
If you still want to do bank transfer with this template ,you can write your own bank account number and your phone number on site . Any one who want to buy something from you must send the payment via bank first and then make some phone calls to confirm ^^
i can't not use it . please help me. yahoo ms: lovelace_2101
ReplyDeleteproduct is not show in home
ReplyDeleteI just wanna know there is a problem in posting. after i follow the steps in how to make a post, then i try it in my blog. The post are repeating three times for every post. Is that there is javascript problems. My blog is http://j-codes.blogspot.com
ReplyDeleteHi!
ReplyDeleteGreat template !
But, I would like to remove the 'related products' function - I believe that would be more convenient for my readers.
Thanks for your help :)
Gabfire theme have published new theme free. can you convert it blogger?
ReplyDeletehttp://www.gabfirethemes.com/demos/snapwire/
@J-MP3
ReplyDeleteThat is most likely because you have more than one label for your post. So far it looks like you can either have label "shop" or "blog" for your posts and no other labels if you want it to work.
Brilliant template and i really want to use it, just im not sure if i can or want to get rid of all my labels. Have to test everything before to see how it will look like.
@All : thank for your suggestions and advices .
ReplyDelete@jefky Que : I have no idea because this template supported Paypal and Google checkout only . But you can make a blog showing your products and your contact number ,bank account number .Every one who want to buy an item from you can make a phone call for confirm and send payment to your bank account first .
@Administrator :You can switch to Google Checkout . Paypal and Google checkout are two payment methods that SimplexEshop template support at this time .
@lovelace : pay attention to the instruction and remember to add a label 'shop' to posts you want to show in shop and a label 'blog' (displayed in store section) if you want to make it a normal blog post (blog section )
@J-MP3 and Selina : Two labels 'shop' and 'display' are the pivot point for how this template display . If you add label 'shop' to a post ,this template will display your post as a post on product( comes with product information ,image slide ,add to cart ... ) .If you label a post 'blog' this template will show your post as another normal blog post .
If a post has both of 'shop' and 'blog' label ,you will see errors .If a post has no label ,you will see error too .
For other labels ,you can add them to classify item in shop or blog post .
For example ,if you has a monitor,you can add a label 'shop' to the post for showing it as monitor information and Add to cart function . You can also add another label 'monitor' to classify this item in 'monitor' category .
The same to a post in 'blog' ,you can add more label 'promotion information' to this post ...
In general ,there are two section 'shop' and 'blog' in this template ,use label 'shop' for showing in shop section and 'blog' for showing in blog section . Keep these section separately . I mean there's no post with two labels or the same label,for example ,if there's a post in blog section has label 'blog' and 'promotion' and there's a blog in shop section has label 'shop' and 'promotion' ? what will be happened ? There's an error ^^
That's all .Hope it helpful to you
Hi Huy
ReplyDeleteCan you help me? I want to show 9 items on the main page, but i can't setup it at Formatting/Show at most.
Many thanks!
Hy Dear how are u??? i feel pleasure to use your templates and work, this one is a gud template i like it, my question about this template is, i can post the "post" like this template way 3 pics are moving simultaneously in single post in my blogger template Simplex E-News is this possible???? tell me the solutions at shaanali.info@yahoo.com
ReplyDeletehi, man! i got a problem with your template.
ReplyDeletein items page type. it shows 3 post.body
why? i didnt find where is the problem,
pleas.
example: http://www.dragao-chines.com/2011/05/direto-da-china-transcend-16gb-sdhc-sd.html
awesome...nice switch thumb....
ReplyDeleterock n roll \m/
hello want to know if you have any configuration of this template does not appear on the homepage postagen?
ReplyDeleteyour template is wonderful
ReplyDeleteplease tell me how do I put old posts on the main page.
he only has 17 postings the other posts he does not show why.
how do I put another category with the same function category shop
ReplyDeleteHi nhamngahanh,
ReplyDeleteI have follow all the instruction (add label "shop" or "blog"), but my homepage is still blank.
Try check this - http://grandebook-store.blogspot.com/search/label/blog
Nice template, already download up try.
ReplyDeletemy question is how to change to IDR (indonesia currency)
thx you
@HafizFahmi : There are two labels for posts to arrange them in the right style 'shop' and 'blog' . In a post ,you must choose one of them to set the display style ,if you set the label blog,do not add more label shop . In your blog,I see you added both of them 'shop' and 'blog' in one post ,so it can not be displayed . I mentioned this error in instruction and comments above .
ReplyDelete@Customer : This template support only 3 currency units : GBP,EUR and USD .
how can I do pro shopping cart send me an email request to purchase
ReplyDelete@compre facil fortaleza : you should consider to other platform such as Virtualmart in Joomla ,Magento ... they are fully function shopping softwares that can provide you anything you like and a set of plugins for extended funsction . This shopping cart template is very simple and it can't do what you want .
ReplyDeleteStill same, check the main page - http://grandebook-store.blogspot.com/
ReplyDeleteneed to know if you are interested in helping to transform the shopping cart cs a message for my email
ReplyDeleteHello
ReplyDeleteis "http://dinhquanghuy.110mb.com/simplecart/simpleCart.js" down ?
Shopping Cart and links does not work ...
Thanks for your help
Hi nhamngahanh,Thank you very much for the nice teplete,i am using simplexTranscript1,i am happy with this,but it will take very long time to load the page specially this "http://dinhquanghuy.110mb.com " is taking long time to load,is there any solution to get ride from this problem,i will be more appreciate with your fast response.thank you.
ReplyDelete@All: Please host the java-script files in your own hosting. It can solve your problem.
ReplyDeletetemplate has been waiting for this. I immediately try to plug, but why I am posting pictures of products who do not appear on the home page, please answer love yah .. tkshttp: / / sampelmedia.blogspot.com /
ReplyDeletehow do I change the payment for the Brazilian currency real, you already said it is programmed to usd and eur more want to help me how can I do to switch to the Brazilian currency real
ReplyDeleteI can't seem to get this template to work correctly. I've followed all of the steps and I did as someone suggested and I am hosting the javascript files myself, so I know that isn't the issue.
ReplyDeleteBut the posts don't show up correctly as products and even if you go to the product page, it doesn't behave like the demo does. I've confirmed adding 'shop' as the label for each product post.
Any ideas or thoughts? Site: http://shoppolysbakery.blogspot.com
This comment has been removed by the author.
ReplyDeletegood day, I just wanted to ask .. adamo if you make custom templates,
ReplyDeleteI need a special design for my blog, I've seen most of your work
and they are amazing and very good, for the same reason pregunarte wanted, and I've already sent
mail with the information I need and information on how to pay
Thanks for your attention ..
Best Regards
Hi,
ReplyDeletei tried to link my shop item to the category i created using 'http://simplexeshop.blogspot.com/search/label/dress'
it came out as extract of the title. Would like how do i display it like it appears on the latest product page?
Hey! There is a comment from "Steve" on July 8th... It would be awesome to have a response to that! It's for my blog and I would really like to get it up and running sometime...
ReplyDeleteThanks!
I have been waiting for some help since July 8th, posted a reminder on the 13th, and still have had no help. ::::
ReplyDeleteSteve Webber
8 July 2011 05:33
I can't seem to get this template to work correctly. I've followed all of the steps and I did as someone suggested and I am hosting the javascript files myself, so I know that isn't the issue.
But the posts don't show up correctly as products and even if you go to the product page, it doesn't behave like the demo does. I've confirmed adding 'shop' as the label for each product post.
Any ideas or thoughts? Site: http://shoppolysbakery.blogspot.com
:::: I have changed my mind. I no longer wish to use this template as I cannot get the help needed to make it work. It's a shame because I really liked how clean and simple this looks. But I would expect to be able to get a little assistance from the creator of it.
Thanks.
@Poly's : Sorry for long delay,I took an eye surgery ,so I couldn't answer your question . Hope you understand that I could not help you from hospital ^^
ReplyDeleteFor your site ,I've just take a look and I really want to know what changes did you made in template ? and if possible ,could you send me the template file ? some elements are not in right place and there are some elements added (for example ,the cart appeared in home page ,it shifted other elements down and out of CSS tags that covered ,and make the switch button can not work)
If you want another try ,I think the best way is to install this template in a brandnew blog ,do not make any changes ,insert scripts ...etc...,just follow all my instruction,step by step ,till you see the result as the live demo ,do backup and then make changes . By tracking every step ,you can know what is the reason for error . This template is not easy and perfect to use .
In case you want to change to another templates ,there's no problem to me . I can understand
nice template. Thank's for that........
ReplyDeleteHi, could you explain what i need to do to upload this script for my own server please? I´m afraid to install the shop and the script don´t run anymore... I put at a test blog and it´s really nice!!!!!!
ReplyDeletedear friend is not making the exchange of slides in my blog posts this static images of products and believe that faulty slide cs check the demo
ReplyDeleteJust want to bookmark the pages, as "http://xxxxx.blogspot.com / search / label / XXX" also show thumbnails of the images of the posts. What is the code for this? thx!
ReplyDeleteI wonder if we can have another label equal to the shop. Having two or more pages with the same template labels.
ReplyDeleteI need to work more labels.
thanks!
Hello! I managed to make all pages of label work well. Namely:
ReplyDeletehttp://livraria2.blogspot.com
http://livraria2.blogspot.com/search/label/casa
http://livraria2.blogspot.com/search/label/shop
Replacing the three conditional
trade for
.
But despite this, still can not use more than one label on each post. I believe that adding the code
"max-results = 1" conditional on any of these, the problem is resolved. keep trying.
hugs,
...
ReplyDeleteReplacing the three conditional
b:if cond='data:label.name == "shop"'
trade for
b:if cond='data:blog.pageType != "label"'
Thank you for responding. I ended up taking a break for a few days. I have started from scratch over and over with this template and still have the same problems. I know I must be missing something because the demo looks fantastic. I simply cannot figure out what it is. Is there any way I can add you as admin and you can take a look at the html? See what in the world I have done wrong?
ReplyDeletedear friend is not making the exchange of slides in my blog posts this static images of products and believe that faulty slide cs check the demo
ReplyDeletescript slide pictures are defective help me. you put a wonderful template does not help then taking more doubts then we want to help a
ReplyDeleteunfortunately we have to search another template because you do not help your readers to your template resove problems
ReplyDeleteprovides the script for the scrolling image of the products I help to host your readers
ReplyDeletepor favor ayudame no puedo poner las entradas ayudame.
ReplyDeletecontaactame : craneo_23_13@hotmail.com te pago si me ayudas
please help me I can not help me make tickets when I get the entries placed in the primary target, can you help?
ReplyDeletecould help me with the template?
CONTACT: craneo_23_13@hotmail.com pay you if you help me
Valorar traducción
please script slide products
ReplyDeletewent i try to upload this templet on blogger it give me error massage :
ReplyDeleteYour template could not be parsed as it is not well-formed. Please make sure that all XML elements are closed properly.
XML error message: The entity name must immediately follow the '&' in the entity reference.
Error 500
plz help
@izabel cavalcante 27 anos : free to switch another template or solution . I don't mind .
ReplyDelete@Administrador : sorry I don't understand your request .A system for ticketing online ?
@Vendas em Fortaleza/Brasil :check out template ,download all files hosted in 110mb and then upload to another host . At this time ,you can do this because 110mb live again ,do it before this host die again.
@Zainol Rashid : go to centricle.com and encode xml data before putting them in template .
please script slide of product to email jucieniofreitas@hotmail.com
ReplyDeleterevealing picture of the products to script host
ReplyDeleteenter the javascript code for the product images
ReplyDeleteI found a "loose" css code. I am surprised that Blogger code check didn't correct it.
ReplyDeleteLook for this code:
a.product_thumb img {width:200px;height:184px;}
padding:80px 0; margin-bottom:5px; }
#content .display li a.product_thumb { margin-bottom:5px; overflow:hidden; width:210px; height:180px; display:block; float:left; }
The row padding:80px is not belonging to any class or id so just remove this.
I need the scrip slide products to host and update template
ReplyDeleteneed to update the template to be much greater error in the script to satisfy their readers
ReplyDelete@Vendas em ...
ReplyDeleteAbout the slides script
The slide script link in this shop template is pointing to a dead link
http://www.gabfirethemes.com/demos/linepress/wp-content/themes/grey/inc/js/slides.min.jquery.js?ver=3.1.1
The slide script is located here: http://www.slidesjs.com
Their demo is pointing to an older version 1.1.3
http://www.slidesjs.com/js/slides.min.jquery.js
If you need the latest version 1.1.8 you need to download and find a host for it. I just use my own Dropbox.
404 Error! Page Not Found
ReplyDeletecongratulations thanks very thanks
ReplyDeleteOK great
ReplyDeleteYou have this now
http://www.slidesjs.com/js/slides.min.jquery.js?ver=3.1.1
I don't think you need the last part "?ver=3.1.1" so only this
http://www.slidesjs.com/js/slides.min.jquery.js
If you look for the part
$('#slides').slides({
you can find the controller for the slides. If you for instance add
effect: 'fade',
you can have the images fade instead of slide. More controls at their web page.
congratulations is very good thanks
ReplyDeletei also got the problem that when the posts are labeled as "shop", their contents repeat 3 times in their entries. i havent labeled them as "blog". will it be the problem of the coding for the content??? please help >_<"
ReplyDeletenice sharing... thanks alot
ReplyDeleteI am trying to include the button "Add to cart" also on the starting page. There should be an alternative to buy immediately on page 1.
ReplyDeleteThere is no problem adding the code so that the button appears. I use the same as in the posts "item_add" etc.
This should add one item per click. But clicking the button does nothing. I can't figure out what is missing.
Can someone help me with this?
Hi Dudi,
DeleteI just wonder you manage to include "Add to cart" button at the starting page? Would you mind to share with me the clue or the modified template!!
Thanks
nice, Working successfully. But I have a problem.
ReplyDeleteIf I try to make more level its not showing thumb display. I need to show other level like shop level display. how can I do it?
friend as you put -1 + and STL in your shopping cart need your help
ReplyDeleteGood great thema its work very shoping cart, thanks a lot :)
ReplyDeletehttp://pilar-jaya.blogspot.com/
How to showing page navigation in search label results page?
ReplyDeleteThanks
Hi :) wanna your suggestion to change paypal setting to email
ReplyDeletethen who click checkout will directly enter email form to me.
thank before
http://pilar-jaya.blogspot.com/
As much as I wanted to use this however it's too complicated for me to handle :(
ReplyDeleteCreating More Labels in Order to make Categories. I have been trying for a long time to find out how to create more labels, that it would work the same as shop, because if I make any category it doesn't appear the same as the shop, so categories turns out to useless in this case if it's not possible to create more labels to make it work the same as shop, is there any way to fix this and add more labels?
ReplyDelete@ GLAM by Nature
ReplyDeleteI don't think you can do that. But you could use another method to group items.
Use the built in search function. Try these search criterias on the demo site:
simplexeshop.blogspot.com/search?q=phone
simplexeshop.blogspot.com/search?q=camera
simplexeshop.blogspot.com/search?q=wifi
This could easily be added to a menu as
• Phones
• Cameras
• Wifi
It is not as precise as categories but it will work. All you need to do is ensure that you have the correct keywords in the text of every item.
thats a shame. i really hope we can make more labels for categories
ReplyDeletei just realized you can add more labels in simplex portfolio template. so it can done to this template also right? since both simplex portfolio and simplex eshop have two display mode.
ReplyDeleteplease. anyone? this is killing me
ReplyDeleteAnyhow, I faced another problem I don't know is it set in template to be like this or what, because it seems that I can not find that it would blogger settings problem. What happens when I add more then 25 products, not all of them are shown, it seems that they are missing or something. Everything is done according to the instructions but it just seems to disappear when it reaches around 20+ products.. What should I do to enable all of the added products to be visible?
ReplyDeleteIs it possible to add pagination at the bottom to show pages like 1-2-3... Next. ? or something like that?
Thank you for your reply..
Dutkowski friend if possible take much of your template please get in touch
ReplyDeletethere is a problem with the search button suddenly. Is anyone else experiencing it too?
ReplyDeletehi guys i need help. i have been using Dudikowski's advice of using the search function to categorize items. however the search button suddenly stopped working. Can Anyone help me wth it?
ReplyDeletemy blog is thetrendybunch.com
Hello friend!
ReplyDeleteLoved this your template, but I can not make the products appear here as in the demo available on its website.
I tried almost everything but still can not, if it can be kind enough to send me by email that the script should be placed in a new way of posting and set it to appear as the products in your demo, I will be very grateful and I thank your attention.
My email is: cristhopher@hotmail.com.br
PS.: Sorry for the mistakes I used google translator to translate the text from Portuguese into English.
Hi guys.. is there a way to access individual products from paypal? Because in paypal's interface, it allows stock management. It is rather important as i do not want customers to be paying for something that I no longer have in stock and go through all the troubles of refunding and also, the dissapointment.
ReplyDeleteIs there a way to manage inventory using this interface?
Thanks for your help~!
expensive to categories (provided that (==) places like shop (!=) different categories of shop you do ok
ReplyDeletevisitem www.comprefacilfortaleza.blogspot.com
hey please help me to make blog like your please mail me dklove84@gmail.com
Deletehey, i can't make product on index of blog. I only see it on label pages. why did i see it on index pages?
ReplyDeletei want my templete showing display a post as a post in gallery (as the demo, latest products)
ReplyDeletePlease can i help me?
hello friends to turn the question of label or labels that accept only shop on the main page and you alone go into edit html in the box click Expand Widget Templates and then search for the item
ReplyDeleteb:if cond='data:label.name == "shop"
apague a estar parte:
== "shop"
repeat this in the three parties that have the same template with this code.
will look like this:
b:if cond='data:label.name'>
ready now all your bookmarks will appear in the main screen without having to be placed in every shop.
I have helped.
About the problem with missing posts...
ReplyDeleteGoogle have a set of rules to make Blogger load pages fast and smoothly. See here:
http://support.google.com/blogger/bin/answer.py?hl=en&answer=42348
One of these rules is that the front page can only be 1 MB in total. If the size is bigger Blogger will reduce the number of posts visible on the page. So if you have "show 12 posts" in your settings there may be only 6 showing.
I was using the Simplex Shop template with a lot of images in the slider. But all these images are included in the page load so it adds up quickly.
I have used a download software to measure how big the page is. There are probably better tools for this so send me a tip if you have.
1. Download a freeware called jDownloader. Set it up to accept links from the clipboard. So when you copy a link it will be added for download automatically.
2. Then go to the shop in your browser and show the source code. Copy the source code.
3. Go back to jDownload. It will have added all links and show a number at the bottom. You don't need to download anything. Just look at the number. You will also need to add the size of the html code itself. It is about 80 k in size.
How to make images smaller
Use an online tool called Kraken. It can reduce the size of images up to 25-30% sometimes.
http://kraken.io
Wow what a great post. I am impressed from it.Can you more share at here.I have many ideas for you.I will come back as soon.
ReplyDeleteThanks for more info.........
private equity china
@chales crawford : Wait for your ideas or guest posts.
ReplyDeleteHi,
ReplyDeleteFor shipping calculations, can i use the total weight of cart?
What code do i need to add in order to have an attribute weight for each produce and then for shipping?
For example, if total weight of cart <-1 kg, i want the shipping to be 5$
if total weight of catr is b/w 1 and 3 kg, i want the shipping to be 8$ and so on until 10kg. For total weight of cart above 10kg, a flat rate of 20$. Also, if it is possible to add an option that if cart price is more than 500$, then, shipping is free....
Please reply...
Hey,,What you can make in Indonesian currency(Rp)??I hope you can,
ReplyDeleteAnd can you add for discount programs??
Thanks a lot. If you can please,send the template in our email,kumanapi@yahoo.co.id.
@Amita
ReplyDeleteHave a look at the support forum for Simplecart-js.
github.com/wojodesign/simplecart-js
I think you can find some answers there.
thank you very much. this template is solution for me
ReplyDeleteHi thank you very much for the template.
ReplyDeletei used to have problems with making the posts appear,
but once i have created a new blog and pasted in the codes, it works
glad to hear that
DeleteDear Sir, What happen when I opene the post there appear 2 posting? see here: http://borneoshoppe.blogspot.com/2012/05/waja.html
ReplyDeleteI have difficulty in adding cart and latest Products.. please help me... http://touristshub.blogspot.com/
ReplyDeletemy email.. eem_maranan@yahoo.com
DeleteBom dia.
ReplyDeleteEstou com dificuldades para abrir este template por não abir este arquivo... "http://dinhquanghuy.110mb.com/simplecart/simpleCart.js" o site de depósito não é encontrado.
Você tem alguma soloção?
Obrigado
hello sir,
ReplyDeletei installed this template on http://onlineshopinginhyderabad.blogspot.in
my problem i am posting posts with label name as shop. but i can not see the results on the main page. kindly solve it. thanks in advance.
my idea z a bit different but i hope there is a way out to help me... www.onelovetz.blogspot.com the idea of shopping i wanna put it in the one link which i have name it shopping... how do i get this template work to my favor???!!!!....
ReplyDeletewonderful that works for me
ReplyDeletechecking out, really a nice theme
ReplyDeleteI like this template that it support two mostly important methods Google and Paypal. Thanks for tell me about it functionality.
ReplyDeleteGet To Paid
Thanks HUY
ReplyDeleteHi,
ReplyDeleteGood working in this template,i like your work...
Has it been completed or still in progress regarding JS
ReplyDeleteMagento Modules
You're giving nice content account is unique as well as basic. I love your publishing abilities many thanks because of this excellent 1. Thanks by ........SEO tips
ReplyDeletefree antivirus download
Wow, Thanks my Friend
ReplyDeleteThe questions of label or labels that agree to only shop on the main page and you alone go into edit html in the box click Expand Widget Templates and then search for the item. The e commerce is the good way selling product in the market.
ReplyDeletegroupon software
Thank you for this beautiful template.
ReplyDeleteI have added this to my List of 8 Best Free Blogger Store Templates. Please check it out! :)
Thank you!
Hello..
ReplyDeleteI face with problem..when i add the product there and still not appeared..and i try to add shop but also same..
can you teach me how to put shop/blog to the code..
clearly and imediately..please..and thank you so much..
same nanas problem
ReplyDeleteHello Dear,
ReplyDeleteMy name is David and I’m from London. I just want to start by saying that I love the ecommerce template for blogger that you integrated, I took me quite a bit of time to find it but I’m glad I finally did :).
I urgently need your help, I want to sell ebooks and downloadable software on Amazon, ebay and clickbank etc, as an affiliate marketer. How do I configure the template so when people click to pay they will be taken to the merchant website like amazon and clickbank etc?
I know you are really busy but I’m desperate as I haven’t been able to figure out the solution to the problem I have presented to you for days. Can you please be kind enough to reply as soon as you can.
Thank a lot!
David
Email: evolveeveryday01@gmail.com
Pls drop me an email with the answer.. thank you!
Hi.unable to download. Link error. Kindly rectify it.
ReplyDeleteHow to Download?
ReplyDeleteLink is Invalid or Deleted File....
Fix link and sent to hasbialloh15@gmail.com please...