Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP Photo Seller › Photo Seller Problem – no email is send when paying (Paypal)
Tagged: confirmation, email, PayPal, paypal issue
Below code is working fine for me.
table.wps_digital_details_table
tr td:first-child{
display: none;
}
table.wps_digital_details_table
tr th:first-child{
display: none;
}
And what about cart page. Qty is also showing in cart page.
This should work for cart page
table#viewCartTable
tr td:nth-child(2) {
display: none;
}
table#viewCartTable
th:nth-child(2) {
display: none;
}