Woocommerce global setting for shipping plugin












0















Hi I'm working on a Woocommerce 3.5.1 custom shipping plugin that has 2 shipping methods with common settings. For that I've created a parent class and 2 subclasses, but I'm not able to retrieve the setting on child classes. There are a way to create a global setting option ?



class WC_XXX extends WC_Shipping_Method {

public function __construct($instance_id = 0) {
$this->instance_id = absint( $instance_id );
if (!$this->id) {
$this->id = "xxx";
$this->title = __("XXX","woocommerce-xxx");
$this->method_title = __("XXX","woocommerce-xxx");
$this->method_description = __("XXX","woocommerce-xxx");
}

// Options
$this->init_form_fields();
$this->init_settings();
$this->enabled = $this->get_option("enabled");
$this->token = $this->get_option("token");

add_action("woocommerce_update_options_shipping_xxx", array($this, "process_admin_options"));
}

function init_form_fields() {
$this->form_fields = array(
"enabled" => array(
"title" => __("Enabled","woocommerce-xxx"),
"type" => "checkbox",
"description" => __("sdsds.","woocommerce-xxx" ),
"default" => "yes"
),
"token" => array(
"title" => __("Token","woocommerce-xxx"),
"type" => "text",
"description" => __("Token","woocommerce-xxx"),
"default" => __("91e217f3-34a9","woocommerce-xxx")
)
);
}
}

class WC_XXX_Lowcost extends WC_XXX {
public function __construct( $instance_id = 0 ) {
$this->id = "xxx-lowcost";
$this->title = __("Low Cost Shipping","woocommerce-xxx");
$this->method_title = __("Low Cost Shipping","woocommerce-xxx");
$this->method_description = __("Low Cost Shipping","woocommerce-xxx");
$this->supports = array("shipping-zones");
parent::__construct( $instance_id );
}
}

class WC_XXX_Express extends WC_XXX {
public function __construct( $instance_id = 0 ) {
$this->id = "xxx-express";
$this->title = __("Express Shipping","woocommerce-xxx");
$this->method_title = __("Express Shipping","woocommerce-xxx");
$this->method_description = __("Express Shipping Shipping","woocommerce-xxx");
$this->supports = array("shipping-zones");
parent::__construct( $instance_id );
}
}

function add_xxx_methods( $methods ) {
$methods["xxx-lowcost"] = "WC_XXX_Lowcost";
$methods["xxx-express"] = "WC_XXX_Express";
$methods["xxx"] = "WC_XXX";
return $methods;
}
add_filter("woocommerce_shipping_methods","add_xxx_methods");









