Showing posts with label Templates. Show all posts
Showing posts with label Templates. Show all posts

Tuesday, July 15, 2014

Shopping Cart - Blogger template

shopping cart_mini

eStore - Blogger Temlate


Other blogging platforms like WordPress has “Custom Fields” option which lets us to add extra description such as price and thumbnails without having to add the HTML codes in post editor. But, Blogger doesn’t have that feature. So, we at Blogger.com tried our best to make the item posting as easy as possible by using tables method. Here is how the table looks in post editor.



Template Usage Instructions

Using Blogger’s “Post Template” feature, we are able to pre-format the post editor with text or code that will appear each time we create a new post. So, we will make use of that feature in this template. First, download Shopping Cart Blogger template and upload it to your blog. Now, go to Settings > Formatting. Set the desired number of posts to be shown in the blog.



Then, scroll down the page until you see “Post Template” option. Paste the following code into the text area. And click “Save“.
<tableborder="1"style="width:660px;">
<tbody>
<tr>
 
<thclass="item_thumb"id="thumb"width="45%"><ahref="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioUW4UyXeiiuqZTEheoP6Qt8x76ly3Fn9-J76ATn6ALd1iOyqN4_g6Z6NgbcyY5o3z2PJulT6o9tL9CXlWRQ1twAGJjyMLoDWKgqH0vg9zqWgvJ54Z_KSe8MCo_j1oXx5pumVVfObA4bDU/s1600/blue.gif"onblur="try{parent.deselectBloggerImageGracefully();}catch(e){}"><imgalt=""border="0"id="BLOGGER_PHOTO_ID_5610175970378217570"src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioUW4UyXeiiuqZTEheoP6Qt8x76ly3Fn9-J76ATn6ALd1iOyqN4_g6Z6NgbcyY5o3z2PJulT6o9tL9CXlWRQ1twAGJjyMLoDWKgqH0vg9zqWgvJ54Z_KSe8MCo_j1oXx5pumVVfObA4bDU/s400/blue.gif"style="cursor: hand; cursor: pointer; display: block; height:164px; margin:0pxauto10px; text-align: center; width:148px;"/></a></th>
 
<td><inputclass="item_add"type="button"value="Add to Cart"/></td>
</tr>
<tr>
 
<th><b>Item Name</b></th>
 
<tdclass="item_name">Product Name Goes here!</td>
</tr>
<tr>
 
<th><b>Price</b></th>
 
<tdclass="item_price">$99.99</td>
 
</tr>
<tr>
 
<th><b>Description</b></th>
 
<tdclass="item_Description">Your product description here!</td>
 
</tr>
<tr>
 
<th><b>Available Stock</b></th>
 
<td>Stock count here!</td>
</tr>
<tr>
 
<th><b>Misc</b></th>
 
<td>Place extra thumbs/images of product here</td>
</tr>
</tbody>
</table>

Here is the screenshot of post template which has been added with the code.



Now go to Posting | New Post and you’ll see the table there in your post editor. You can remove the default image that we have added in the code by clicking on it and select “Remove“. Then, upload your item image inside that table cell. We suggest you to use images of medium sizes.



Fill in other options such as Item NamePrice and Description by replacing the default texts. They will be used as values by the SimpleCart script during the PayPal Checkout. And please remember that your Item Name must be unique. Now, click on the HTML Mode in post editor and remove the unnecessary <div>.... </div> in the code for item image. We need only the <img ... /> which has been highlighted in the image below.



So, this is how it will look once we remove the <div>.... and <a href.... which wraps<img ... code.



You can change it back to “Compose” mode, add/edit any information about the product and hit the “Publish” button. That’s all.

PayPal Email Setup Instructions

Go to Design > HTML. Search for simpleCart.email using CTRL + F. You will find this piece of code.
<scripttype='text/javascript'>
simpleCart
.email =&quot;bloggermint@gmail.com&quot;;
simpleCart
.checkoutTo =PayPal;

simpleCart
.cartHeaders =[&quot;thumb_image&quot;,&quot;Quantity_input&quot;,   &quot;Total&quot;,&quot;remove&quot;];

</script>

Replace the default PayPal email that we set (bloggermint@gmail.com) to yours. And Savethe template. You’re done! Here is a sample screenshot of PayPal pop up window during checkout.



We have planned for a paid PRO version of this Shopping Cart with more advanced features and professional look. Please keep the footer credit links intact. If you want to remove the link you have to pay a little fee. And, if you want to get the template customized , contact us. Also check our Blogger Template site Blogger Templates Hub Blog for latest blogger templates.

Update 08/06/2011 :

