Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created May 19, 2015 17:09
Show Gist options
  • Save SeanChDavis/ceb987cd4e09502ecc79 to your computer and use it in GitHub Desktop.
Save SeanChDavis/ceb987cd4e09502ecc79 to your computer and use it in GitHub Desktop.
Temp: Fix EDD Coming Soon Error
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