tariqrazzaq
April 7, 2016 at 1:19 pm
I would like to remove the areas of the page highlighted in the screen shot:
https://onedrive.live.com/redir?resid=457247CD5D3EF7F7!122490&authkey=!ADmu-yxnZwEUS4c&v=3&ithint=photo%2cpng
I would also like to remove the ‘Update payment option’ button on the payment page. It is confusing for an end user as there is only one option
tariqrazzaq
April 7, 2016 at 1:24 pm
Add New Note to this Reply
After registration, I would like to remove the following link:
https://onedrive.live.com/redir?resid=457247CD5D3EF7F7!122491&authkey=!AAb2XRL0T92Djnk&v=3&ithint=photo%2cpng
tariqrazzaq
April 7, 2016 at 1:28 pm
Add New Note to this Reply
Screen shot of the update payment option
https://onedrive.live.com/redir?resid=457247CD5D3EF7F7!122492&authkey=!ANe_a2Ww4iLGlz0&v=3&ithint=photo%2cpng
Also, I have added a comment about making the pmrotion button more visible
Tony
April 8, 2016 at 4:38 am
Add New Note to this Reply
Hi there,
The easiest method is to hide those fields using CSS.
For these links you can use:
/* For the edit info and resend link */
.ee-registration-details-dv .ee-registrations-list .tiny-text {
display: none;
}
/* For the edit all attendee info link */
.ee-registration-details-dv > p {
display: none;
}
For this I can’t see any comments, just 2 boxes around the submit butons.
What do you want to do with both of those buttons?
tariqrazzaq
April 8, 2016 at 5:08 am
Add New Note to this Reply
I would like to change the background of submit promotion code to make it stand out I would like to remove/hide the update payment options button
Tony
April 8, 2016 at 5:24 am
Add New Note to this Reply
Can you post a link to the page so I can view this please?
For the promo code button, you should be able to use something like this:
#ee-promotion-code-submit {
background-color: grey;
}
You can not remove the update payment options button, if the user made any changes to the registration they must click that button to finalize the registration, it will cause further problems if they do not.
However you can change the text used on that button if that helps?
tariqrazzaq
April 8, 2016 at 5:30 am
Add New Note to this Reply
Do I add these into my themese style.css in the child theme?
Tony
April 8, 2016 at 5:33 am
Add New Note to this Reply
Yes, if you are using a child theme you should be able to add them to style.css
You could also use the My Custom CSS or Reaktiv CSS Builder plugins to add custom styles such as these.