Remove developer doc note
This commit is contained in:
parent
f743a7d4f6
commit
ac500dcd34
|
@ -1,7 +1,5 @@
|
||||||
# Adjust the quantity input values
|
# Adjust the quantity input values
|
||||||
|
|
||||||
> This is a **Developer level** doc. If you are unfamiliar with code and resolving potential conflicts, select a [WooExpert or Developer](https://woocommerce.com/customizations/) for assistance. We are unable to provide support for customizations under our [Support Policy](http://www.woocommerce.com/support-policy/).
|
|
||||||
|
|
||||||
Set the starting value, maximum value, minimum value, and increment amount for quantity input fields on product pages.
|
Set the starting value, maximum value, minimum value, and increment amount for quantity input fields on product pages.
|
||||||
|
|
||||||
Add this code to your child theme’s `functions.php` file or via a plugin that allows custom functions to be added, such as the [Code snippets](https://wordpress.org/plugins/code-snippets/) plugin. Avoid adding custom code directly to your parent theme’s `functions.php` file, as this will be wiped entirely when you update the theme.
|
Add this code to your child theme’s `functions.php` file or via a plugin that allows custom functions to be added, such as the [Code snippets](https://wordpress.org/plugins/code-snippets/) plugin. Avoid adding custom code directly to your parent theme’s `functions.php` file, as this will be wiped entirely when you update the theme.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# Add a message above the login / register form
|
# Add a message above the login / register form
|
||||||
|
|
||||||
> This is a **Developer level** doc. If you are unfamiliar with code and resolving potential conflicts, select a [WooExpert or Developer](https://woocommerce.com/customizations/) for assistance. We are unable to provide support for customizations under our [Support Policy](http://www.woocommerce.com/support-policy/).
|
|
||||||
|
|
||||||
This code will add a custom message above the login/register form on the user’s my-account page.
|
This code will add a custom message above the login/register form on the user’s my-account page.
|
||||||
|
|
||||||
|
Add this code to your child theme’s `functions.php` file or via a plugin that allows custom functions to be added, such as the [Code snippets](https://wordpress.org/plugins/code-snippets/) plugin. Avoid adding custom code directly to your parent theme’s `functions.php` file, as this will be wiped entirely when you update the theme.
|
||||||
|
|
||||||
```php
|
```php
|
||||||
if ( ! function_exists( 'YOUR_PREFIX_login_message' ) ) {
|
if ( ! function_exists( 'YOUR_PREFIX_login_message' ) ) {
|
||||||
/**
|
/**
|
||||||
|
@ -30,5 +30,5 @@ if ( ! function_exists( 'YOUR_PREFIX_login_message' ) ) {
|
||||||
|
|
||||||
Please note that for this code to work, the following options must be checked in the WooCommerce “Accounts & Privacy” settings:
|
Please note that for this code to work, the following options must be checked in the WooCommerce “Accounts & Privacy” settings:
|
||||||
|
|
||||||
- Allow customers to create an account during checkout.
|
- Allow customers to create an account during checkout.
|
||||||
- Allow customers to create an account on the "My Account" page.
|
- Allow customers to create an account on the "My Account" page.
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
# Change number of related products output
|
# Change number of related products output
|
||||||
|
|
||||||
> This is a **Developer level** doc. If you are unfamiliar with code and resolving potential conflicts, select a [WooExpert or Developer](https://woocommerce.com/customizations/) for assistance. We are unable to provide support for customizations under our [Support Policy](http://www.woocommerce.com/support-policy/?).
|
|
||||||
|
|
||||||
Add code to your child theme’s functions.php file or via a plugin that allows custom functions to be added, such as the [Code snippets](https://wordpress.org/plugins/code-snippets/) plugin. Avoid adding custom code directly to your parent theme’s `functions.php` file as this will be wiped entirely when you update the theme.
|
Add code to your child theme’s functions.php file or via a plugin that allows custom functions to be added, such as the [Code snippets](https://wordpress.org/plugins/code-snippets/) plugin. Avoid adding custom code directly to your parent theme’s `functions.php` file as this will be wiped entirely when you update the theme.
|
||||||
|
|
||||||
Please note that it does not work for all themes because of the way they’re coded.
|
Please note that it does not work for all themes because of the way they’re coded.
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
# Unhook and remove WooCommerce emails
|
# Unhook and remove WooCommerce emails
|
||||||
|
|
||||||
> This is a **Developer level** doc. If you are unfamiliar with code and resolving potential conflicts, select a [WooExpert or Developer](https://woocommerce.com/customizations/) for assistance. We are unable to provide support for customizations under our [Support Policy](http://www.woocommerce.com/support-policy/).
|
|
||||||
|
|
||||||
This code allows you to unhook and remove the default WooCommerce emails.
|
This code allows you to unhook and remove the default WooCommerce emails.
|
||||||
|
|
||||||
Add this code to your child theme’s `functions.php` file or via a plugin that allows custom functions to be added, such as the [Code snippets](https://wordpress.org/plugins/code-snippets/) plugin. Avoid adding custom code directly to your parent theme’s `functions.php` file, as this will be wiped entirely when you update the theme.
|
Add this code to your child theme’s `functions.php` file or via a plugin that allows custom functions to be added, such as the [Code snippets](https://wordpress.org/plugins/code-snippets/) plugin. Avoid adding custom code directly to your parent theme’s `functions.php` file, as this will be wiped entirely when you update the theme.
|
||||||
|
|
Loading…
Reference in New Issue