X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Third Party Add-Ons for X-Cart 4 (https://forum.x-cart.com/forumdisplay.php?f=45)
-   -   Speed bar plus add-on (https://forum.x-cart.com/showthread.php?t=26568)

Warwick 11-13-2006 06:45 AM

Speed bar plus add-on
 
Is there anybody out there who has the 'Speed bar Plus' mod from cartmods.com installed and working on X-Cart 4.1.x?

I'm really interested in such a feature but am not sure about the mod's possibilities and about cartmods.com as a company having read some disturbing posts about them in these forums :(

Any feedback is appreciated!

balinor 11-13-2006 07:15 AM

Re: Speed bar plus add-on
 
Moving to Third Party Add-Ons. I would advise you to avoid Cartmods at all costs.

Warwick 11-13-2006 07:46 AM

Re: Speed bar plus add-on
 
Quote:

Originally Posted by balinor
Moving to Third Party Add-Ons. I would advise you to avoid Cartmods at all costs.


Roger that, any alternatives that come in mind about a mod that expands the speed bars features?

zardos 11-13-2006 08:57 AM

Re: Speed bar plus add-on
 
Hi Warwick

Try Philj he has a speed bar mod.

http://www.xcartmods.co.uk/

Warwick 11-13-2006 09:10 AM

Re: Speed bar plus add-on
 
Thanks for the excellent suggestion zardos! :)

I'll investigate.

KCAutosound 11-14-2006 09:08 PM

Re: Speed bar plus add-on
 
I will step in and give a thumbs up for Cart-Mods. They have done quite a few custom modifications to my website and got me taken care of quickly. Sam has been great to work with.

carpeperdiem 11-15-2006 04:12 AM

Re: Speed bar plus add-on
 
I bought PhilJ's "advanced speedbar" when he was selling it (I think it's free now?) and it is everything you could want for speedbar.

It basically works in 2 parts -- some links are static, some are dynamic, and the css file is very clear and easy to edit.

Warwick 11-15-2006 04:16 AM

Re: Speed bar plus add-on
 
Thanks carpeperdiem, meanwhile I have implemented it and it works great; only problem I have is that I can't seem to get it centered; do you have any experience with this regarding the speed bar plus?

At your site it is also aligned to the left.

big pine kenny 12-15-2006 12:10 PM

Re: Speed bar plus add-on
 
I have tried Philj adv speed bar but I can't figure out how to change items on the tabs The instructions aren't for dummies. I have the speed bar where I want it but it has 2 home tabs and doubles on a few tabs.

carpeperdiem 12-15-2006 12:53 PM

Re: Speed bar plus add-on
 
Ok, Advanced Speedbar for Dummies:

This line:
Code:

<li {if $main eq "catalog" && $current_category.category eq ""}id="current"{/if}><a href="home.php" title="Home"><span>Home</span></a></li>
is hard coded for "home"

This line:
Code:

{if $login eq ""}
<li {if $main eq "register"}id="current"{/if}><a href="register.php" title="{$lng.lbl_register}"><span>{$lng.lbl_register}</span></a></li>
{/if}

is hard coded to register

This line:
Code:

<li {if $main eq "cart" && $smarty.get.mode ne "checkout"}id="current"{/if}><a href="cart.php" title="{$lng.lbl_view_cart}"><span>{$lng.lbl_view_cart}</span></a></li>
is hard coded to view cart

This line:
Code:

<li {if $smarty.get.mode eq "checkout"}id="current"{/if}><a href="cart.php?mode=checkout" title="{$lng.lbl_checkout}"><span>{$lng.lbl_checkout}</span></a></li>
Is hard coded to "checkout"

Now here comes the good stuff:
Code:

{section name=sb loop=$speed_bar}
{if $speed_bar[sb].active eq "Y"}
<li {if $speed_bar[sb].orderby eq $page_data.orderby}id="current"{/if}>
<a href="{$speed_bar[sb].link}" title="{$speed_bar[sb].title}"><span>{$speed_bar[sb].title}</span></a></li>
{/if}
{/section}

This parses the static embedded pages you defined in "speedbar" section of admin.

The reason my speedbar is in the left, is that my CSS tells it to go there (actually, it doesn't tell it to go right, so it doesn't).

In head.tpl

Code:

<tr class="HeadLine" ><td>{ include file="speedbar/speedbar.tpl" }</td>

In skin1.css
Code:

.HeadLine { padding: 0px; background: #C4E9EB; color: #fff; margin: 0px 0px 0px 0px }

If you are using a stock install, you need to do some fishing/hunting/webmaster mode, and find out where the old speedbar lives, and make it go away.

It may be in top_menu.tpl -- and it uses way too much code to make the tabs...

Remember, the {section} loop parses the embedded pages from speedbar in the admin. It's not complicated once you get your head around it.

If you want, post your speedbar.tpl, and I'll try to slice it up for you.

Jeremy


All times are GMT -8. The time now is 07:29 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.