- Posts: 6745
- Thank you received: 716
URGENT : Issues with cart
-
aldevil
- Topic Author
- Visitor
10 years 4 months ago #40981
by aldevil
Replied by aldevil on topic URGENT : Issues with cart
Thank you for your answer. Unfortunately, for me it does not work, even on your demo site.
I am currently using Windows 7, 64 bits with Firefox latest version. I tried with Explorer and I have the same result.
Obviously, I have seen and tried the small cart icon on the right side of the menu, but there is no link neither on the cart nor on the number of items.
I have already made more than 10 Virtuemart shops with templates from competitors without any problem.
Update
I just tried on my laptop (32 bits) and the cart icon works on the laptop. Then something is wrong since it does not work with my main computer that I am using for developments.
The update cart icon does not display properly neither on my computer nor on the laptop..
Regards
I am currently using Windows 7, 64 bits with Firefox latest version. I tried with Explorer and I have the same result.
Obviously, I have seen and tried the small cart icon on the right side of the menu, but there is no link neither on the cart nor on the number of items.
I have already made more than 10 Virtuemart shops with templates from competitors without any problem.
Update
I just tried on my laptop (32 bits) and the cart icon works on the laptop. Then something is wrong since it does not work with my main computer that I am using for developments.
The update cart icon does not display properly neither on my computer nor on the laptop..
Regards
Please Log in to join the conversation.
-
aldevil
- Topic Author
- Visitor
10 years 4 months ago #40982
by aldevil
Replied by aldevil on topic URGENT : Issues with cart
Just tried with Chrome. The cart icon works with Chrome, not with Firefox, not with Explorer.
The update cart does not display properly, whatever the browser.
Alain
The update cart does not display properly, whatever the browser.
Alain
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
10 years 4 months ago #40983
by milos
Replied by milos on topic URGENT : Issues with cart
Try this:
Edit file /templates/hot_shoes/css/template_css.css and change this part:
to
Edit file /templates/hot_shoes/css/template_css.css and change this part:
Code:
.show_cart {
width: 20px;
height: 20px;
background: url(../images/custom/cart.png) center no-repeat;
text-indent: -9999px;
float: right;
margin: 25px 5px 0 5px;
}
to
Code:
.show_cart {
width: 20px;
height: 20px;
background: url(../images/custom/cart.png) center no-repeat;
float: right;
margin: 25px 5px 0 5px;
}
.show_cart a {
text-indent: -9999px;
display: block;
width: 20px;
height: 20px;
}
Please Log in to join the conversation.
-
aldevil
- Topic Author
- Visitor
10 years 4 months ago #40984
by aldevil
Replied by aldevil on topic URGENT : Issues with cart
Thank you Milos. Now it works ! : )
There is still a problem When you go to the cart:
You can delete a product. It works properly.
You can change the quantity of a product but the update does not display properly. (does not take into account the css)
There is still a problem When you go to the cart:
You can delete a product. It works properly.
You can change the quantity of a product but the update does not display properly. (does not take into account the css)
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6745
- Thank you received: 716
10 years 4 months ago - 10 years 4 months ago #40990
by milos
Replied by milos on topic URGENT : Issues with cart
Here's a solution for this. Edit file /templates/hot_shoes/index.php and change this part:
to this:
Code:
$u = JFactory::getURI();
$css_url = $u->toString();
Code:
//$u = JFactory::getURI();
$css_url = $this->baseurl."/";
Last edit: 10 years 4 months ago by milos.
The following user(s) said Thank You: aldevil
Please Log in to join the conversation.
-
aldevil
- Topic Author
- Visitor
10 years 4 months ago #40993
by aldevil
Replied by aldevil on topic URGENT : Issues with cart
Thank you. That's perfect !
Please Log in to join the conversation.
Time to create page: 0.084 seconds