Das Modul contentbox erlaubt es, Text an irgendeiner beliebigen Position einer Prestashop Seite einzufügen.
WooCommerce: Gewichtsabhängige Versandkosten
Gewichtsabhängige Versandkosten lassen sich in WooCommerce mit dem Plugin AWD Weight/Country Shipping for WooCommerce berechnen.
Features
- Set multiple shipping rates based on cart weight and delivery country
- Group countries sharing same rates and set rates once for all of them
- Unlimited groups of countries
- Unlimited rates
WooCommerce – ein benutzerdefiniertes Feld zur Rechnung hinzufügen
<?php // add custom field to invoice email add_action( 'woocommerce_email_after_order_table', 'woocommerce_custom_invoice_fields' ); function woocommerce_custom_invoice_fields( $order ) { ?> <p><strong><?php _e('Free Book:', 'woocommerce'); ?></strong> <?php echo get_post_meta( $order->id, 'Free Book', true ); ?></p> <p><strong><?php _e('Free DVD:', 'woocommerce'); ?></strong> <?php echo get_post_meta( $order->id, 'Free DVD', true ); ?></p> <p><strong><?php _e('Gift:', 'woocommerce'); ?></strong> <?php echo get_post_meta( $order->id, 'Gift Order', true ); ?></p> <p><strong><?php _e('Gift Message:', 'woocommerce'); ?></strong> <?php echo get_post_meta( $order->id, 'Special Gift Message', true ); ?></p> <?php } ?>
- « Previous Page
- 1
- …
- 31
- 32
- 33
- 34
- 35
- …
- 39
- Next Page »