Plugin Directory

Changeset 3224938


Ignore:
Timestamp:
01/18/2025 08:59:41 PM (15 months ago)
Author:
adishno
Message:

3.0.2

  • Updated WooCommerce tested version by confirming (HPOS) High Performance Order Storage compatibility.
  • Fixed bug with adding WalkTheWeb 3D Host API Key validation.
  • Fixed bug with adding tables on first install.
Location:
walktheweb
Files:
71 added
4 edited

Legend:

Unmodified
Added
Removed
  • walktheweb/trunk/assets/scripts/walktheweb_main.js

    r3208818 r3224938  
    14531453                'function':'hostrequest'
    14541454            };
    1455 
    14561455            walktheweb.postJSON(zhosturl + "/connect/apikeys.php", zrequest,
    14571456                function(zresponse) {
     
    14751474    this.checkHosts = function() {
    14761475        try {
    1477             var zcols = document.getElementsByClassName('walktheweb_col4');
     1476            var zcols = document.getElementsByClassName('walktheweb_col6right');
    14781477            for (var i = 0;i < zcols.length;i++) {
    14791478                if (zcols[i] != null) {
  • walktheweb/trunk/classes/class-walktheweb.php

    r2819218 r3224938  
    1212final class WalkTheWeb {
    1313   
    14     public $version = '2.0.0';
    15     public $dbversion = '2.0.0';
    16     public $jsversion = '2.0.0';
    17     public $cssversion = '2.0.0';
     14    public $version = '3.0.2';
     15    public $dbversion = '3.0.0';
     16    public $jsversion = '3.0.1';
     17    public $cssversion = '3.0.0';
    1818    public $blogid = '';
    1919    public $storeurl = '';
     
    291291        try {
    292292            global $wpdb;
     293            $walktheweb_db_version = '';
    293294            if (is_multisite()) {
    294295                $walktheweb_db_version = get_blog_option($this->blogid, 'walktheweb_db_version');
     
    296297                $walktheweb_db_version = get_option('walktheweb_db_version');
    297298            }
    298             if ($walktheweb_db_version != $this->dbversion) {
     299            if ($walktheweb_db_version != $this->dbversion || !isset($walktheweb_db_version) || empty($walktheweb_db_version)) {
    299300                require_once(ABSPATH.'wp-admin/includes/upgrade.php' );     
    300301               
  • walktheweb/trunk/readme.txt

    r3214214 r3224938  
    88Requires PHP: 5.2.4
    99Tested up to: 6.7.1
    10 Stable tag: 3.0.1
     10Stable tag: 3.0.2
    1111License: GPLv3
    1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1313WC requires at least: 3.3.0
    14 WC tested up to: 9.4.3
     14WC tested up to: 9.5.2
    1515
    1616WalkTheWeb provides a Metaverse 3D Store front-end for your WooCommerce store in less than 5 minutes, to give you more Internet traffic and sales!
     
    342342- Also see: [WalkTheWeb 3D Host Updates](https://github.com/HTTP3D/WalkTheWeb/releases)
    343343
    344 == Upgrade Notice ==
    345  
    346344= 3.0.1 =
    347345- Fixed Bug on Dashboard page when WooCommerce is not installed yet. Now it gives a proper notice.
     346
     347== Upgrade Notice ==
     348 
     349= 3.0.2 =
     350- Updated WooCommerce tested version by confirming (HPOS) High Performance Order Storage compatibility.
     351- Fixed bug with adding WalkTheWeb 3D Host API Key validation.
     352- Fixed bug with adding tables on first install.
  • walktheweb/trunk/walktheweb.php

    r3214214 r3224938  
    44Plugin URI: https://wordpress.org/plugins/walktheweb/
    55Description: WalkTheWeb provides a Metaverse 3D Store front-end for your WooCommerce store in less than 5 minutes, to give you more Internet traffic and sales!
    6 Version: 3.0.1
     6Version: 3.0.2
    77Author: WalkTheWeb
    88Author URI: https://www.walktheweb.com/
     
    1212Requires PHP: 5.2.4
    1313Tested up to: 6.7.1
    14 Stable tag: 3.0.1
     14Stable tag: 3.0.2
    1515WC requires at least: 3.3
    16 WC tested up to: 9.4.3
     16WC tested up to: 9.5.2
    1717Copyright: © 2013-2025 WalkTheWeb.
    1818License: GPLv3
     
    3030    define('WTW_PLUGIN_FILE', __FILE__);
    3131}
     32
     33/**
     34 * Declare HPOS High Performance Order Storge Compatibility.
     35 */
     36add_action( 'before_woocommerce_init', function() {
     37    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     38        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     39    }
     40} );
    3241
    3342/**
Note: See TracChangeset for help on using the changeset viewer.