Viewing 1 replies (of 1 total)
  • Plugin Author RPG84

    (@rpg84)

    Hoi,

    Ik ben pas op 19 September in de mogelijkheid om de plugin te updaten. Omdat ik tot die tijd geen toegang heb tot mijn system wegens vakantie/werk in het buitenland.

    De aanpassing is relatief simpel:

    In de plugin in het bestand tradetracker-store/widget/widget.php vervang je:

    function store_widget() {
       $widgettext = __("Select the items to show in the widget","ttstore");
       $widget_ops = array( 'classname' => 'store_widget', 'description' => $widgettext ); // Widget Settings
       $control_ops = array( 'id_base' => 'store_widget' ); // Widget Control Settings
       $this->WP_Widget( 'store_widget', 'TT Store', $widget_ops, $control_ops ); // Create the widget
      }

    voor:

    function store_widget() {
       $widgettext = __("Select the items to show in the widget","ttstore");
       $widget_ops = array( 'classname' => 'store_widget', 'description' => $widgettext ); // Widget Settings
       $control_ops = array( 'id_base' => 'store_widget' ); // Widget Control Settings
       $this->__construct( 'store_widget', 'TT Store', $widget_ops, $control_ops ); // Create the widget
      }
Viewing 1 replies (of 1 total)
  • The topic ‘tt store widget fout’ is closed to new replies.