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
- This topic has 7 replies, 2 voices, and was last updated 13 years, 6 months ago by
SimoneFitzy.
-
AuthorPosts
-
May 18, 2012 at 8:49 am #6348
SimoneFitzy
MemberI 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
May 18, 2012 at 11:40 pm #45184admin
KeymasterAll 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;
}May 23, 2012 at 5:13 am #45185SimoneFitzy
MemberSo 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!
May 23, 2012 at 5:42 am #45186admin
KeymasterYou can use this technique and empty out the “Your ordered the following items” text message:
May 23, 2012 at 6:09 am #45187SimoneFitzy
MemberGreat. Thanks for your help!
May 24, 2012 at 2:36 am #45188SimoneFitzy
MemberYour 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
May 24, 2012 at 10:55 am #45189admin
KeymasterI will try to clean up some of the line breaks and that should help.
May 24, 2012 at 4:21 pm #45190SimoneFitzy
MemberThanks so much!
-
AuthorPosts
- You must be logged in to reply to this topic.