@gjh42
Site http://bit.ly/1jTeixU
Anne,
Top Brand module does not have any overwritten file except tpl_index.html in which simply we have to add 3 lines code.
Top brand module also does not have any java/css file in it.
Printable View
@gjh42
Site http://bit.ly/1jTeixU
Anne,
Top Brand module does not have any overwritten file except tpl_index.html in which simply we have to add 3 lines code.
Top brand module also does not have any java/css file in it.
Here is module for your reference http://www.zen-cart.com/downloads.php?do=file&id=907
I have been working and you know that as been communicating since last few days. I am not java guy so I tried css which make it appear there but not full success so now I think I need to make changes in code
<script type="text/javascript">
$(document).ready(function() {
$('a.moduleBox').click(function() { // show selected module(s)
// variables
var popID = $(this).attr('rel');
var popNAV =$(this).attr('class');
// clear out menu styles and apply active
$('a.moduleBox').css('background', '');
$(this).css('background', '');
// hide all wrappers and display the one selected
$('.centerBoxWrapper').hide();
// check if all or single selection
if (popID != 'viewAll') {
$('#' + popID).show();
} else {
$('.centerBoxWrapper').show();
}
});
});
</script>
In standard zencart homepage/center box is not like in your template as you have made it all one wrapper so if we put anything there even banners etc. They will be effected by this java. I think in future you should have it separate so that java for new,specials, and featured products does not effect other content on homepage center box.
Hi Anne.
Just wanted to ask if there is a simple(enough) way to strip out module tabs so I can display all products on the main page. Or, remove featured and specials to only show all(which I tried but all is empty for some reason).
Thanks in advance.
dev DOT littlecloset DOT ca
The show all in this module is not for showing all products. It will show featured, specials, and new products one below the other.
If you do a search of the forum you will find some threads that describe different ways to show all products on the main page. Here is one:
http://www.zen-cart.com/showthread.p...-the-main-page
Thanks,
Anne
ah ha! I couldn't find where I posted this for the life of me... No idea why it doesn't show in my cp as my own!? Anyway.
Since you indicated module_tabs isn't conceived for what I'm looking for perhaps I should rephrase my original question; Is it feasible to remove module_tabs from piccadilly posh or should I choose a different template?