WE CREATE PLUGINS DESIGNED
TO MEET EVERY NEED AND REQUIREMENT.

ELTA Courier Voucher for WooCommerce

0 ReviewsDeveloped by Web Expert
119,00

ELTA Courier Voucher for WooCommerce

0 ReviewsDeveloped by Web Expert
Με κάθε αγορά του ELTA Courier Voucher for WooCommerce, παίρνετε μια άδεια το πρόσθετο το WooCommerce Order Tracking εντελώς δωρεάν.
WooCommerce Order Tracking

The ELTA Courier Voucher for WooCommerce allows you to easily and quickly print and print ELTA Courier vouchers through WooCommerce, as well as keep you and your customers informed of their status.

Using the SAOP technology and the API of the Web Services of ELTA Courier, in each order you have the option to issue the voucher based on the order details, to select the desired weights and costs (in case of change or non-registration in WooCommerce) as well as if do you want additional ELTA Courier services (such as Saturday delivery),

With ELTA Courier Voucher for WooCommerce, to issue a voucher you just need to make sure that the order details are correct and click create voucher and then you can print it.

The plugin can optionally send a notification via email (using WooCommerce Order Tracking) or via SMS/ Viber (using WooCommerce SMS) to the customer regarding the progress of their shipment.

Features

  • Voucher issuance and printing via WooCommerce and ELTA API via SOAP
  • Print in A4 or A6
  • Voucher cancellation
  • Automatic voucher version upon order completion (optional)
  • Automatically notify customer with tracking number via WooCommerce Order Tracking
  • Parcel delivery indication on orders
  • Follow the progress of the order in the admin
  • View order progress with shortcode
  • CSV Export for Cash on Delivery orders via WooCommerce Order Tracking
  • Create a log file

All Web Expert plugins for vouchers and Greek courier companies work together through a common management panel. In an online store you can use the plugins at the same time (ACS, Geniki Taxydromiki, ELTA and Speedex, Courier Center, TAXYDEMΑ) in order to choose the voucher issuing company per order.

If you face any issue regarding the configuration of the plugin, you can contact us at support@webexpert.gr

Γιατί να διαλέξετε την Web Expert

Quick & instant installation

We undertake to install the plugin immediately from the moment of purchase of the plugin! Contact us to do the installation!

Upload & edit licenses at any time

You can find and download the plugin at any time through the account uploads you have created on our site.

Free support & lifetime automatic updates

Our plugin license includes free updates and lifetime automatic updates without any annual subscription!

Ρrocess automation

Select the orders you want and automatically create vouchers by changing their status to completed. You can also cancel them in bulk.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Ερωτήσεις

How to install the plugin?

Installing the plugin is a very simple process. First, you need to download the plugin from the Web Expert membership area and save it to your computer. Then, on your website, from the WordPress admin area, go to “Plugins>Add New Plugin” and select “Upload Plugin”. Finally, you select the file you saved on your computer and select “Install Now”. For more information look up the corresponding README file that comes with the plugin or consult the plugin’s documentation.

What can I do if I get an invalid license while I have entered it correctly?

First, you can try to remove the license key from the plugin settings, select save settings, and then enter it again.
In the event that the server that serves you blocks the communication to webexpert.gr, the license check cannot be carried out. You can contact your provider and ask to whitelist our IP addresses: 5.9.116.30 and 5.9.116.27.

Can I create bulk vouchers?

Yes, you can automate vouchers generation by enabling “auto issue” from plugin settings. Then you can go to orders, select the orders you want and change their status to Completed.

Can I cancel the voucher?

You can cancel a voucher at any time. However, before taking this action, it is mandatory to contact the courier.

How do I inform the user about the courier company and the shipment number?

As long as you have installed the WooCommerce Order Tracking plugin, the user is automatically informed by email about the courier company and the shipping number when the order is completed, after you have previously created the voucher.

How does the admin delivery notification work?

The plugin at regular intervals asks the courier company through the Web Service about the order’s shipping progress and the administrator can monitor through the orders for its delivery or refusal to deliver.

I keep getting an Incorrect Username message

The field “User Code – User Code” must consist of seven numerical elements. If you have been given a smaller number, you must set as many leading “0” characters until you have seven characters. For example, if you have the user code “12345”, you would enter “0012345” as the User Code.

Need some server configuration?

For the operation of the Web Service of ELTA it is required that the port 9003 is open for communication

Need some settings on the server?

For the operation of the ELTA Web Service, port 9003 must be open for communication. In case you are asked, the IP address of ELTA courier is 212.205.47.226.

Can I change the size of the printed voucher?

The voucher cannot be printed in both formats (A4/A6) at the same time. You will need to cancel the voucher, then re-issue it and print it in the format you want.

How can I change the sender details shown on the voucher?

To change the sender details you will need to contact the courier company.

Does the plugin calculate shipping costs?

This feature is not provided by our plugin. The calculation of shipping costs has to do with the system of each courier.

Why do I get a message item, item when creating a voucher?

Error messages are displayed by the courier’s system through web Services. The most common reasons for this message are incorrect order shipping information, port 9003 is closed on the server or an error in the SoapClient.

Which courier services are provided by the plugin?

The services obtained through Web Services are the following:

Special treatment, Saturday delivery, COD.

How can I add order tracking to an e-shop?

To add order tracking to your online store, you can create a new page and paste the shortcode [webexpert_elta_track_form].

Προγραμματιστές

The plugin provides filters, where you can pass your own values to the voucher:

webexpert_elta_courier_voucher_custom_comments

The hooks we offer are indicative and need modification. They should be added to the child theme’s functions.php.

If you want to modify the voucher comments and display prices. For example, in the example below, the order number and SKUs of the products are printed in the comments, along with the corresponding quantities

add_filter('webexpert_elta_courier_voucher_custom_comments','custom_comments_per_order',10,2);
function custom_comments_per_order($comments,$order_id) {
	$order=wc_get_order($order_id);
	if ($order) {
		$item_sku=[];
		$item_sku[]="Παρ. $order_id";

		if ($order->get_customer_note())
			$item_sku[]= $order->get_customer_note();

		foreach ($order->get_items() as $item) {
			$product = wc_get_product(!empty($item->get_variation_id()) ? $item->get_variation_id() : $item->get_product_id());
			$item_sku[] = $product->get_sku() ."-{$item->get_quantity()}";
		}
		return implode(", ",$item_sku);
	}
	return $comments;
}
The products were successfully added to your cart.