Created
May 19, 2015 17:09
-
-
Save SeanChDavis/ceb987cd4e09502ecc79 to your computer and use it in GitHub Desktop.
Temp: Fix EDD Coming Soon Error
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
One of the closing parenthesis just needs a shift. | |
Current: | |
<p id="edd-cs-voted" class="edd-cs-voted"><?php printf( __( apply_filters( 'edd_coming_soon_voted_message', 'We heard you! Your interest for this %s was duly noted.', 'edd-coming-soon' ), edd_get_label_singular( true ) ) ); ?></p> | |
Should Be: | |
<p id="edd-cs-voted" class="edd-cs-voted"><?php printf( __( apply_filters( 'edd_coming_soon_voted_message', 'We heard you! Your interest for this %s was duly noted.', 'edd-coming-soon' ) ), edd_get_label_singular( true ) ); ?></p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment