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)
-   -   Ulimate Speedbar Mod, From Xcartmods (https://forum.x-cart.com/showthread.php?t=48809)

mltriebe 07-25-2009 09:34 AM

Ulimate Speedbar Mod, From Xcartmods
 
Anybody successfully using this mod with Telafirma's Dynamic Images Mod?

I bought this mod around July 9th and opened a support ticket (Case Tracking ID: 7L1LEAD6SY) but have not heard back from Phil J since the 10th. I have responded to the ticket 2 times since then and have not heard back.

The problem seems to be when you mouse over the thumbnail and it swaps with the main image. Just want to know if anybody has these two mods working together.

Thanks, Mike

mltriebe 07-27-2009 03:31 PM

Re: Ulimate Speedbar Mod, From Xcartmods
 
Here is more information about my issue.

If I disable, Swap Main Product Image on Thumbnail Mouseover: in the Dynamic Image Mod the Speedbar works normally. However I like being able to swap product images by using the mouseover. Here is the swap.css file for the image mod:

#content {
position:relative;
text-align:center;
}

span img {
border:none;
}

a, a:link, a:visited, a:hover {
border:none;
text-decoration:none;
}

.swap {
display:none;
WHITE-SPACE: nowrap;
border: 2px solid #313130;
}

a:hover span{
position:absolute;
left:0px;
top:0px;
display:block;
}

Any ideas would be helpful since I am not the good with .css yet.

Thanks, Mike

PhilJ 07-27-2009 03:37 PM

Re: Ulimate Speedbar Mod, From Xcartmods
 
Maybe try changing...
Code:

a:hover span{
position:absolute;
left:0px;
top:0px;
display:block;
}

To...
Code:

a:hover span.foo{
position:absolute;
left:0px;
top:0px;
display:block;
}

Then use <span class="foo"> in your dynamic images mod.

mltriebe 07-27-2009 05:01 PM

Re: Ulimate Speedbar Mod, From Xcartmods
 
Quote:

Originally Posted by PhilJ
Then use <span class="foo"> in your dynamic images mod.


Where would I make this change? The images are called from product_image.tpl and as far as I can tell the swap takes place here:

Code:

{if $config.Dynamic_Images.di_swap eq "Y"}
<span class="swap">
<img src="{thumb file=$product.image_path_P width=$config.Dynamic_Images.di_product_image_width linkonly="true"}" alt="{$product.product|escape}" />
</span>
{/if}


If I change class="swap" then the images no longer swap.

Mike

mltriebe 07-28-2009 04:52 PM

Re: Ulimate Speedbar Mod, From Xcartmods
 
Got the issue resolved for the most part, I had to change the Image Mod CSS code to this:

Code:

#content {
position:relative;
text-align:center;
}

span img {
border:none;
}

a.swap, a.swap:link, a.swap:visited, a.swap:hover {
border:none;
text-decoration:none;
}

.swap {
display:none;
WHITE-SPACE: nowrap;
border: 2px solid #313130;
}

a:hover span.swap {
position:absolute;
left:0px;
top:0px;
display:block;
}


Now, I need to figure out the check out page problem. Here is a screen shot of that problem.

Mike

mltriebe 08-01-2009 08:57 AM

Re: Ulimate Speedbar Mod, From Xcartmods
 
3 Attachment(s)
Ok, last issue before I go live with this mod and i hope somebody can help me out.

I have my speedbar links in the admin section and they work just fine. Ref the first figure.

However when the home page or the whats new page is selected the speed bar shows the home button as being selected. ref the second figure. and if i select the sitemap page none of the buttons are showing selected. ref the third figure.

I have seen this mod on another site and it does the same thing there so I am hoping somebody has solved this issue and can help me out.

Mike


All times are GMT -8. The time now is 12:52 AM.

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