• Resolved ozonia

    (@ozonia)


    Hi
    My web is in spanish and I need translate any text in front end:
    1.- “Submit” on the button
    2.- “Be the first to Know” in email field form
    3.- “Thank you! We will notify you as soon as we launch” after click on Submit button.

    How I can translate these strings?

    Regards.

    https://wordpress.org/plugins/cc-coming-soon/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Chop Chop

    (@chopchoporg)

    Hi,

    These will be changeable via the admin panel in the next release (we suppose it to be ready by the end of this week), in the meantime, however, you can change these strings manually by editing the template files. If you use the default template, open public/themes/default/index.php and edit the following:

    1. To change the newsletter input message, edit this :

    <input type="email" name="email" id="email" placeholder="<?php _e('Be the first to know', $this->plugin_slug); ?>" required>

    on line 125.

    2. To edit button text, edit this:

    <button type="submit" id="submit"><?php _e('Submit', $this->plugin_slug); ?></button>

    on line 129.

    3. To edit “Thank you” message, edit this:

    <div id="thank-you"><p>Thank you! We will notify you as soon as we launch.</p></div>

    on line 122.

    Keep in mind, however, that upgrading the plugin will overwrite these modifications.

    Let me know if you have any questions, I’ll be happy to help.

    Thread Starter ozonia

    (@ozonia)

    Hi
    Solved it!
    Thanks for your fast reply.
    Regards.

    Plugin Author Chop Chop

    (@chopchoporg)

    Great:)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Translate strings on front end’ is closed to new replies.