Changeset 3358055
- Timestamp:
- 09/08/2025 04:49:36 PM (6 months ago)
- Location:
- shopsite-plugin
- Files:
-
- 4 edited
-
tags/1.5.11/readme.txt (modified) (1 diff)
-
tags/1.5.11/shopsite.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/shopsite.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shopsite-plugin/tags/1.5.11/readme.txt
r3226545 r3358055 4 4 Tags: e-commerce, shopping, shopsite 5 5 Requires at least: 3.2.0 6 Tested up to: 6. 76 Tested up to: 6.8 7 7 Stable tag: 1.5.11 8 License: GPLv2 8 9 9 10 Add a free ShopSite shopping cart to your WordPress site and start taking orders today! -
shopsite-plugin/tags/1.5.11/shopsite.php
r3226553 r3358055 93 93 94 94 function link_tutorial() { 95 ?><script>var $ = jQuery;</script><script src="<?php echo plugin_dir_url(__FILE__); ?>jquery.tutorial.js"></script><script src="<?php echo plugin_dir_url(__FILE__); ?>tutorial_driver.js"></script><link rel="stylesheet" href="<?php echo plugin_dir_url(__FILE__); ?>shopsite.css" type="text/css" /> 95 $pluginDirUrl = plugin_dir_url(__FILE__); 96 ?><script>var $ = jQuery;</script><script src="<?= $pluginDirUrl ?>jquery.tutorial.js"></script><script src="<?= $pluginDirUrl ?>tutorial_driver.js"></script><link rel="stylesheet" href="<?= $pluginDirUrl ?>shopsite.css" type="text/css" /> 96 97 <?php 97 98 } … … 102 103 } 103 104 104 //add_action( 'admin_enqueue_scripts', 'link_jquery' ); 105 function is_block_editor() { 106 return function_exists('is_gutenberg_page') && is_gutenberg_page(); 107 } 108 105 109 add_action( 'admin_head', 'link_tutorial' ); 106 110 add_action( 'admin_head', 'link_ss_path' ); … … 672 676 return $test_download_xml; 673 677 674 $res = get_url(get_option('ss_shopsite_url') );678 $res = get_url(get_option('ss_shopsite_url') . '&test-connection-wp=1'); 675 679 if ($res[0] == false) 676 680 return array("success"=>false, "error"=>$res[1]); -
shopsite-plugin/trunk/readme.txt
r3226545 r3358055 4 4 Tags: e-commerce, shopping, shopsite 5 5 Requires at least: 3.2.0 6 Tested up to: 6. 76 Tested up to: 6.8 7 7 Stable tag: 1.5.11 8 8 -
shopsite-plugin/trunk/shopsite.php
r3226553 r3358055 672 672 return $test_download_xml; 673 673 674 $res = get_url(get_option('ss_shopsite_url') );674 $res = get_url(get_option('ss_shopsite_url') . '&test-connection-wp=1'); 675 675 if ($res[0] == false) 676 676 return array("success"=>false, "error"=>$res[1]);
Note: See TracChangeset
for help on using the changeset viewer.