Author Topic: Illustrated guide for custom AbanteCart template development  (Read 110374 times)

Offline ravindre

  • Newbie
  • *
  • Posts: 3
  • Karma: +0/-1
    • View Profile
In this post we will give a detailed step by step manual for template creation using the extension dev tool.

More to come soon.
« Last Edit: November 19, 2013, 09:51:16 AM by abantecart »

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4358
  • Karma: +298/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Illustrated guide for custom AbanteCart template development
« Reply #1 on: November 19, 2013, 09:48:32 AM »
This is illustrated guide for custom AbanteCart template development 

Before you begin template development we suggest to review basic architecture of AbanteCart. If you developed templates for other web applications before, you might find some similarity as well as new concepts.

http://www.abantecart.com/document_wiki/index.php/AbanteCart_Architecture_Overview

As noted in many places AbnateCart provides sophisticated engine for extension development. It is suggested to develop template as extensions.
Although, you can edit core template to get desired result, keep in mind that some files might be replaces with future upgrades.  If you create template as extension all your changes are safe.

More about template extension construct is in this document:
http://www.abantecart.com/document_wiki/index.php/Developing_Templates_as_Extensions

Eventhough‎ , it might look like template development is complex, it is actually very easy after you set first exertion up.

Enough with the theory, Lets begin!

1. First what you need is to install extension development tool from the link below:
https://github.com/abantecart/developer_tools_extension/tree/master/v1.0/code/extensions

NOTE: This extension is constantly in development and improvements. There will be more features and manuals coming for developer_tools.

Upload developer_tools directory to your AbanteCart extensions directory.

After unload of directory and files go to admin -> extensions section and install /enable developer_tools extension.

Now you will see new tab "Extension Developer Tools" in the system section

2. Build (clone) template extension from default_html5 template

Open Developer Tools and click create new tab (illustration1)

Select template as extension type and copy default content

Give template extension and title and some unique ID.
You do not need to worry about other parameters for now.
Click generate button.

3. Generate Layout from default_html5 template
Now you need to generate layout.xml file base of default_html5 template and add it to extension before you can install it.

IMPORTANT. DO NOT install template extension you generated before you generate layout. This will cause error if you enable the template for storefront.

In Developer Tools select All projects tab and click on Open Project for extension created above. (Illustration2)
Click Other tab on the left.
Now, select default_html5  and click "Save layout XML" button (Illustration3)

Go to your abantecart extensions/[new_extenion_id]/ directory and confirm that layout.xml is created (Illustration4)

4. Install new extension and enable
Go to extensions -> templates and click to install extension that you created above.
Enable it. (Illustration5) 

5. Set storefront to use new extension
Go to system -> settings -> appearance and select new template from the list and save.

Go to the storefront and see new template. (Illustration6)

6. Edit template files

Now you can access template (.tpl) files in extensions/[new_extenion_id]/storefront/view/....
Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4358
  • Karma: +298/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Illustrated guide for custom AbanteCart template development
« Reply #2 on: November 19, 2013, 09:50:15 AM »
2 more illustrations
Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4358
  • Karma: +298/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Illustrated guide for custom AbanteCart template development
« Reply #3 on: November 19, 2013, 09:50:45 AM »
Last illustration
Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

Offline ravindre

  • Newbie
  • *
  • Posts: 3
  • Karma: +0/-1
    • View Profile
Re: Illustrated guide for custom AbanteCart template development
« Reply #4 on: November 23, 2013, 09:15:09 PM »
All steps verified and work like a charm,

for some who dont get the dev tool part, just drag and drop the root file called developer_tools into the extension folder of abantecart.

Then go to the back-end Extension Tab and press Install Extension.

Search for developer_tool press the button that looks like a play button.

Now its installed and we can use it!

Follow the rest of the steps as described above and you should be good to go!

Make sure to check out the images provided aswell, you cant go wrong!

Best of templating :D
« Last Edit: November 23, 2013, 09:18:17 PM by ravindre »

Offline calbashmc

  • Jr. Member
  • **
  • Posts: 52
  • Karma: +8/-0
    • View Profile
Re: Illustrated guide for custom AbanteCart template development
« Reply #5 on: November 24, 2013, 10:20:04 PM »
Doesn't work for me.  I followed the steps, put the developer directory under extensions, went to the admin panel and installed the extension.  All of that worked fine, the extension says it is installed but I don't see the interface anywhere.  I do not get another tab under System (or anywhere else)  like it says in the documentation above. I'm using v1.1.7

