-
Closed
-
Hi,
I’m using plugin Child Theme Configurator. I try to change two line in file woo-config.php but it’s not work. If I changed it in orginal file it work, but in Child Them file not.
I try to change line with translations:
<p class="form-row form-row-first">
<label for="password_1"><?php _e( 'Password (leave blank to leave unchanged)', 'woocommerce' ); ?></label>
<input type="password" class="input-text" name="password_1" id="password_1" />
</p>
<p class="form-row form-row-last">
<label for="password_2"><?php _e( 'Confirm new password', 'woocommerce' ); ?></label>
<input type="password" class="input-text" name="password_2" id="password_2" />
</p>
by
<p class="form-row form-row-first">
<label for="password_1"><?php _e( 'Password (leave blank to leave unchanged)', 'alora' ); ?></label>
<input type="password" class="input-text" name="password_1" id="password_1" />
</p>
<p class="form-row form-row-last">
<label for="password_2"><?php _e( 'Confirm new password', 'alora' ); ?></label>
<input type="password" class="input-text" name="password_2" id="password_2" />
</p>
The topic Child Theme Configurator is closed to new replies