- This topic has 7 replies, 2 voices, and was last updated 12 years, 5 months ago by .
Viewing 8 posts - 1 through 8 (of 8 total)
Viewing 8 posts - 1 through 8 (of 8 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › Thank You Page – Display only some of the shortcode information
Tagged: customize, customize shortcode, customize transaction result display, thank you, Thank you page
I posted this as a comment on the tutorial page for setting up a thank you page – then I noticed the last comment was made last year, so I am reposting the same here:
I am using the [wp_eStore_display_transaction_result] shortcode on my thankyou page.
All I want to show are the download links and name of the product .
I don’t need the other information that comesup – the ‘You ordered the following items’, the price, Transaction ID, and the text ‘You should soon receive a payment receipt and a copy of this download information in your email’.
Any suggestions how to do this? thanks
All those information is displayed inside their own CSS classes. So you can simply hide them by using a bit of CSS. For example, you can add the following to the custom CSS file to some of the details that you wanted to hide:
.eStore_thank_you_total_cost{
display:none;
}
.eStore_thank_you_txn_id{
display:none;
}
.eStore_thank_you_email{
display:none;
}
So far so good!
I still have the “Your ordered the following items” text and then empty lines/spaces, which ideally I don’t want to see.
Which CSS class do I need to change to display:none to make that go away? I’ve looked, but I’m not great at working out what I need to change.
Thanks for your help!
You can use this technique and empty out the “Your ordered the following items” text message:
Great. Thanks for your help!
Your suggestions have worked great.
Unfortunately, I now have lots of empty/blank lines before and after the actual links. Do you know of any way to get rid of those?
thanks again
I will try to clean up some of the line breaks and that should help.
Thanks so much!