From 779c5aab985dbfb7f3201c3fb8049c3fb056ddbb Mon Sep 17 00:00:00 2001 From: Kazem Alghasi Date: Wed, 12 Aug 2026 05:34:06 +0330 Subject: [PATCH] feat(theme): implement custom login template and dynamic navigation Implement a new split-design login page template and enhance theme navigation logic to improve user experience: - Add `template-login.php` with a modern split-screen layout featuring animated decorative elements and a clean form interface. - Implement dynamic header navigation that toggles between "Client Login" and "Dashboard" based on user authentication status. - Update front-page service links to point to functional account and tracking endpoints. - Add comprehensive CSS for the new login page design, including animations and responsive form styling. - Update footer credits to reflect VernaSoft. --- .../wp-content/themes/ifnex/footer.php | 2 +- .../wp-content/themes/ifnex/front-page.php | 37 +-- .../wp-content/themes/ifnex/header.php | 39 +-- .../wp-content/themes/ifnex/style.css | 245 ++++++++++++++++++ .../themes/ifnex/template-login.php | 157 +++++++++++ 5 files changed, 442 insertions(+), 38 deletions(-) create mode 100644 03_WordPress/wp-content/themes/ifnex/template-login.php diff --git a/03_WordPress/wp-content/themes/ifnex/footer.php b/03_WordPress/wp-content/themes/ifnex/footer.php index 0055de1..b4fbf9d 100644 --- a/03_WordPress/wp-content/themes/ifnex/footer.php +++ b/03_WordPress/wp-content/themes/ifnex/footer.php @@ -65,7 +65,7 @@ diff --git a/03_WordPress/wp-content/themes/ifnex/front-page.php b/03_WordPress/wp-content/themes/ifnex/front-page.php index 76db11a..42936b8 100644 --- a/03_WordPress/wp-content/themes/ifnex/front-page.php +++ b/03_WordPress/wp-content/themes/ifnex/front-page.php @@ -17,15 +17,15 @@ $address = $is_en ? ifnex_get_option('address_en', 'Tehran, Valiasr St., No. 123 // Services Data $services = $is_en ? [ - ['title' => 'International Shipping (Export)', 'desc' => 'Ship commercial and personal packages to over 150 countries worldwide with the fastest air and ground routes.', 'icon' => 'globe', 'link' => '#'], - ['title' => 'Domestic Delivery (Import)', 'desc' => 'Receive packages from around the world and get fast delivery in Iran with precise tracking and full insurance.', 'icon' => 'download', 'link' => '#'], - ['title' => 'Online Ordering', 'desc' => 'Place shipping orders online, pay securely, and track your shipment in real-time through your dedicated dashboard.', 'icon' => 'cart', 'link' => '#'], - ['title' => 'Package Tracking', 'desc' => 'Track your packages instantly with AWB number — see every step from pickup to delivery.', 'icon' => 'tracking', 'link' => '#tracking'], + ['title' => 'International Shipping (Export)', 'desc' => 'Ship commercial and personal packages to over 150 countries worldwide with the fastest air and ground routes.', 'icon' => 'globe', 'link' => home_url('/my-account/?tab=new-order'),], + ['title' => 'Domestic Delivery (Import)', 'desc' => 'Receive packages from around the world and get fast delivery in Iran with precise tracking and full insurance.', 'icon' => 'download', 'link' => home_url('/my-account/?tab=new-order'),], + ['title' => 'Online Ordering', 'desc' => 'Place shipping orders online, pay securely, and track your shipment in real-time through your dedicated dashboard.', 'icon' => 'cart', 'link' => home_url('/my-account/?tab=new-order'),], + ['title' => 'Package Tracking', 'desc' => 'Track your packages instantly with AWB number — see every step from pickup to delivery.', 'icon' => 'tracking', 'link' => home_url('/tracking/'),], ] : [ - ['title' => 'ارسال بین‌المللی (صادرات)', 'desc' => 'ارسال مرسولات تجاری و شخصی به بیش از ۱۵۰ کشور جهان با سریع‌ترین مسیرهای هوایی و زمینی.', 'icon' => 'globe', 'link' => '#'], - ['title' => 'ارسال داخلی (واردات)', 'desc' => 'دریافت مرسولات از سراسر دنیا و تحویل سریع در ایران با سیستم ردیابی دقیق و بیمه کامل.', 'icon' => 'download', 'link' => '#'], - ['title' => 'سفارش آنلاین', 'desc' => 'ثبت سفارش ارسال به صورت آنلاین، پرداخت امن، و پیگیری لحظه‌ای از طریق پنل کاربری اختصاصی.', 'icon' => 'cart', 'link' => '#'], - ['title' => 'ردیابی مرسوله', 'desc' => 'ردیابی آنی مرسولات با شماره AWB — از لحظه تحویل تا رسیدن به مقصد، هر گام را ببینید.', 'icon' => 'tracking', 'link' => '#tracking'], + ['title' => 'ارسال بین‌المللی (صادرات)', 'desc' => 'ارسال مرسولات تجاری و شخصی به بیش از ۱۵۰ کشور جهان با سریع‌ترین مسیرهای هوایی و زمینی.', 'icon' => 'globe', 'link' => home_url('/my-account/?tab=new-order'),], + ['title' => 'ارسال داخلی (واردات)', 'desc' => 'دریافت مرسولات از سراسر دنیا و تحویل سریع در ایران با سیستم ردیابی دقیق و بیمه کامل.', 'icon' => 'download', 'link' => home_url('/my-account/?tab=new-order'),], + ['title' => 'سفارش آنلاین', 'desc' => 'ثبت سفارش ارسال به صورت آنلاین، پرداخت امن، و پیگیری لحظه‌ای از طریق پنل کاربری اختصاصی.', 'icon' => 'cart', 'link' => home_url('/my-account/?tab=new-order'),], + ['title' => 'ردیابی مرسوله', 'desc' => 'ردیابی آنی مرسولات با شماره AWB — از لحظه تحویل تا رسیدن به مقصد، هر گام را ببینید.', 'icon' => 'tracking', 'link' => home_url('/tracking/'),], ]; // Steps Data @@ -77,13 +77,14 @@ $testimonials = $is_en ? [

- - + + - +
+
@@ -124,12 +125,12 @@ $testimonials = $is_en ? [
- - - - - - + + + + + +
@@ -330,7 +331,7 @@ $testimonials = $is_en ? [

- + diff --git a/03_WordPress/wp-content/themes/ifnex/header.php b/03_WordPress/wp-content/themes/ifnex/header.php index c58c9a1..4d3fc6e 100644 --- a/03_WordPress/wp-content/themes/ifnex/header.php +++ b/03_WordPress/wp-content/themes/ifnex/header.php @@ -9,29 +9,34 @@ > + +