share|improve this question



























    0















    Hi I'm working on a Woocommerce 3.5.1 custom shipping plugin that has 2 shipping methods with common settings. For that I've created a parent class and 2 subclasses, but I'm not able to retrieve the setting on child classes. There are a way to create a global setting option ?



    class WC_XXX extends WC_Shipping_Method {

    public function __construct($instance_id = 0) {
    $this->instance_id = absint( $instance_id );
    if (!$this->id) {
    $this->id = "xxx";
    $this->title = __("XXX","woocommerce-xxx");
    $this->method_title = __("XXX","woocommerce-xxx");
    $this->method_description = __("XXX","woocommerce-xxx");
    }

    // Options
    $this->init_form_fields();
    $this->init_settings();
    $this->enabled = $this->get_option("enabled");
    $this->token = $this->get_option("token");

    add_action("woocommerce_update_options_shipping_xxx", array($this, "process_admin_options"));
    }

    function init_form_fields() {
    $this->form_fields = array(
    "enabled" => array(
    "title" => __("Enabled","woocommerce-xxx"),
    "type" => "checkbox",
    "description" => __("sdsds.","woocommerce-xxx" ),
    "default" => "yes"
    ),
    "token" => array(
    "title" => __("Token","woocommerce-xxx"),
    "type" => "text",
    "description" => __("Token","woocommerce-xxx"),
    "default" => __("91e217f3-34a9","woocommerce-xxx")
    )
    );
    }
    }

    class WC_XXX_Lowcost extends WC_XXX {
    public function __construct( $instance_id = 0 ) {
    $this->id = "xxx-lowcost";
    $this->title = __("Low Cost Shipping","woocommerce-xxx");
    $this->method_title = __("Low Cost Shipping","woocommerce-xxx");
    $this->method_description = __("Low Cost Shipping","woocommerce-xxx");
    $this->supports = array("shipping-zones");
    parent::__construct( $instance_id );
    }
    }

    class WC_XXX_Express extends WC_XXX {
    public function __construct( $instance_id = 0 ) {
    $this->id = "xxx-express";
    $this->title = __("Express Shipping","woocommerce-xxx");
    $this->method_title = __("Express Shipping","woocommerce-xxx");
    $this->method_description = __("Express Shipping Shipping","woocommerce-xxx");
    $this->supports = array("shipping-zones");
    parent::__construct( $instance_id );
    }
    }

    function add_xxx_methods( $methods ) {
    $methods["xxx-lowcost"] = "WC_XXX_Lowcost";
    $methods["xxx-express"] = "WC_XXX_Express";
    $methods["xxx"] = "WC_XXX";
    return $methods;
    }
    add_filter("woocommerce_shipping_methods","add_xxx_methods");









    share|improve this question

























      0












      0








      0








      Hi I'm working on a Woocommerce 3.5.1 custom shipping plugin that has 2 shipping methods with common settings. For that I've created a parent class and 2 subclasses, but I'm not able to retrieve the setting on child classes. There are a way to create a global setting option ?



      class WC_XXX extends WC_Shipping_Method {

      public function __construct($instance_id = 0) {
      $this->instance_id = absint( $instance_id );
      if (!$this->id) {
      $this->id = "xxx";
      $this->title = __("XXX","woocommerce-xxx");
      $this->method_title = __("XXX","woocommerce-xxx");
      $this->method_description = __("XXX","woocommerce-xxx");
      }

      // Options
      $this->init_form_fields();
      $this->init_settings();
      $this->enabled = $this->get_option("enabled");
      $this->token = $this->get_option("token");

      add_action("woocommerce_update_options_shipping_xxx", array($this, "process_admin_options"));
      }

      function init_form_fields() {
      $this->form_fields = array(
      "enabled" => array(
      "title" => __("Enabled","woocommerce-xxx"),
      "type" => "checkbox",
      "description" => __("sdsds.","woocommerce-xxx" ),
      "default" => "yes"
      ),
      "token" => array(
      "title" => __("Token","woocommerce-xxx"),
      "type" => "text",
      "description" => __("Token","woocommerce-xxx"),
      "default" => __("91e217f3-34a9","woocommerce-xxx")
      )
      );
      }
      }

      class WC_XXX_Lowcost extends WC_XXX {
      public function __construct( $instance_id = 0 ) {
      $this->id = "xxx-lowcost";
      $this->title = __("Low Cost Shipping","woocommerce-xxx");
      $this->method_title = __("Low Cost Shipping","woocommerce-xxx");
      $this->method_description = __("Low Cost Shipping","woocommerce-xxx");
      $this->supports = array("shipping-zones");
      parent::__construct( $instance_id );
      }
      }

      class WC_XXX_Express extends WC_XXX {
      public function __construct( $instance_id = 0 ) {
      $this->id = "xxx-express";
      $this->title = __("Express Shipping","woocommerce-xxx");
      $this->method_title = __("Express Shipping","woocommerce-xxx");
      $this->method_description = __("Express Shipping Shipping","woocommerce-xxx");
      $this->supports = array("shipping-zones");
      parent::__construct( $instance_id );
      }
      }

      function add_xxx_methods( $methods ) {
      $methods["xxx-lowcost"] = "WC_XXX_Lowcost";
      $methods["xxx-express"] = "WC_XXX_Express";
      $methods["xxx"] = "WC_XXX";
      return $methods;
      }
      add_filter("woocommerce_shipping_methods","add_xxx_methods");









      share|improve this question














      Hi I'm working on a Woocommerce 3.5.1 custom shipping plugin that has 2 shipping methods with common settings. For that I've created a parent class and 2 subclasses, but I'm not able to retrieve the setting on child classes. There are a way to create a global setting option ?



      class WC_XXX extends WC_Shipping_Method {

      public function __construct($instance_id = 0) {
      $this->instance_id = absint( $instance_id );
      if (!$this->id) {
      $this->id = "xxx";
      $this->title = __("XXX","woocommerce-xxx");
      $this->method_title = __("XXX","woocommerce-xxx");
      $this->method_description = __("XXX","woocommerce-xxx");
      }

      // Options
      $this->init_form_fields();
      $this->init_settings();
      $this->enabled = $this->get_option("enabled");
      $this->token = $this->get_option("token");

      add_action("woocommerce_update_options_shipping_xxx", array($this, "process_admin_options"));
      }

      function init_form_fields() {
      $this->form_fields = array(
      "enabled" => array(
      "title" => __("Enabled","woocommerce-xxx"),
      "type" => "checkbox",
      "description" => __("sdsds.","woocommerce-xxx" ),
      "default" => "yes"
      ),
      "token" => array(
      "title" => __("Token","woocommerce-xxx"),
      "type" => "text",
      "description" => __("Token","woocommerce-xxx"),
      "default" => __("91e217f3-34a9","woocommerce-xxx")
      )
      );
      }
      }

      class WC_XXX_Lowcost extends WC_XXX {
      public function __construct( $instance_id = 0 ) {
      $this->id = "xxx-lowcost";
      $this->title = __("Low Cost Shipping","woocommerce-xxx");
      $this->method_title = __("Low Cost Shipping","woocommerce-xxx");
      $this->method_description = __("Low Cost Shipping","woocommerce-xxx");
      $this->supports = array("shipping-zones");
      parent::__construct( $instance_id );
      }
      }

      class WC_XXX_Express extends WC_XXX {
      public function __construct( $instance_id = 0 ) {
      $this->id = "xxx-express";
      $this->title = __("Express Shipping","woocommerce-xxx");
      $this->method_title = __("Express Shipping","woocommerce-xxx");
      $this->method_description = __("Express Shipping Shipping","woocommerce-xxx");
      $this->supports = array("shipping-zones");
      parent::__construct( $instance_id );
      }
      }

      function add_xxx_methods( $methods ) {
      $methods["xxx-lowcost"] = "WC_XXX_Lowcost";
      $methods["xxx-express"] = "WC_XXX_Express";
      $methods["xxx"] = "WC_XXX";
      return $methods;
      }
      add_filter("woocommerce_shipping_methods","add_xxx_methods");






      wordpress woocommerce






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 1 at 18:14









      André AndradeAndré Andrade

      144414




      144414
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53997797%2fwoocommerce-global-setting-for-shipping-plugin%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53997797%2fwoocommerce-global-setting-for-shipping-plugin%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

          Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

          A Topological Invariant for $pi_3(U(n))$