if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'ELEMENTOR_PRO_VERSION', '3.24.3' ); /** * All versions should be `major.minor`, without patch, in order to compare them properly. * Therefore, we can't set a patch version as a requirement. * (e.g. Core 3.15.0-beta1 and Core 3.15.0-cloud2 should be fine when requiring 3.15, while * requiring 3.15.2 is not allowed) */ define( 'ELEMENTOR_PRO_REQUIRED_CORE_VERSION', '3.22' ); define( 'ELEMENTOR_PRO_RECOMMENDED_CORE_VERSION', '3.24' ); define( 'ELEMENTOR_PRO__FILE__', __FILE__ ); define( 'ELEMENTOR_PRO_PLUGIN_BASE', plugin_basename( ELEMENTOR_PRO__FILE__ ) ); define( 'ELEMENTOR_PRO_PATH', plugin_dir_path( ELEMENTOR_PRO__FILE__ ) ); define( 'ELEMENTOR_PRO_ASSETS_PATH', ELEMENTOR_PRO_PATH . 'assets/' ); define( 'ELEMENTOR_PRO_MODULES_PATH', ELEMENTOR_PRO_PATH . 'modules/' ); define( 'ELEMENTOR_PRO_URL', plugins_url( '/', ELEMENTOR_PRO__FILE__ ) ); define( 'ELEMENTOR_PRO_ASSETS_URL', ELEMENTOR_PRO_URL . 'assets/' ); define( 'ELEMENTOR_PRO_MODULES_URL', ELEMENTOR_PRO_URL . 'modules/' ); /** * Load gettext translate for our text domain. * * @since 1.0.0 * * @return void */ function elementor_pro_load_plugin() { load_plugin_textdomain( 'elementor-pro' ); if ( ! did_action( 'elementor/loaded' ) ) { add_action( 'admin_notices', 'elementor_pro_fail_load' ); return; } $core_version = ELEMENTOR_VERSION; $core_version_required = ELEMENTOR_PRO_REQUIRED_CORE_VERSION; $core_version_recommended = ELEMENTOR_PRO_RECOMMENDED_CORE_VERSION; if ( ! elementor_pro_compare_major_version( $core_version, $core_version_required, '>=' ) ) { add_action( 'admin_notices', 'elementor_pro_fail_load_out_of_date' ); return; } if ( ! elementor_pro_compare_major_version( $core_version, $core_version_recommended, '>=' ) ) { add_action( 'admin_notices', 'elementor_pro_admin_notice_upgrade_recommendation' ); } require ELEMENTOR_PRO_PATH . 'plugin.php'; } function elementor_pro_compare_major_version( $left, $right, $operator ) { $pattern = '/^(\d+\.\d+).*/'; $replace = '$1.0'; $left = preg_replace( $pattern, $replace, $left ); $right = preg_replace( $pattern, $replace, $right ); return version_compare( $left, $right, $operator ); } add_action( 'plugins_loaded', 'elementor_pro_load_plugin' ); function print_error( $message ) { if ( ! $message ) { return; } // PHPCS - $message should not be escaped echo '
' . $message . '
'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } /** * Show in WP Dashboard notice about the plugin is not activated. * * @since 1.0.0 * * @return void */ function elementor_pro_fail_load() { $screen = get_current_screen(); if ( isset( $screen->parent_file ) && 'plugins.php' === $screen->parent_file && 'update' === $screen->id ) { return; } $plugin = 'elementor/elementor.php'; if ( _is_elementor_installed() ) { if ( ! current_user_can( 'activate_plugins' ) ) { return; } $activation_url = wp_nonce_url( 'plugins.php?action=activate&plugin=' . $plugin . '&plugin_status=all&paged=1&s', 'activate-plugin_' . $plugin ); $message = '

' . esc_html__( 'You\'re not using Elementor Pro yet!', 'elementor-pro' ) . '

'; $message .= '

' . esc_html__( 'Activate the Elementor plugin to start using all of Elementor Pro plugin’s features.', 'elementor-pro' ) . '

'; $message .= '

' . sprintf( '%s', $activation_url, esc_html__( 'Activate Now', 'elementor-pro' ) ) . '

'; } else { if ( ! current_user_can( 'install_plugins' ) ) { return; } $install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' ); $message = '

' . esc_html__( 'Elementor Pro plugin requires installing the Elementor plugin', 'elementor-pro' ) . '

'; $message .= '

' . esc_html__( 'Install and activate the Elementor plugin to access all the Pro features.', 'elementor-pro' ) . '

'; $message .= '

' . sprintf( '%s', $install_url, esc_html__( 'Install Now', 'elementor-pro' ) ) . '

'; } print_error( $message ); } function elementor_pro_fail_load_out_of_date() { if ( ! current_user_can( 'update_plugins' ) ) { return; } $file_path = 'elementor/elementor.php'; $upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path ); $message = sprintf( '

%1$s

%2$s %4$s

', esc_html__( 'Elementor Pro requires newer version of the Elementor plugin', 'elementor-pro' ), esc_html__( 'Update the Elementor plugin to reactivate the Elementor Pro plugin.', 'elementor-pro' ), $upgrade_link, esc_html__( 'Update Now', 'elementor-pro' ) ); print_error( $message ); } function elementor_pro_admin_notice_upgrade_recommendation() { if ( ! current_user_can( 'update_plugins' ) ) { return; } $file_path = 'elementor/elementor.php'; $upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path ); $message = sprintf( '