For those who don’t have PayPal/credit card, you might want to use email contact form. You can replace “Add to Cart” button with a email contact/feedback form link by following the steps below. Heartfelt thanks to one of our blog reader, Vivija(Ble) from Skopje, Macedonia, who spent her time to find this method.

First, go to Kontacr.com and register for a new account. Once you logged into Kontacr, scroll down the page until you see the “Ajax Embed Widget” or “Buttons Code” and get yourKontacr ID which will look like this :- id=39662;. Copy it and keep it for the usage in the coming steps.

Now, go to Design > Edit HTML . Add the code shown below just before the closing </head>tag.
<scripttype="text/javascript"src="http://kontactr.com/kpu/kontactr.js"></script>

Then, search for the piece of code shown below using CTRL + F.
input.item_add{
    bottom
:9px;
    font
-size:11px;
    position
: absolute;
    right
:15px;
    width
:90px;
}

There are two input.item_add{ codes in this template. But, you can differentiate them by looking at the CSS declarations inside { .... }. Search for the input.item_add{ code which comes earlier in CSS part. Then, replace it with this code.
span.item_add{
    bottom
:9px;
    font
-size:11px;
    position
: absolute;
    right
:15px;
    width
:90px;
}

So now, search for the second input.item_add { code at the bottom of the CSS Part.
input.item_add {
    font
-size:17px;
    height
:40px;
    margin
:5px00140px;
    position
: relative;
    width
:120px;
}

And replace it with
span.item_add {
    font
-size:17px;
    height
:40px;
    margin
:5px00140px;
    position
: relative;
    width
:120px;
}

And now click “Save Template”. Once saved, go to Settings > Formatting and search for the “Post Template” option which is located at the bottom of that page.

Add the following code into the text area there and click “Save Settings“. But before that, remember to change the id=39662; with your ID in Kontacr which you get earlier.
<tableborder="1"style="width:660px;">
 
<tbody>
<tr>
 
<thclass="item_thumb"id="thumb"width="45%"><ahref="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioUW4UyXeiiuqZTEheoP6Qt8x76ly3Fn9-J76ATn6ALd1iOyqN4_g6Z6NgbcyY5o3z2PJulT6o9tL9CXlWRQ1twAGJjyMLoDWKgqH0vg9zqWgvJ54Z_KSe8MCo_j1oXx5pumVVfObA4bDU/s1600/blue.gif"onblur="try{parent.deselectBloggerImageGracefully();}catch(e){}"><imgalt=""border="0"id="BLOGGER_PHOTO_ID_5610175970378217570"src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioUW4UyXeiiuqZTEheoP6Qt8x76ly3Fn9-J76ATn6ALd1iOyqN4_g6Z6NgbcyY5o3z2PJulT6o9tL9CXlWRQ1twAGJjyMLoDWKgqH0vg9zqWgvJ54Z_KSe8MCo_j1oXx5pumVVfObA4bDU/s400/blue.gif"style="cursor: hand; cursor: pointer; display: block; height:164px; margin:0pxauto10px; text-align: center; width:148px;"/></a></th>
 
<td><spanclass="item_add"><scripttype="text/javascript"> id=39662; t=1; ctxt="Order Now";</script>
<scripttype="text/javascript"src="http://kontactr.com/kpu/kontactr.js"></script></span></td>
 
</tr>
<tr>
 
<th><b>Item Name</b></th>
 
<tdclass="item_name">Product Name Goes here!</td>
</tr>
<tr>
 
<th><b>Price</b></th>
 
<tdclass="item_price">$99.99</td>
 
</tr>
<tr>
 
<th><b>Description</b></th>
 
<tdclass="item_Description">Your product description here!</td>
 
</tr>
<tr>
 
<th><b>Available Stock</b></th>
 
<td>Stock count here!</td>
 
</tr>
<tr>
 
<th><b>Misc</b></th>
 
<td>Place extra thumbs/images of product here</td>
 
</tr>
</tbody></table>

And you’re done. I have updated the demo blog with email feedback links in several items. Thanks again to Vivija.

Update 25/07/2011 :

Due to some suspicious changes in our Google code, where we hosted our script, the Cart Javascript was not working. We have reuploaded the js file. We are are sorry for the inconvenience caused.

Search for the following code in your template HTML editor.
<scriptsrc='http://introbloggerscripts.googlecode.com/files/cart.js'type='text/javascript'/>

And replace it with the newer source URL.
<scriptsrc='http://shopppingcart.googlecode.com/files/simplecart.js'type='text/javascript'/>

Update: I am trying to get the demo URL back to the form. For some unknown reason the Demo blog wasn’t working. So I have contacted Blogger, hope they fix it soon.

Update 2: We have fixed the demo blog issue. Thanks for your patience.

Live Demo


Download:



Shopping Cart - Blogger template

Read More

Friday, February 28, 2014

Polianna – Responsive OpenCart Theme



 

Polianna – Responsive OpenCart Theme with powerful admin panel, 2 different layouts, unlimited colors, fast order, mega menu!


Theme compatible with OpenCart 1.5.5.1 – 1.5.6

 

  • Responsive design

  • Fast order on the Product page

  • Option Filter and Price Filter

  • News module

  • Mega menu

  • Powerful admin panel

  • 3 slideshow

  • Crop images on height and width or only height

  • Contact information in the header

  • Google fonts

  • Unlimited color

  • “Scroll To Top” button

  • Cloud Zoom and Colorbox

  • Featured Carousel Module, Latest Carousel Module, Specials Carousel Module, Bestellers Carousel Module

  • Custom blocks


Polianna can be used for any kind of products as it has a clean design and it is very easy to use by any customer. It is using 3 different slidshows and also it is cross-browser compatible.

 



 

DEMO

DOWNLOAD
Read More

Theme Global PRADA | OpenCart! Template



 

PRADA – premium and stylish OpenCart 1.5.x shopping template.

Template comes loaded with several custom modules:

• TG PRADA 2 in 1 Slide Show - 2 sliders in one template, can you believe in this? With coins, and nivo slider. Amazing!

• TG PRADA CP controlled by the admin area - allows you to set default  skin (comes with 20 skins), default product page view (default tab style or accordeon style).

• TG PRADA Header Banner controlled by the admin area - allows you to use banners in your shop header area.

• TG PRADA Footer Payment Images Module controlled by the admin area -  Payment images section allows you to put logo (or other) images for the  different payment methods.

• 20 in 1 – It's available in 20 gorgeous color variations - see the Demo Option to check all of them.

• Fullcolor documented with installation and step by step customization instructions.

DEMO

DOWNLOAD
Read More

Tuesday, November 19, 2013

ActiveDen – Plus Music Template – Rip

ActiveDen – Plus Music Template – Rip


 

Introduction


“PLUS” music template is build for musicians and music enthusiast who would like to present their work in unique visual style. It can be used as a product presentation or a personal portfolio.Comes with 7 page modules. This template supports unlimited number of pages (except music page), it is fully xml driven file that allows you quick modification according to your wishes. Deeplinking is also supported. It on facebook but you will find out it’s extremely versatile.

 

FREE Font Replacement


This template comes with characters from Basic Latin and Latin Extended A set.

Now let’s face it- not everyone wants or likes font that comes with template. Maybe you have different style in mind that requires cooler font or you want more letters, symbols and whatnot for your page. So, you can do it yourself or I am offering free font replacement and embedding for this template- FREE OF CHARGE . If you want special font or just want extra “language specific” set of letters just contact me after purchase, send me a desired font (or if it’s free send a link) and you will get ready-to-go website back quickly as possible.

And please be noted that you can have different font for each module. Just think of all possibilities…

 

Features:



  • ActionScript 3.0

  • Fully xml driven

  • 7 types of pages

    • Music player with coverflow and visualizer

    • Text page reeds HTML text

    • News page

    • Gallery page

    • Youtube player

    • External Swf

    • Contact page with contact form and social links



  • “Auto Play” option

  • Plenty of customizable features

  • Change position and layout trough XML

  • FREE Font Replacement

  • and much more…


Read More

Read More

Monday, January 7, 2013

Style Pro CMS Template

Stylepro-activeden Flash Template


Style Pro CMS Template is a powerful Flash AS3 template driven by a full CMS admin panel and CSS . With this product you will be able to build your stylish website very quickly!

Pro Style Template supports all common alphabets plus GREEK ,TURKISH,HEBREW,CYRILLIC.
Read More

Saturday, June 9, 2012

Ozenyx - Premium PhpMelody Template



Ozenyx Premium PhpMelody Template




аnothеr grеаt dеsign with full-sizе fеаturеd vidеo аrеа. Clеаn аnd compаct lаyout , you will hаvе а profеssionаl vidеo sitе with no timе.

Complеtеly tаblеlеss lаyout, so no morе hеаd scrаtching whеn you еdit your nеw tеmplаtе. аs our tеmplаtе is optimizеd it will loаd fаst in аll mаjor browsеrs.

Read More

Sunday, December 11, 2011

ThemeForest - Silence - Premium HTML Theme

 

 



Silence is amazing unique theme created to be easy to modify and customize. It’s based on 960 grid system. Silence can be used by photographers, companies, private blogs and more. You can easily customize this theme with css and psd files that gives You unlimited possibilities of modification.

Theme features



  • unique design

  • 4 different sliders and one big static photo

  • 3 different home page layouts

  • standard and filterable portfolio to choose

  • working ajax contact form

  • pricing tables

  • fancyBox plugin for images

  • carousel slider integrated with fancyBox

  • services page powered by jQuery tabs

  • flickr plugin

  • twitter feed

  • 960px grid system

  • Google Web Fonts

  • jQuery drop down menu

  • testimonials powered by jQuery Quovolver

  • project page with single photo, slider and video

  • many more


 
         




Download ThemeForest - Silence - Premium HTML Theme

Read More

Sunday, September 25, 2011

Template Monster - Flash CMS Templates

Flash CMS Templates

TemplateMonster proudly presents Flash CMS templates that will change your views on Flash website creation and management forever! These ready-made Flash designs embody creative ideas and original approaches, combining splendid animation, quality graphics and pleasant sound accompaniment.

Read More

TemplateMonster - FlashTemplates

FlashTemplates


Demo Here



We are extremely glad to offer some indispensable solutions for those who want to display their company or personal project in the most effective way online. Custom-made Flash Templates from TemplateMonster will definitely be of a great help for website owners in setting up Flash sites with visually attractive and interactive layouts that harness the power of Flash. Feature-rich technology behind Flash Website Templates allows you to easily customize these themes and have the result that best suits your needs. As Flash platform is in a high demand these days, here at TemplateMonster we give a strong consideration to powerful Flash development and even initiated a Flash templates quality control program to ensure that Flash Templates you purchase are compliant with high-end web design standards.  Choose Flash for the best performance of your ideas.
Read More

Template Monster - Website Templates & Web Templates

Template Monster website templates, Flash templates and other web design products are famous for being top quality solution for a quick, easy and affordable website production. The best part about our templates is the simplicity -  customize it a little bit and upload it to your hosting. And there you have it - your website is up and running within as little as several hours from the moment you've been choosing a website template! So when choosing TemplateMonster , you can always rest assured that you get a premium quality product along with a huge set of absolutely essential goods and services - delivered to you instantly.

Website Templates & Web Templates


Demo Here

 


Read More

Friday, September 16, 2011

ActiveDen - Music and Sound - Facebook Template - Rip

Music and Sound facebook template gives unique visual presentation to your facebook fan page whether you use it as a product presentation or a personal portfolio.Comes with 6 page modules. This template supports unlimited number of any pages, it is fully xml driven file that allows you quick modification according to your wishes. It is build for musicians and music enthusiast who would like to present their work on facebook.
Read More

Era HTML Visual Performance


Era HTML Visual Performance is precisely that. An HTML theme that cares a lot about visual hierarchy, aesthetics and breathing space, yet does not sacrifice functionality, performance and usability. Era combines strong visuals, big images, attracting links and hierarchical elements with speed, user-friendly environments and usability.
Read More

MelbourneShop - Business eCommerce HTML Template - RIP

Themeforest - MelbourneShop - Business eCommerce HTML Template - RIP

MelbourneShop - Business eCommerce HTML Template - RIP


MelbourneShop is a clean, modern, web 2.0 style html template for ecommerce and shopping cart application.
This is HTML template can be used as a basis for building a Magento theme, osCommerce template and other ecommerce application.
This template can also be used for business websites, there are available Home, About, Portfolio, Blog, Contact, Full Width pages for business.
Read More

Strange - Modern Portfolio HTML Template (Full Rip)

UnitedThemes presents Strange HTML + CSS Template. It is created to be used as a creative/portfolio or corporate/business website. As you can see the strength of this theme is its simple and clean design combined with modern JQuery Plugins & Functions. It’s easy to use, easy to customize and fully featured.



 ThemeForest - Strange - Modern Portfolio HTML Template - RiP

Theme Features:



  • 960GS Based Column Layout

  • Full Site 26 HTML Pages

  • Multi Level Dropdown Menu

  • Working Contact Form

  • Full-Width Slider

  • Quicksand Portfolio

  • 15 Colors Included

  • United Themes Fancy Captions

  • Prettyphoto Gallerie

  • Flickr and Twitter Plugin



Plugins




Live Demo

Download Strange - Modern Portfolio HTML Template From:

link1, link2, link3, link4, link5

 
Read More

Wednesday, September 14, 2011

Vitopharma free templates

vitopharma  vitopharma

 

vitopharma  vitopharma

 

vitopharma  vitopharma

 

Live Demo   Download Vitopharma free templates 
Read More

VitoSlim Templates - Free

     

  

 

Live Demo       Download VitoSlim Templates  Free
Read More

Tuesday, September 13, 2011

MaxoCum teplates pack [5 templates]


 



Online demo:  MaxoCum.com

Download teplates pack
Read More