Automated Aramex Express live/manual shipping rates, labels and pickup for WordPress Plugin Directory
Automated Aramex Express live/manual shipping rates, labels and pickup is a WordPress app, with a 4.0 average rating from 4 reviews, as of July 13, 2026.
Automated Aramex Express live/manual shipping rates, labels and pickup is a WordPress Plugin Directory app by Aarsiv Groups. With a rating of 4.0★ from 4 reviews.
AppRanks verdict
Generated from live marketplace data — refreshed daily
Automated Aramex Express live/manual shipping rates, labels and pickup is a well-rated WordPress app with a limited review volume. It is listed in the Shipping rates category on WordPress Plugin Directory, which AppRanks treats as the canonical taxonomy node for ranking and competitor comparison. 4 reviews put it in the early-traction tier — useful for early-stage stores willing to be on the leading edge. Early-traction review counts are sensitive to single launch periods or feature events, so a 30-day re-check before bigger commitments often resolves whether the trend is sustained. Paid-only pricing means evaluating fit on the marketplace listing or via the developer's documentation before installing. AppRanks tracks rating, review count, pricing tier, and category position daily — the figures on this page reflect the most recent scrape from the canonical WordPress Plugin Directory listing.
Pros
- +Published by Aarsiv Groups — established developer track record
Cons
- −Limited review base (4) — ratings can shift significantly with new feedback
Looking to switch from Automated Aramex Express live/manual shipping rates, labels and pickup?
See Automated Aramex Express live/manual shipping rates, labels and pickup's alternatives ranked by audit score, rating, and review velocity.
How Automated Aramex Express live/manual shipping rates, labels and pickup works
Show full descriptionShow less
Aramex shipping plugin, integrate seamlessly with Aramex for real-time shipping rates, label printing, shipping rate previews on product pages, and much more.
What this product does for you
Provides a shipping method suitable to your customers
The most popular Aramex shipping Plugin for WooCommerce that offers label printing (Premium), a custom boxing algorithm (Premium), shipping rate preview (no login needed), and more, you can be sure that your customers always pay just the right amount for delivery and you’ll save enough time to focus on what really matters.
Our highly customizeable and powerful shipping modules provide consistent, easy-to-use and flexible shipping for any shop, including shipping rate previews on product pages and much more.
Features
Display Aramex shipping rates on the product page without requiring the customer to log-in.
Get real time shipping rates directly from the Aramex systems based on your company’s Aramex account.
(Premium) Generate & print labels directly from the backoffice order page.
Shipping rates are calculated by weight and dimensions or one of the Aramex boxes:
Single Box – Assign one box size which will be used for all products.
(Premium) Multiple Boxes (Fixed Size) – Define how many products can fit in a box (number), or calculate only by weight.
(Premium) Multiple Boxes (Product Dimensions) – Define all the box sizes you use for shipping, assign dimensions to your products, and the module will automatically calculate (using an algorithm we developed) how many boxes are needed to fit all the products (always trying to use the smallest / lowest number of packages).
Option to set free shipping by Product, Category, Manufacturer or Supplier.
All Aramex Services and package types are supported, and you can select which shipping options should be available per Zone.
Each shipping method can have its own Free Shipping Limit, Additional Fee, and Insurance.
Smart caching system is used for maximum speed.
Enable/disable testing mode in module configuration.
Plugin Tags:
Aramex, Aramex Shipping, Aramex Shipping Method, Aramex WooCommerce, Aramex Priority Document Express, Aramex Priority Parcel Express, Domestic Aramex, Aramex for woocommerce, Aramex for worldwide shiping, Aramex plugin, create shipment, Aramex shipping, Aramex shipping rates
About Aramex Aramex is a multinational logistics, courier and package delivery company based in Dubai, United Arab Emirates (UAE).It is the first Arab-based company to be listed on the NASDAQ stock exchange. Aramex is listed on the Dubai Financial Market.The company expanded its operations to 120 locations in 33 countries, primarily emerging markets in the Middle East and Southeast Asia by 2001. The company’s strategy was to enter high-growth markets characterized by high populations and liberalizing economies.
About [Shipi](https://myshipi.com) We are Web Development Company in India. We are planning for High Quality WordPress, Woocommerce, Edd Downloads Plugins. We are launched on 4th Nov 2018.
What a2Z Plugins Group Tell to Customers?
“Make Your Shop With Smile”
Useful filters:
1) To Sort the rates from Lowest to Highest
add_filter( ‘woocommerce_package_rates’ , ‘shipi_sort_shipping_methods’, 10, 2 );
function shipi_sort_shipping_methods( $rates, $package ) {
if ( empty( $rates ) ) return;
if ( ! is_array( $rates ) ) return;
uasort( $rates, function ( $a, $b ) {
if ( $a == $b ) return 0;
return ( $a->cost < $b->cost ) ? -1 : 1;
} );
return $rates;
}
2) Add custom multi-vendor
= Send vendor id for product =
add_filter(‘hits_aramex_custom_account’, ‘hits_aramex_custom_account_fun’, 10, 2);
function hits_aramex_custom_account_fun($ven_id=””, $prod_id=””){
if(!empty($prod_id)){
if (class_exists(‘WeDevs_Dokan’)) {
$ven_id = get_post_field(‘post_author’, $prod_id);
}
}
return $ven_id;
}
= Send account and address info for vendor =
add_filter(‘hits_aramex_custom_account_info’, ‘hits_aramex_custom_account_info_fun’, 10, 2);
function hits_aramex_custom_account_info_fun($ven_data=[], $ven_id=””){
if(!empty($ven_id)){
if (class_exists(‘WeDevs_Dokan’)) {
$vendor = dokan()->vendor->get($ven_id);
$vendor_address = $vendor->get_address();
$ven_data[‘a2z_aramexexpress_site_id’] = “”;
$ven_data[‘a2z_aramexexpress_site_pwd’] = “”;
$ven_data[‘a2z_aramexexpress_acc_no’] = “”;
$ven_data[‘a2z_aramexexpress_entity’] = “”;
$ven_data[‘a2z_aramexexpress_acc_pin’] = “”;
$ven_data[‘a2z_aramexexpress_shipper_name’] = $vendor->get_name();
$ven_data[‘a2z_aramexexpress_company’] = $vendor->get_shop_name();
$ven_data[‘a2z_aramexexpress_mob_num’] = $vendor->get_phone();
$ven_data[‘a2z_aramexexpress_email’] = $vendor->get_email();
$ven_data[‘a2z_aramexexpress_address1’] = isset($vendor_address[‘street_1’]) ? $vendor_address[‘street_1’] : “”;
$ven_data[‘a2z_aramexexpress_address2’] = isset($vendor_address[‘street_2’]) ? $vendor_address[‘street_2’] : “”;
$ven_data[‘a2z_aramexexpress_city’] = isset($vendor_address[‘city’]) ? $vendor_address[‘city’] : “”;
$ven_data[‘a2z_aramexexpress_state’] = isset($vendor_address[‘state’]) ? $vendor_address[‘state’] : “”;
$ven_data[‘a2z_aramexexpress_zip’] = isset($vendor_address[‘zip’]) ? $vendor_address[‘zip’] : “”;
$ven_data[‘a2z_aramexexpress_country’] = isset($vendor_address[‘country’]) ? $vendor_address[‘country’] : “”;
$ven_data[‘a2z_aramexexpress_gstin’] = “”;
$ven_data[‘a2z_aramexexpress_con_rate’] = “”;
$ven_data[‘a2z_aramexexpress_v_email’] = $vendor->get_email();
$ven_data[‘a2z_aramexexpress_def_inter’] = “PPX”;
$ven_data[‘a2z_aramexexpress_def_dom’] = “CDS”;
}
}
return $ven_data;
}
= Assign vendor email to receive shipment docs on mail =
add_filter(‘hits_aramex_custom_account_email’, ‘hits_aramex_custom_account_email_fun’, 10, 2, 3);
function hits_aramex_custom_account_email_fun($ven_email=””, $user_email=””, $ven_id=””){
return $user_email;
}
Category rankings
As of Jul 13, 2026- Aramex#0of 4Top 1%
- Aramex Express#0of 1Top 1%
- Automated#0of 4Top 1%
- Shipping label#0of 6Top 1%
- Shipping rates#0of 21Top 1%
See 90-day rank history for each category
Track daily rank changes, category shifts, and position volatility.
Keyword rankings
Automated Aramex Express live/manual shipping rates, labels and pickup ranks for 1 keywords across WordPress Plugin Directory. Here are the top 1:
- Rank #341
Competitors & alternatives
Automated Aramex Express live/manual shipping rates, labels and pickup doesn't have curated competitor matchups yet. Other tracked shipping rates apps on WordPress:
Frequently asked questions
What is Automated Aramex Express live/manual shipping rates, labels and pickup?
Automated Aramex Express live/manual shipping rates, labels and pickup is an app for WordPress. It currently holds a 4.0-star rating from 4 merchant reviews, and AppRanks has been tracking its public marketplace data on a daily refresh cycle. It is listed under the Shipping rates category on AppRanks, where you can see its current category position, review-velocity trend, and how it compares against the top alternatives in the same space. Developed by Aarsiv Groups.
Who uses Automated Aramex Express live/manual shipping rates, labels and pickup?
Currently around 90 active stores have installed Automated Aramex Express live/manual shipping rates, labels and pickup. Its review base is still building, which usually maps to early-stage merchants and stores piloting a new workflow. It is part of the Shipping rates category on WordPress.