Help modifying creative elements "Product Box" to delete the "Add to cart" mouseover.

vra1974

Active member
XNullUser
Joined
May 19, 2020
Messages
213
Reaction score
27
Points
28
NullCash
63
I am using Creative Elements in Prestashop 7.4
But I need to be able to place product boxes withouth the "Add to cart" pop-up when mouseover.

Is there a way to modify Creative elements to do it?
 

Attachments

  • 2024-09-28 17_14_20-Window.jpg
    2024-09-28 17_14_20-Window.jpg
    83.6 KB · Views: 1

Ocean

Member
XNullUser
Joined
Jul 25, 2024
Messages
82
Reaction score
2
Points
8
Location
france
NullCash
10
You can easily create a "miniature" template without "add to cart" button our without pop-ups windows
 

vra1974

Active member
XNullUser
Joined
May 19, 2020
Messages
213
Reaction score
27
Points
28
NullCash
63
You can easily create a "miniature" template without "add to cart" button our without pop-ups windows
Thanks. I am not very good at it... but will try my best! Dont know where to start, but I will find out :D Thanks.
Post automatically merged:

You can easily create a "miniature" template without "add to cart" button our without pop-ups windows
I am trying. But can´t find a way to insert the product price. I need the price automatically to change when I change the product price in the product catalog.Or to dinamically change the cover picture. HELP!
 
Last edited:

Schariac

New member
XNullUser
Joined
Dec 3, 2021
Messages
14
Reaction score
0
Points
1
NullCash
5
You should check the base template to see how it inserts product data.
It's usually {$product.price} for price, or {$product.image.url} for the image.
Also, to remove the tooltip, you should check for IDs or classes or data in the elements that trigger the tooltip and remove them, leaving the JS unable to act.
 

Ocean

Member
XNullUser
Joined
Jul 25, 2024
Messages
82
Reaction score
2
Points
8
Location
france
NullCash
10
You should check the base template to see how it inserts product data.
It's usually {$product.price} for price, or {$product.image.url} for the image.
Also, to remove the tooltip, you should check for IDs or classes or data in the elements that trigger the tooltip and remove them, leaving the JS unable to act.
I think he is using the default template view used by default by Creative element.
He must create another one by creating a new miniature template and then deine it as a default miniture for diplaying products.
In fact, by doing that, he will be able to create what he want as view, without using any shortcode like {$product.price} .... Creative element offer a lot of cutomisable wigdets that help to diplay almost all information about a product.
 

vra1974

Active member
XNullUser
Joined
May 19, 2020
Messages
213
Reaction score
27
Points
28
NullCash
63
Thanks to everyone.

After doing some research, I only added the following CSS to the creative elements page I was editing. and this disabled the "Add to cart" popup with no need to make any mini template or nothing else.


.add-to-links{
display: none !important;
}


That was it.!
 
Top