%1$s

%2$s %4$s

', esc_html__( 'Don’t miss out on the new version of Elementor', 'elementor-pro' ), esc_html__( 'Update to the latest version of Elementor to enjoy new features, better performance and compatibility.', 'elementor-pro' ), $upgrade_link, esc_html__( 'Update Now', 'elementor-pro' ) ); print_error( $message ); } if ( ! function_exists( '_is_elementor_installed' ) ) { function _is_elementor_installed() { $file_path = 'elementor/elementor.php'; $installed_plugins = get_plugins(); return isset( $installed_plugins[ $file_path ] ); } } Alexander the Great III 336-323 BC Kingdom of Macedon Silver AR Drachm NGC AU - EmperorsCoins.com: Rare Coins, Cards, and Collectibles | Order PCGS & NGC Graded Coins | Sports Cards | Rare Gold & Silver for Sale
ADD ANYTHING HERE OR JUST REMOVE IT…
EmperorsCoins.com: Rare Coins, Cards, and Collectibles | Order PCGS & NGC Graded Coins | Sports Cards | Rare Gold & Silver for Sale
Login / Register
Sign inCreate an Account

Lost your password?

Search
0 items $0.00
Menu
EmperorsCoins.com: Rare Coins, Cards, and Collectibles | Order PCGS & NGC Graded Coins | Sports Cards | Rare Gold & Silver for Sale
0 items $0.00
Create your first navigation menu here and add it to the "Main menu" location.
Click to enlarge
1885-O Toned Morgan NGC MS63 Olathe Hoard Monster Neon Rainbow!
1885-O Toned Morgan NGC MS63 Olathe Hoard Monster Neon Rainbow! $1,400.00
Back to products
Cyprus, Nikokles, 1/12 Stater, ca. 374-361 BC, Salamis, Gold, NGC
Cyprus, Nikokles, 1/12 Stater, ca. 374-361 BC, Salamis, Gold, NGC $11,400.00

Alexander the Great III 336-323 BC Kingdom of Macedon Silver AR Drachm NGC AU

$900.00

1 in stock

Buy with
Category: NGC Ancients / Medieval
  • Description
Description

The Alexander the Great III Kingdom of Macedon Silver AR Drachm graded NGC AU is a remarkable piece that captures the essence of one of history’s most legendary figures and the era he shaped. Minted between 336 and 323 BC during or shortly after Alexander’s reign, this drachm features exquisite artistry and is a tangible link to the military and cultural expansion under the Macedonian king whose legacy lasted for centuries.

The obverse typically displays a striking, high-relief portrait of Heracles (Hercules) wearing a lion skin headdress, symbolizing strength and divine favor. This representation connects Alexander to the heroic lineage of Greek mythology, affirming his divine right to rule and his exceptional status among leaders. The sculptural detail on these ancient coins reflects the work of master engravers and sets the highest standard for Hellenistic coinage.

On the reverse, the coin features Zeus seated on a throne, holding a scepter and an eagle—symbols of sovereignty and divine authority—along with the Greek inscription “ΑΛΕΞΑΝΔΡΟΥ” (“of Alexander”). The design conveys power and legitimacy, emphasizing Alexander’s control and influence over his vast empire. Other control marks and monograms indicate specific mints or political authorities responsible for issuing the coin within the broader Macedonian system.

The “AU” (About Uncirculated) grade given by NGC suggests the coin retains much of its original detail despite centuries of existence, with only minor signs of wear visible on its highest points. This balance between circulation history and preservation makes it appealing to collectors who seek coins that show character yet maintain artistic clarity and readability.

Weighing approximately 4.25 grams and crafted from high-purity silver, this drachm exemplifies the economic and cultural sophistication of the Macedonian kingdom during Alexander’s time. Owning such a coin is not only acquiring a precious asset but embracing a piece of the narrative that created the Hellenistic world, providing a profound connection to the conquests, art, and politics of antiquity.

Other Products to See

Add to cart

RUSSIA. Ivan IV “The Terrible”, 1533-1584. Silver Kopek, Novgorod mint, NGC AU50

$439.00
Add to cart

Byzantine Empire Phocas 602-610 AD NGC Ancients!

$699.00
Add to cart

Byzantine Empire Anastasius 491-518 A.D – Bronze Coin NGC Ancients!

$550.00
Add to cart

Byzantine Empire Decanummium Gorgeous Coin Great Patina and Grease NGC Certified!!

$600.00
Add to cart

Byzantine Empire Anastasius NGC Genuine Gorgeous Broken End Very Surreal and Colorful!!

$800.00
Add to cart

Byzantine Empire Anonymous Issue A.E Follis NGC Genuine Ancients Christ Bust Copper Bronze Coin!

$600.00
Add to cart

Italy Italian Venice, Leonardo Loredan 1501-1518 Silver Soldino NGC VF Details (No Issue Here!)

$399.00
Add to cart

VERY RARE! Byzantine Justin I, AD 518-527 AE Follis, NGC Certified Beautiful Patina and Great Condition!

$999.00
Based on WoodMart theme 2024 WooCommerce Themes.
payments
  • Menu
  • Categories
Set your categories menu in Header builder -> Mobile -> Mobile menu element -> Show/Hide -> Choose menu
Create your first navigation menu here
Shopping cart
Close
Start typing to see posts you are looking for.