Offline abolabo

  • core-developer
  • Administrator
  • Hero Member
  • *****
  • Posts: 2046
  • Karma: +318/-13
  • web for all, all for web!
    • View Profile
    • AbanteCart
Re: Illustrated guide for custom AbanteCart template development
« Reply #6 on: November 25, 2013, 06:47:36 AM »
devtools installed and enabled?
“No one is useless in this world who lightens the burdens of another.”
― Charles Dickens

Offline calbashmc

  • Jr. Member
  • **
  • Posts: 52
  • Karma: +8/-0
    • View Profile
Re: Illustrated guide for custom AbanteCart template development
« Reply #7 on: November 25, 2013, 05:03:07 PM »
Yes I installed the devtools as per the instructions.  That is I put the developer_tools folder in the extensions folder, went to extension manager and clicked on the button to install it.  I then enabled it so the little switch shows as On. Shows as installed and activated in extension manager but no develop tab anywhere to be seen

It says in the instructions above - "Now you will see new tab "Extension Developer Tools" in the system section" - not for me.

Offline calbashmc

  • Jr. Member
  • **
  • Posts: 52
  • Karma: +8/-0
    • View Profile
Re: Illustrated guide for custom AbanteCart template development
« Reply #8 on: November 28, 2013, 09:26:57 PM »
Now working after removing and re-installing.  But functionality looks very limited.  After creating a new template all items are greyed out except for Languages and Other (under the Hooks section).

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4358
  • Karma: +298/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Re: Illustrated guide for custom AbanteCart template development
« Reply #9 on: November 30, 2013, 10:31:10 AM »
What do you like "Extension Developer Tools" to do? Feel free to develop and add features to it.
Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

Offline calbashmc

  • Jr. Member
  • **
  • Posts: 52
  • Karma: +8/-0
    • View Profile
Re: Illustrated guide for custom AbanteCart template development
« Reply #10 on: December 04, 2013, 07:16:29 PM »
I wish I was a developer but I'm not smart enough.  I just installed this extension to make a copy of the default_html5 template so I can change css.  I wanted to do this on a copy so it doesn't get over written next upgrade, and also so if I screw up I can just revert back to the default and try again.
So far the copy worked but blocks don't behave as expected.  Some alignment issues plus the blocks show titles even though they are turned off in admin.

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4358
  • Karma: +298/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Re: Illustrated guide for custom AbanteCart template development
« Reply #11 on: December 05, 2013, 08:35:06 PM »
I wish I was a developer but I'm not smart enough.  I just installed this extension to make a copy of the default_html5 template so I can change css.  I wanted to do this on a copy so it doesn't get over written next upgrade, and also so if I screw up I can just revert back to the default and try again.
To help with that, we plan to add template clone and template editor in upcoming versions.
Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

Offline Wolf

  • Newbie
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Illustrated guide for custom AbanteCart template development
« Reply #12 on: December 23, 2013, 09:35:54 AM »
Dev Tools worked partially for me. I was able to create a new custom extension and template as described above from HTML5 default template, but there appear to be 2 major bugs:
1) Slide show feature does not work in the new extension template (instead of the "slide" class it infuses the "wide_block" id into the "sep" class div). The result is that the slide functionality does not work and the slides just show all on the page aligned to the left.
2) A number of blocks (including the slide blocks) show up as duplicates in the block manager list

Any hint on how to fix this?
Thx
Wolf

Offline ab_user

  • Newbie
  • *
  • Posts: 3
  • Karma: +2/-0
    • View Profile
Re: Illustrated guide for custom AbanteCart template development
« Reply #13 on: January 16, 2014, 10:21:56 AM »
By following this guide I was able to clone(almost) the default htm5 template. But like what others have noticed, some functionalities are missing. Still I think this is quite promising since developers are welcome to share. I wish we can edit blocks to include the accompanying CSS and be able to see the block itself interactively.

Offline abantecart

  • Administrator
  • Hero Member
  • *****
  • Posts: 4358
  • Karma: +298/-10
    • View Profile
    • Ideal Open Source Ecommerce Solution
Re: Illustrated guide for custom AbanteCart template development
« Reply #14 on: January 17, 2014, 02:04:39 PM »
Improvements are coming. :)
Please  rate your experience or leave your review
We need your help to build better free open source ecommerce platform for everyone. See how you can help

 

Powered by SMFPacks Social Login Mod