remove sprintf as it seems there is a conflict between Gettext and sprintf
This commit is contained in:
parent
e9d3772484
commit
a5908571ad
|
@ -17,7 +17,7 @@ class WC_ShareYourCart extends WC_Integration {
|
|||
public function __construct() {
|
||||
$this->id = 'shareyourcart';
|
||||
$this->method_title = __( 'ShareYourCart', 'woocommerce' );
|
||||
$this->method_description = sprintf( __( 'Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the <a href="%s" target="__blank">documentation</a>.', 'woocommerce' ), 'http://www.woothemes.com/woocommerce-docs/user-guide/shareyourcart/' );
|
||||
$this->method_description = __( 'Increase your social media exposure by 10 percent! ShareYourCart helps you get more customers by motivating satisfied customers to talk with their friends about your products. For help with ShareYourCart view the <a href="http://www.woothemes.com/woocommerce-docs/user-guide/shareyourcart/" target="__blank">documentation</a>.', 'woocommerce' );
|
||||
|
||||
// Load the settings.
|
||||
$this->settings = ( array ) get_option( $this->plugin_id . $this->id . '_settings' ); //do not rely on the base implementation of init_settings
|
||||
|
|
Loading…
Reference in New Issue