giving back
Forum Replies Created
-
For those who have managed to get this plugin to work I am very happy for you. Booking Rooms may Work well But The Hours Booking needs some work.
For myself I always try the free version of plugins to see if I can get them working for my needs In this case I have persevered But I cannot use it.
If DOTonPAPER reads this…Overal I take my hat off to all plugin Authors
but if you have a Pro Version surely a settings video for the free version would encourage folks to upgrade.I hoped to use it for Public Speaking Bookings and I am sure with a few tweaks this will eventually become a terrific plugin Good Luck
Forum: Plugins
In reply to: [CampTix PayFast Payment Gateway] Change text on 'Register' buttonAbout Editing Camptix Registration Table.
If anyone visits this question here is what I did to blend the registration table in with the page on my site.
The description bar takes it’s design from the current themes style.css
In the theme I am using (graphene) I found
——————————————-
table th {
background: #eee;
background: -webkit-linear-gradient(#f6f6f6,#eee);
background: -moz-linear-gradient(#f6f6f6,#eee);
background: -o-linear-gradient(#f6f6f6,#eee);
background: linear-gradient(#FFB200,#FF9700);
padding: 10px 5px;
}
——————————————————
In (table th) styling I changed
background: linear-gradient to –(-
#FFB200,#FF9700
and that did the trick.
Now for the “Register” button.
Open camptix.php and on or around line 4587 you should find:
value=”<?php esc_attr_e( ‘Register &rarr’, ‘camptix’ ); ?>
Change the above to:
value=”<?php esc_attr_e( ‘Words You Want →’, ‘camptix’ ); ?>”I hope this helps anyone visiting the page
***WARNING******************************************************
Changes to the CSS file may be removed during a theme update
Changes to camptix.php may also be deleted during camptix update.
So keep copies of the changes so you can easily redo them.