If you want to hide the countdown timer and still want to have a raffle end date – then you can hide it via your themes style.css:
.rtg-countdown {
display: none !important;}
The code for the product page timer is here:
.product p, .product span, .product div {
display: none !important;
}
You can also hide the time remaining blocks by adding in your theme style or the /wp-content/plugins/raffle-ticket-generator-edition/includes/css/style.css
Keep in mind – changing in the plugin styles.css can be overwritten when updating to a new version.
The code for the Remaining Time is:
p#end {
display:none !important:
}
#time-remaining {
display:none !important:
}