Claudio Sanches
2f1c00b773
Merge pull request #18256 from woocommerce/fix/18246
...
Use text color for email links
2017-12-21 17:34:38 -02:00
claudiulodro
7fcbceaae5
Refactor logic
2017-12-21 11:31:58 -08:00
Claudio Sanches
1d132b8b9d
Merge pull request #18263 from woocommerce/fix/18244
...
Process embed shortcode in short description
2017-12-21 17:27:34 -02:00
claudiulodro
d0bc5964ea
Actually use correct template version
2017-12-21 11:25:22 -08:00
claudiulodro
59a174985b
Use correct template version and phpcs
2017-12-21 11:20:30 -08:00
claudiulodro
2d88654a0a
Always use contrasting color for links
2017-12-21 11:14:14 -08:00
claudiulodro
90dd9179ac
Remove duplicate unautop
2017-12-21 10:43:02 -08:00
Claudiu Lodromanean
c4e5556368
Merge pull request #18262 from woocommerce/fix/18100
...
Format prices while exporting products
2017-12-21 10:39:49 -08:00
claudiulodro
9dc9fffc3a
Process embed shortcode in short description
2017-12-21 10:19:15 -08:00
Claudio Sanches
f539a77282
Merge pull request #18259 from woocommerce/update/add-package-lock-json
...
Add package-lock.json to the repository
2017-12-21 16:14:07 -02:00
Claudio Sanches
71a1fd319e
Fixed coding standards
2017-12-21 15:53:12 -02:00
Claudio Sanches
c18cc47286
Format prices while exporting products
2017-12-21 15:43:45 -02:00
Rodrigo Primo
8768e1decd
Bump WC version in package.json
2017-12-21 13:26:58 -02:00
Rodrigo Primo
ea0d95abbd
Bump minimum required Node and NPM version to latest stable versions
...
We need to make sure everyone is running Node 8 to avoid package-lock.json related issues for people running Node 6.
2017-12-21 13:23:53 -02:00
Rodrigo Primo
5523747053
Add package-lock.json to the repository
...
As recommended by NPM documentation and to make sure everyone is using the same versions of all dependencies.
https://docs.npmjs.com/files/package-lock.json
2017-12-21 13:18:14 -02:00
claudiulodro
28db1c270a
Use text color for links
2017-12-21 06:35:55 -08:00
Claudiu Lodromanean
4f94d9dbbc
Merge pull request #18247 from AdamQuadmon/wc-exporter-custom-filters
...
Add product export row action hook
2017-12-21 06:02:56 -08:00
Luciano Amodio
1b42973b75
Add export ajax query args and filename filter hooks
...
`woocommerce_export_get_ajax_query_args` let you pass args to ajax actions
`woocommerce_{$this->export_type}_export_get_filename` let you change the filename
2017-12-20 21:20:02 +01:00
Luciano Amodio
865efa3736
Add product export row action hook
...
having this hook is possible to actually use the woocommerce_product_export_product_query_args filter
```
add_action('woocommerce_product_export_row', 'export_custom_product');
add_filter( 'woocommerce_product_export_product_query_args', 'export_product_query_args');
// https://github.com/woocommerce/woocommerce/wiki/wc_get_products-and-WC_Product_Query
add_filter( 'woocommerce_product_data_store_cpt_get_products_query', 'handle_custom_query_var', 10, 2 );
function export_custom_product() {
$args = [
'show_option_all' => 'Custom',
'taxonomy' => 'pa_custom',
'name' => 'custom',
'orderby' => 'name',
'order' => 'ASC',
'selected' => isset($_REQUEST['custom']) ? $_REQUEST['custom'] : '',
'show_count' => true,
'hide_empty' => true,
'menu_order' => false
];
?>
<tr>
<th scope="row">
<label for="custom">Filter by Custom</label>
</th>
<td>
<?php wp_dropdown_categories($args); ?>
</td>
</tr>
<?php
}
function export_product_query_args($args) {
$args['custom'] = 'default';
if ( ! empty( $_POST['form'] ) ) {
$values = explode('=', $_POST['form']);
if('custom' === $values[0]) {
$args['custom'] = wp_unslash( $values[1] );
}
}
return $args;
}
function handle_custom_query_var( $query, $query_vars ) {
if ( ! empty( $query_vars['custom'] ) ) {
$query['tax_query'][] = array(
'taxonomy' => 'pa_ custom',
'field' => 'id',
'terms' => esc_attr( $query_vars['custom'] )
);
}
return $query;
}
```
2017-12-20 20:13:10 +01:00
Claudiu Lodromanean
59ccb00e49
Merge pull request #18242 from lipemat/fix/date-args-wpcli-wc-product_review
...
Fix --date_created and --date_created_gmt args for wc product_review
2017-12-20 10:07:18 -08:00
Claudio Sanches
8bdc9a6a1d
Fixed coding standards
2017-12-20 15:49:50 -02:00
Claudiu Lodromanean
0c29a301a4
Merge pull request #18243 from iamchetanp/patch-1
...
Remove space before comma in function call
2017-12-20 09:37:20 -08:00
Claudiu Lodromanean
6766ba2549
Merge pull request #18208 from MannyC/master
...
Allow back end to pass adhoc options to the product flexslider
2017-12-20 09:36:29 -08:00
Claudio Sanches
3877c82677
Merge pull request #18237 from alexminza/master
...
Added Moldova states
2017-12-20 15:10:36 -02:00
Claudio Sanches
1cd6fa5fae
Merge pull request #18234 from woocommerce/add/order-item-tests
...
More WC_Order_Item_Product tests
2017-12-20 15:05:42 -02:00
Chetan Prajapati
325cbf443d
Remove space before comma in function call
...
There is PHPCS error about "Remove space before comma in function call". That needs to be removed.
2017-12-20 22:07:48 +05:30
lipemat
c4cb7d146a
support --date_created and --date_created_gmt via wp-cli wc product_review create
2017-12-20 09:54:42 -05:00
MannyC
1252215dc2
Change flexslider options property name back to just `flexslider` from `flexslider_options`.
2017-12-20 12:15:45 +00:00
Alexander Minza
eea61cbe79
Added Moldova states
2017-12-19 23:44:58 +02:00
Alexander Minza
fca5ef8dd8
Added Moldova states
2017-12-19 23:44:25 +02:00
Claudiu Lodromanean
5349ffbb47
Merge pull request #18233 from woocommerce/fix/18232
...
Fixed file log dates and implement better date formatting
2017-12-19 11:53:06 -08:00
claudiulodro
b7c659ca07
Fix php <=5.6 errors
2017-12-19 11:37:37 -08:00
Claudio Sanches
068418124e
Merge pull request #18203 from AdamQuadmon/wc-exporter-limit-filter
...
Add WC Product CSV Exporter limit filter
2017-12-19 15:42:38 -02:00
Claudio Sanches
f40f3291f8
Fixed file log dates and implement better date formatting
...
Closes #18232
2017-12-19 15:38:50 -02:00
claudiulodro
cff662ac47
phpcs
2017-12-19 09:30:02 -08:00
Luciano Amodio
bec2e939b4
change filter name
2017-12-19 18:25:16 +01:00
claudiulodro
3461fd2a3a
Array access tests
2017-12-19 09:22:17 -08:00
Claudiu Lodromanean
2c6a39716f
Merge pull request #18231 from woocommerce/fix/18225
...
Apply woocommerce_short_description filter before check if excerpt is empty
2017-12-19 08:39:25 -08:00
Claudio Sanches
7b6f236bf1
Merge pull request #18229 from woocommerce/hotfix-updates-word-in-wc-plugin-description
...
Updates plugin description…
2017-12-19 14:27:20 -02:00
Claudio Sanches
9413589e8f
Apply woocommerce_short_description filter before check if excerpt is empty
...
Closes #18225
2017-12-19 14:19:12 -02:00
Luciano Amodio
8983b38598
change filter name and position `woocommerce_product_export_get_limit`
2017-12-19 17:18:55 +01:00
Claudio Sanches
a29ebb6701
Merge pull request #18224 from unfulvio/issue-18223
...
[#18223 ] Add argument to woocommerce_product_related_posts_query filter
2017-12-19 12:14:40 -02:00
Gareth Allison
29cc03c798
Updates the word `e-commerce` to `eCommerce` in the plugin description to be in line with the Woo and Automattic language & writing style.
2017-12-19 16:12:07 +02:00
Luciano Amodio
f383886fb5
fix not needed double quotes
2017-12-19 14:51:23 +01:00
Luciano Amodio
4d267c0dbb
Rename exporter filter to `woocommerce_product_export_init`
...
moving it in the abstract constructor and let it be more generic now is possible to do:
```
add_filter( 'woocommerce_product_export_init', function ( $exporter ) {
if( 'product' === $exporter->export_type ) {
$exporter->set_limit(100);
}
});
2017-12-19 13:50:37 +01:00
Fulvio Notarstefano
e718d7bd40
[ #18223 ] Rename var to a more apt name
2017-12-19 17:19:10 +08:00
Fulvio Notarstefano
ee123fb739
[ #18223 ] Add argument to woocommerce_product_related_posts_query filter
2017-12-19 10:18:33 +08:00
claudiulodro
2c884c0003
Progress on order item tests
2017-12-18 14:45:39 -08:00
Claudiu Lodromanean
e898623668
Merge pull request #18174 from woocommerce/fix/18170
...
Adjusts price filter code to exclude taxes to match how prices are stored in the DB
2017-12-18 11:13:44 -08:00
Claudiu Lodromanean
b494e45865
Merge pull request #18193 from woocommerce/fix/16940
...
Do not load SESSION class during CRON events
2017-12-18 10:47:07 -08:00