This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*CSS style for a nicer Woocommerce Account Page than the default one -*/ | |
/*Note - although this is general WooCommerce styling there is a line of code which it's specific to X-theme */ | |
.woocommerce-MyAccount-content{ | |
color:rgb(13, 30, 50); | |
} | |
.woocommerce-MyAccount-content strong{ | |
text-transform:capitalize; | |
} | |
.woocommerce-account h2{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* GravityView doesn't trigger the `gform_after_submission` action when editing entries. This does that, | |
* but ONLY FOR FORM #12. | |
* | |
* @param array $form | |
* @param int $entry_id ID of the entry being updated | |
* @param GravityView_Edit_Entry_Render $object | |
* |