Ez a bővítmény nem lett tesztelve a WordPress legutóbbi 3 fő kiadásával. Lehetséges, hogy már nincs karbantartva, frissítve és a használata gondot jelenthet a frissebb WordPress verziókkal.

WC Multiple Cart Items Delete

Leírás

This „WC Multiple Cart Items Delete” plugin can be used to delete cart items in bulk on cart page using checkbox.

Telepítés

Please check following steps for installation.

  1. Add plugin to the /wp-content/plugins/ directory

  2. Check first Woocommerce plugin is activated or not from backend plugin list. If it’s not activated then active it otherwise it will show error like ‘Please activate WooCommerce plugin first’.

  3. Activate the plugin from backend plugins list.

GYIK

How can i change „Delete Cart Items” button text?

To change button text , you need to add filter in functions.php file of your activated theme/child theme.

add_filter(‘delete_items_text’,’delete_items_text_callback’);
function delete_items_text_callback($string){
$string = ‘Delete Items’;
return $string;
}

Vélemények

Nincsenek értékelések erről a bővítményről.

Közreműködők és fejlesztők

“WC Multiple Cart Items Delete” egy nyílt forráskódú szoftver. A bővítményhez a következő személyek járultak hozzá:

Közreműködők

“WC Multiple Cart Items Delete” fordítása a saját nyelvünkre.

Érdekeltek vagyunk a fejlesztésben?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Változási napló

1.0.0

  • Initial Release