-
AuthorPosts
-
January 23, 2016 at 12:24 am #865769
i need help here, if you see in the bookstore style in the uber template show the products in the home page using taps for feutures products, best sales and lastes products) i need to use this same presentation of products and the same look but using the uberhome style(see the attached image this is what i need), but i cant get that, i already install the virtuemart and the javmproductsv.1.0.4 module and add products and i got the same configuration of virtuemart but i cant get the same look&feel.
what i have to do to be able to show the products in the same way but using the uberhome template??
timtecsa Friendtimtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
January 25, 2016 at 4:27 am #867398Hi
Basically, you can follow these steps below to show tabs like Uber – Bookstore
- Install VM in Uber – Home site
- Create 2 new positions: bookstore-content , bookstore-tabs (I assume these positions are not existing on your site)
- Check out this documentation: https://www.joomlart.com/documentation/joomla-templates/uber-template/building-uber-sample-sites#uber-bookstore section
4. [BookStore] Container Tabs
to see how we configure for Uber – Bookstore.
You will need to create
Virtuemart Products
module for each tab and assign them to ‘bookstore-tabs’ position (created above): https://static.joomlart.com/images/userguide/ja_templates/uber/bookstore-featured-books.jpgThen create a JA ACM module type of
[Container] Tabs - Style 1
& assign to ‘bookstore-content’ position to load all modules in ‘bookstore-tabs’ position: https://static.joomlart.com/images/userguide/ja_templates/uber/bookstore-tabs.jpgOf course, you will also assign ‘bookstore-content’ position to a block in Uber – Home site: http://www.t3-framework.org/documentation/bs3-layout-system#define-block
Hope this helps.
January 25, 2016 at 6:33 pm #868068This reply has been marked as private.Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
January 26, 2016 at 10:14 am #868714Like I mentioned above, you can create a new block called
content
for example and create associated PHP file for it: ROOT/templates/uber/tpls/blocks/content.phpHere is sample content of this ‘content.php’ file:
<?php /** * ------------------------------------------------------------------------ * Uber Template * ------------------------------------------------------------------------ * Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved. * @license - Copyrighted Commercial Software * Author: J.O.O.M Solutions Co., Ltd * Websites: http://www.joomlart.com - http://www.joomlancers.com * This file may not be redistributed in whole or significant part. * ------------------------------------------------------------------------ */ defined('_JEXEC') or die; ?> <?php if ($this->countModules('bookstore-content')) : ?> <!-- CONTENT POSITION --> <div class="wrap sections-wrap"> <jdoc:include type="modules" name="<?php $this->_p('bookstore-content') ?>" style="T3section" /> </div> <!-- //CONTENT POSITION --> <?php endif ?>
This will help to load modules assigned to ‘bookstore-content’ position.
And I assume that you use ‘home’ layout for Homepage of your site, so you open the file: ROOT/templates/uber/tpls/home.php
Then call ‘content’ block like this: http://prntscr.com/9uzhbb
Hope this makes senses.
January 29, 2016 at 3:06 am #871074ok, like you explain in the last message this is what i did:
- i create a new block call bookstore-content a his bookstore-content.php file i upload it in the block folder (see image 1).
- after that i edit home.php to call the block and i saw it in the uber home layout (see image 2).
- i create the file bookstore-tabs.php using the same procedure like in the point 1 and i uploaded it in the blocks folder (see image 1).
- now i can see the new block "bookstore-content" in the uber home layout(see image 3).
THE PROBLEM:
I cant see the new module positions "bookstore-content" and "bookstore-tabs" in the menu of "select a position" in order to be able to assign to the block "bookstore-content" the position bookstore-content even if i try to create JAVC module in the list of modules i cant assign this to the position "bookstore-content". (see image 4)
looks like i create the block but with this procedure the new module positions were not created. what i did wrong or what is missing?
- Saguaros Moderator
Saguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
January 29, 2016 at 5:04 am #871142I thought you knew how to create a new position in Joomla so I didn’t mention that for new position, you need to add into the file: ROOT/templates/uber/templateDetails.xml also
Check out this tips for steps of creating a new module position
January 29, 2016 at 6:12 pm #871720no that was that i ask in the message of january 25. i going to proceed to create this 2 positions and i will let you know what happend
January 29, 2016 at 11:40 pm #871899ok i did everything you said, i add the new 2 positions but in the end what i got dont looks like the products are showed in the book store demo
look: (first image)( http://www.sipman.co/sipman-trabajo2 ) is what i get and (second image)( uber.demo.joomlart.com/index.php/book-store is what i am looking for
- the images of the products dont have the same animation effect.
- the general layout of this module is not like the layout of this same module in bookstore template that looks clean and pretty.
- the tittle of the products is not showed.
- the add cart button is not the same and we dont have the element to increase-decrease the quantity of the product.
- the font of the price is not the same.
- the next and previous buttons are in the left bottom part of the module and is ugly and are not buttons just text.
i need that the module in my site have the same look like in the book store template
-
Saguaros Moderator
Saguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
February 1, 2016 at 7:14 am #873141I just helped you the steps to duplicate the layout, elements like Bookstore style only, bringing exact style from one template to another will take more works: style css, js (if any), etc … This will take time and you need to spend time to customise it.
P/s: Firebug editor will help much on this customisation.
February 1, 2016 at 5:51 pm #873692sorry we dont know how to use firebug editor, can you simple give us the steps to obtain the look that we are looking for
February 1, 2016 at 7:10 pm #873748HELP WITH THIS: after make all the step that you suggest i create the 2 jA VM modules for products and assign those to the bookstore-tabs position then i create a JA ACM module type of [Container] Tabs – Style 1 & assign to ‘bookstore-content’ position to load all modules in ‘bookstore-tabs’ position but this is the issue:
Just in the first tab the products are loaded if we go to the second tab the products do not load(THIS NOT HAPPEN IN THE BOOKSOTRE DEMO), and for example if i move the module of the the second tab to be the first tab the products in that case are showed but the products of second or third tab are not loaded. (see images)
Why this? how solve?
-
Saguaros Moderator
Saguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
February 2, 2016 at 1:17 am #873906As I mentioned above, it will require customization on CSS & JS to make it looks & works exactly like Bookstore style. This will take time, I recommend you hire a developer to get it done for you.
February 2, 2016 at 5:51 pm #874564help me with this request, thanks
February 2, 2016 at 5:52 pm #874567HELP WITH THIS: after make all the step that you suggest i create the 2 jA VM modules for products and assign those to the bookstore-tabs position then i create a JA ACM module type of [Container] Tabs – Style 1 & assign to ‘bookstore-content’ position to load all modules in ‘bookstore-tabs’ position but this is the issue:
Just in the first tab the products are loaded if we go to the second tab the products do not load(THIS NOT HAPPEN IN THE BOOKSOTRE DEMO), and for example if i move the module of the the second tab to be the first tab the products in that case are showed but the products of second or third tab are not loaded. (see images)
Why this? how solve?
-
AuthorPosts
This topic contains 15 replies, has 3 voices, and was last updated by Saguaros 8 years, 10 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum