Plugin Directory

Changeset 3214214


Ignore:
Timestamp:
12/28/2024 05:01:19 PM (14 months ago)
Author:
adishno
Message:

Fixed Bug on Dashboard page when WooCommerce is not installed yet. Now it gives a proper notice.

Location:
walktheweb/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • walktheweb/trunk/classes/class-wtw-forms.php

    r2819218 r3214214  
    121121                $walktheweb_domainparts = explode(".",$walktheweb_domainname);
    122122                $walktheweb_domainroot = "yoursite";
    123                 $walktheweb_wookey    = 'ck_' . wc_rand_hash();
    124                 $walktheweb_woosecret = 'cs_' . wc_rand_hash();
     123                $walktheweb_wookey    = 'ck_';
     124                $walktheweb_woosecret = 'cs_';
     125                if (function_exists('wc_rand_hash')) {
     126                    $walktheweb_wookey    = 'ck_' . wc_rand_hash();
     127                    $walktheweb_woosecret = 'cs_' . wc_rand_hash();
     128                }
    125129               
    126130                $walktheweb_carturl = $walktheweb_storeurl."/cart/";
  • walktheweb/trunk/readme.txt

    r3208820 r3214214  
    88Requires PHP: 5.2.4
    99Tested up to: 6.7.1
    10 Stable tag: 3.0.0
     10Stable tag: 3.0.1
    1111License: GPLv3
    1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    337337- Also see: [WalkTheWeb 3D Host Updates](https://github.com/HTTP3D/WalkTheWeb/releases)
    338338
    339 == Upgrade Notice ==
    340  
    341339= 3.0.0 =
    342340- Complete new rewrite using all of the latest features of WalkTheWeb 3D Internet 3.8.1. WalkTehWeb now supports hosting your own instance of WalkTheWeb as downloaded from GitHub.
    343341- GitHub: [https://github.com/HTTP3D/WalkTheWeb](https://github.com/HTTP3D/WalkTheWeb)
    344342- Also see: [WalkTheWeb 3D Host Updates](https://github.com/HTTP3D/WalkTheWeb/releases)
     343
     344== Upgrade Notice ==
     345 
     346= 3.0.1 =
     347- Fixed Bug on Dashboard page when WooCommerce is not installed yet. Now it gives a proper notice.
  • walktheweb/trunk/walktheweb.php

    r3208822 r3214214  
    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.0
     6Version: 3.0.1
    77Author: WalkTheWeb
    88Author URI: https://www.walktheweb.com/
     
    1212Requires PHP: 5.2.4
    1313Tested up to: 6.7.1
    14 Stable tag: 3.0.0
     14Stable tag: 3.0.1
    1515WC requires at least: 3.3
    1616WC tested up to: 9.4.3
Note: See TracChangeset for help on using the changeset viewer.