Poco FastFood - Wordpress

Lorentz

New member
May 7, 2022
25
0
1
Hello friends,
I use the Poco FastFood theme for a site and I would like the mobile version not to show me the bar with the shopping cart and others. Is there any chance I can get it out? also from the products I would like to score the "add to cart" function because it will not be possible to place orders directly on the site. I would also like to know if you have any idea how to add pictures to the products.

Thank you for your help 🍻

1652478665786.png1652478712251.png1652478807170.png
 

TomT

New member
May 2, 2022
7
3
3
For the bar on mobile you can try this css:

CSS:
.poco-handheld-footer-bar {
    display: none !important;
}
 
  • Like
Reactions: Lorentz

TomT

New member
May 2, 2022
7
3
3
Removing the 'add to cart' function

Try adding this to functions.php

Code:
add_filter( ‘woocommerce_is_purchasable’, ‘__return_false’);

or you could hide it using css

CSS:
.cart {

    display: none !important;

}
 
  • Like
Reactions: Lorentz

Lorentz

New member
May 7, 2022
25
0
1
Hi, Thank you so much for your help. I managed to hide the "add to cart" button and the bar on my mobile. But I have another problem now. I have this "sticky add to cart" that appears at the bottom of the product page. I also fail to delete the return policy and the license plate on the product pages.
1652794687215.png
1652794730449.png
 

TomT

New member
May 2, 2022
7
3
3
Some of these can probably be disabled in the theme, or woocommerce. I have neither installed, so I can't check, but if you want to hide it using css, try this:

CSS:
.single-product .product-extra-info {
    display: none !important;
}
.poco-sticky-add-to-cart {
    display: none !important;
}
.woocommerce-tabs.wc-tabs-wrapper {
    display: none !important;
}
 
  • Like
Reactions: Lorentz

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu