CTX Feed – WooCommerce Product Feed Manager Plugin - Version 3.0.1

Version Description

Download this release

Release Info

Developer wahid0003
Plugin Icon 128x128 CTX Feed – WooCommerce Product Feed Manager Plugin
Version 3.0.1
Comparing to
See all releases

Code changes from version 3.0.0 to 3.0.1

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://webappick.com
4
  Tags:woocommerce,google product feed,facebook product feed,woocommerce product feed,woocommerce,
5
  Requires at least: 3.6
6
  Tested Up To: 5.0.3
7
- Stable tag: 3.0.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -296,6 +296,9 @@ Using pro version:
296
 
297
  == Changelog ==
298
 
 
 
 
299
  = 3.0.0(2019-01-31) =
300
  * Minor bug fixing
301
 
4
  Tags:woocommerce,google product feed,facebook product feed,woocommerce product feed,woocommerce,
5
  Requires at least: 3.6
6
  Tested Up To: 5.0.3
7
+ Stable tag: 3.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
296
 
297
  == Changelog ==
298
 
299
+ = 3.0.1(2019-02-06) =
300
+ * Manufacturer attribute added to NexTag template
301
+
302
  = 3.0.0(2019-01-31) =
303
  * Minor bug fixing
304
 
admin/partials/nextag/add-feed.php CHANGED
@@ -18,6 +18,55 @@
18
  </tr>
19
  </thead>
20
  <tbody>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  <tr>
22
  <td>
23
  <i class="wf_sortedtable dashicons dashicons-menu"></i>
@@ -73,7 +122,7 @@
73
  </td>
74
  <td>
75
  <select name="mattributes[]" id="" required class="wf_mattributes">
76
- <?php echo $dropDown->nextagAttributesDropdown('Description'); ?>
77
  </select>
78
  </td>
79
  <td>
18
  </tr>
19
  </thead>
20
  <tbody>
21
+ <tr>
22
+ <td>
23
+ <i class="wf_sortedtable dashicons dashicons-menu"></i>
24
+ </td>
25
+ <td>
26
+ <select name="mattributes[]" id="" required class="wf_mattributes">
27
+ <?php echo $dropDown->nextagAttributesDropdown('Manufacturer'); ?>
28
+ </select>
29
+ </td>
30
+ <td>
31
+ <input type="text" name="prefix[]" autocomplete="off" class="wf_ps"/>
32
+ </td>
33
+ <td>
34
+ <select name="type[]" class="attr_type wfnoempty">
35
+ <option value="attribute"> <?php echo _e('Attribute','woo-feed');?></option>
36
+ <option selected value="pattern"> <?php echo _e('Pattern','woo-feed');?></option>
37
+ </select>
38
+ </td>
39
+ <td>
40
+ <select name="attributes[]" id="" class="wf_attr wf_attributes" style=" display: none;">
41
+ <?php echo $product->attributeDropdown(''); ?>
42
+ </select>
43
+ <input type="text" name="default[]" autocomplete="off" class="wf_default wf_attributes"
44
+ />
45
+ </td>
46
+ <td>
47
+ <input type="text" name="suffix[]" autocomplete="off" class="wf_ps"/>
48
+ </td>
49
+ <td>
50
+ <select name="output_type[][]" id="" class="outputType wfnoempty">
51
+ <option value="1">Default</option>
52
+ <option value="2">Strip Tags</option>
53
+ <option value="3">UTF-8 Encode</option>
54
+ <option value="4">htmlentities</option>
55
+ <option value="5">Integer</option>
56
+ <option value="6">Price</option>
57
+ <option value="7">Remove Space</option><option value="10">Remove ShortCodes</option><option value="9">Remove Special Character</option>
58
+ <option value="8">CDATA</option>
59
+ </select>
60
+ <i class="dashicons dashicons-editor-expand expandType"></i>
61
+ <i style="display: none;" class="dashicons dashicons-editor-contract contractType"></i>
62
+ </td>
63
+ <td>
64
+ <input type="text" name="limit[]" class="wf_ps"/>
65
+ </td>
66
+ <td>
67
+ <i class="delRow dashicons dashicons-trash"></i>
68
+ </td>
69
+ </tr>
70
  <tr>
71
  <td>
72
  <i class="wf_sortedtable dashicons dashicons-menu"></i>
122
  </td>
123
  <td>
124
  <select name="mattributes[]" id="" required class="wf_mattributes">
125
+ <?php echo $dropDown->nextagAttributesDropdown('Product Description'); ?>
126
  </select>
127
  </td>
128
  <td>
includes/class-woo-feed.php CHANGED
@@ -70,7 +70,7 @@ class Woo_Feed
70
  public function __construct()
71
  {
72
  $this->woo_feed = 'woo-feed';
73
- $this->version = '3.0.0';
74
 
75
  $this->load_dependencies();
76
  $this->set_locale();
70
  public function __construct()
71
  {
72
  $this->woo_feed = 'woo-feed';
73
+ $this->version = '3.0.1';
74
 
75
  $this->load_dependencies();
76
  $this->set_locale();
includes/classes/class-woo-feed-default-attributes.php CHANGED
@@ -3815,7 +3815,7 @@ class Woo_Feed_Default_Attributes
3815
  $attributes=array(
3816
  "--1" => "Required Attributes",
3817
  "Product Name" =>"Product Name",
3818
- "Description" =>"Description",
3819
  "Image URL" =>"Image URL",
3820
  "Click-Out URL" =>"Click-Out URL",
3821
  "Price" =>"Price",
3815
  $attributes=array(
3816
  "--1" => "Required Attributes",
3817
  "Product Name" =>"Product Name",
3818
+ "Product Description" =>"Product Description",
3819
  "Image URL" =>"Image URL",
3820
  "Click-Out URL" =>"Click-Out URL",
3821
  "Price" =>"Price",
woo-feed.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: WooCommerce Product Feed
17
  * Plugin URI: https://webappick.com/
18
  * Description: This plugin generate WooCommerce product feed for Shopping Engines like Google Shopping,Facebook Product Feed,eBay,Amazon,Idealo and many more..
19
- * Version: 3.0.0
20
  * Author: WebAppick
21
  * Author URI: https://webappick.com/
22
  * License: GPL v2
16
  * Plugin Name: WooCommerce Product Feed
17
  * Plugin URI: https://webappick.com/
18
  * Description: This plugin generate WooCommerce product feed for Shopping Engines like Google Shopping,Facebook Product Feed,eBay,Amazon,Idealo and many more..
19
+ * Version: 3.0.1
20
  * Author: WebAppick
21
  * Author URI: https://webappick.com/
22
  * License: GPL v2