Update wp.org plugin directory links
This commit is contained in:
parent
77722ecbe3
commit
eae583fc3c
|
@ -1356,8 +1356,8 @@
|
|||
* Fix - Tweaked popularity sorting to work better when no sales are present.
|
||||
* Fix - Quote encoding in email subjects.
|
||||
* Fix - Added $wp_error parameter during checkout process to ensure WP_Error object is returned on error and checkout process is properly stopped.
|
||||
* Refactor - Taken out Piwik integration, use https://wordpress.org/extend/plugins/woocommerce-piwik-integration/ from now on.
|
||||
* Refactor - Taken out ShareYourCart integration, use https://wordpress.org/extend/plugins/shareyourcart/ from now on.
|
||||
* Refactor - Taken out Piwik integration, use https://wordpress.org/plugins/woocommerce-piwik-integration/ from now on.
|
||||
* Refactor - Taken out ShareYourCart integration, use https://wordpress.org/plugins/shareyourcart/ from now on.
|
||||
* Refactor - Moved woocommerce_get_formatted_product_name function into WC_Product class.
|
||||
* Refactor - Improved parameter handling in woocommerce_related_products() function.
|
||||
* Refactor - Widget classes (added abstract and combined similar widgets).
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*global ajaxurl */
|
||||
|
||||
/**
|
||||
* Based on Simple Page Ordering by 10up (https://wordpress.org/extend/plugins/simple-page-ordering/)
|
||||
* Based on Simple Page Ordering by 10up (https://wordpress.org/plugins/simple-page-ordering/)
|
||||
*
|
||||
* Modified - products have no children (non hierarchical)
|
||||
*/
|
||||
|
|
|
@ -229,7 +229,7 @@ class WC_Admin_Help {
|
|||
$screen->set_help_sidebar(
|
||||
'<p><strong>' . __( 'For more information:', 'woocommerce' ) . '</strong></p>' .
|
||||
'<p><a href="' . 'https://woocommerce.com/?utm_source=helptab&utm_medium=product&utm_content=about&utm_campaign=woocommerceplugin' . '" target="_blank">' . __( 'About WooCommerce', 'woocommerce' ) . '</a></p>' .
|
||||
'<p><a href="' . 'https://wordpress.org/extend/plugins/woocommerce/' . '" target="_blank">' . __( 'WordPress.org Project', 'woocommerce' ) . '</a></p>' .
|
||||
'<p><a href="' . 'https://wordpress.org/plugins/woocommerce/' . '" target="_blank">' . __( 'WordPress.org Project', 'woocommerce' ) . '</a></p>' .
|
||||
'<p><a href="' . 'https://github.com/woocommerce/woocommerce' . '" target="_blank">' . __( 'Github Project', 'woocommerce' ) . '</a></p>' .
|
||||
'<p><a href="' . 'https://woocommerce.com/product-category/themes/woocommerce/?utm_source=helptab&utm_medium=product&utm_content=wcthemes&utm_campaign=woocommerceplugin' . '" target="_blank">' . __( 'Official Themes', 'woocommerce' ) . '</a></p>' .
|
||||
'<p><a href="' . 'https://woocommerce.com/product-category/woocommerce-extensions/?utm_source=helptab&utm_medium=product&utm_content=wcextensions&utm_campaign=woocommerceplugin' . '" target="_blank">' . __( 'Official Extensions', 'woocommerce' ) . '</a></p>'
|
||||
|
|
|
@ -923,7 +923,7 @@ class WC_Admin_Post_Types {
|
|||
/**
|
||||
* Product sorting link.
|
||||
*
|
||||
* Based on Simple Page Ordering by 10up (https://wordpress.org/extend/plugins/simple-page-ordering/).
|
||||
* Based on Simple Page Ordering by 10up (https://wordpress.org/plugins/simple-page-ordering/).
|
||||
*
|
||||
* @param array $views
|
||||
* @return array
|
||||
|
|
|
@ -175,7 +175,7 @@ class WC_Settings_Products extends WC_Settings_Page {
|
|||
array(
|
||||
'title' => __( 'Product Images', 'woocommerce' ),
|
||||
'type' => 'title',
|
||||
'desc' => sprintf( __( 'These settings affect the display and dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to <a target="_blank" href="%s">regenerate your thumbnails</a>.', 'woocommerce' ), 'https://wordpress.org/extend/plugins/regenerate-thumbnails/' ),
|
||||
'desc' => sprintf( __( 'These settings affect the display and dimensions of images in your catalog - the display on the front-end will still be affected by CSS styles. After changing these settings you may need to <a target="_blank" href="%s">regenerate your thumbnails</a>.', 'woocommerce' ), 'https://wordpress.org/plugins/regenerate-thumbnails/' ),
|
||||
'id' => 'image_options',
|
||||
),
|
||||
|
||||
|
|
|
@ -1814,7 +1814,7 @@ class WC_AJAX {
|
|||
/**
|
||||
* Ajax request handling for product ordering.
|
||||
*
|
||||
* Based on Simple Page Ordering by 10up (https://wordpress.org/extend/plugins/simple-page-ordering/).
|
||||
* Based on Simple Page Ordering by 10up (https://wordpress.org/plugins/simple-page-ordering/).
|
||||
*/
|
||||
public static function product_ordering() {
|
||||
global $wpdb;
|
||||
|
|
|
@ -114,7 +114,7 @@ If on the off-chance you do encounter issues with the shop/category pages after
|
|||
|
||||
= Dummy data =
|
||||
|
||||
WooCommerce comes with some dummy data you can use to see how products look; either import dummy_data.xml via the [WordPress importer](https://wordpress.org/extend/plugins/wordpress-importer/) or use our [CSV Import Suite plugin](https://woocommerce.com/products/product-csv-import-suite/) to import dummy_data.csv and dummy_data_variations.csv.
|
||||
WooCommerce comes with some dummy data you can use to see how products look; either import dummy_data.xml via the [WordPress importer](https://wordpress.org/plugins/wordpress-importer/) or use our [CSV Import Suite plugin](https://woocommerce.com/products/product-csv-import-suite/) to import dummy_data.csv and dummy_data_variations.csv.
|
||||
|
||||
== Frequently Asked Questions ==
|
||||
|
||||
|
|
Loading…
Reference in New Issue