Re: All Business template Support Thread
Great template, thinking about using it to redesign my store. everything seems fine until i get to the secure pages where there is a blue strip on top of the header, and all header padding under categories, new products, etc are gone. any help solving this would be great. thanks again
Re: All Business template Support Thread
I would need a link to the page to offer any help.
Re: All Business template Support Thread
Quote:
Originally Posted by
picaflor-azul
Hello :smile: I have designed this template to be used as a 2 column design only with with left hand column styled. There is no included styling for the right hand column. You can turn the right hand column off in admin--layout settings. I have included screen shots of all the admin settings necessary to make the template look just like the demo. Please read the install.txt file for instructions.
Thanks.
I think i have it sorted now!
Re: All Business template Support Thread
Hi Again,
I have followed the instructions for the twitter and face book links...
8. Customize Facebook and Twitter links
=======================================
Go to:
includes/languages/english/extra_definitions/all_business/footer_menu_defines.php
Find line 56 and 57 and add the urls to your twitter and facebook accounts.
this is what i have put in...
define('TWITTER', 'http://www.twitter.com/pedalpartsaus');
define('FACEBOOK','http://www.facebook.com/pages/Pedal-Parts-Australia/127188200663332?v=wall');
But the links dont work?
www.pedalpartsaustralia.com
Thanks
Mark
Re: All Business template Support Thread
markew--I went to:
www.pedalpartsaustralia.com
and do not see your zen cart??
There is just a launching soon page.
Re: All Business template Support Thread
Ah...whoops!
here it is!
pedalpartsaustralia.com/pedalpartsaustralia/store/
sorry!
Mark
Re: All Business template Support Thread
Mark,
Your define statements should be:
Code:
define('TWITTER', 'http://www.twitter.com/pedalpartsaus'');
define('FACEBOOK','http://www.facebook.com/pages/Pedal-Parts-Australia/127188200663332?v=wall'');
If this does not work then you can always hard code them into the footer.
Re: All Business template Support Thread
Quote:
Originally Posted by
picaflor-azul
Mark,
Your define statements should be:
Code:
define('TWITTER', 'http://www.twitter.com/pedalpartsaus'');
define('FACEBOOK','http://www.facebook.com/pages/Pedal-Parts-Australia/127188200663332?v=wall'');
If this does not work then you can always hard code them into the footer.
Hi,
I put the code in exactly as you said but then my whole store vanished i changed the '' at the end of each link back to a single ' and my store is now back, but the links again dont work?
How would i hard code them into the footer? im not sure what that means.
Thanks
Re: All Business template Support Thread
Sorry about that--they should be single quotes.
You can edit the includes/templates/all_business/common/tpl_footer_menu.php file:
Change:
Code:
<span id="social-media">
<a href="<?php echo TWITTER; ?>"><img src="includes/templates/all_business/im
ages/twitter.png" class="twitter-image" alt="twitter link" /></a>
<a href="<?php echo FACEBOOK; ?>"><img src="includes/templates/all_busin
ess/images/facebook.png" class="facebook-image" alt="facebook link" /></a>
</span>
to:
Code:
<span id="social-media">
<a href="your twitter url"><img src="includes/templates/all_business/im
ages/twitter.png" class="twitter-image" alt="twitter link" /></a>
<a href="your facebook url"><img src="includes/templates/all_busin
ess/images/facebook.png" class="facebook-image" alt="facebook link" /></a>
</span>
Re: All Business template Support Thread
Quote:
Originally Posted by
picaflor-azul
Mark,
Your define statements should be:
Code:
define('TWITTER', 'http://www.twitter.com/pedalpartsaus'');
define('FACEBOOK','http://www.facebook.com/pages/Pedal-Parts-Australia/127188200663332?v=wall'');
If this does not work then you can always hard code them into the footer.
Awesome thanks!