ASTRA_Ext_WooCommerce_Markup::add_registration_link_text()
Not a member? Register CTA adding at the end of registration form.
Description
Source
File: addons/woocommerce/classes/class-astra-ext-woocommerce-markup.php
public function add_registration_link_text() {
printf(
'<p class="ast-woo-form-actions">
%1$s
<a href="#ast-woo-register" data-type="do-register" class="ast-woo-account-form-link">
%2$s
</a>
</p>',
apply_filters( 'astra_addon_woo_account_register_heading', __( 'Not a member?', 'astra-addon' ) ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
apply_filters( 'astra_addon_woo_account_register_string', __( 'Register', 'astra-addon' ) ) // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
);
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 3.9.0 | Introduced. |