/* ========================================================= 2. ENHANCED MESSAGE HANDLER (STATUS + FILE + NOTIFICATIONS) ========================================================= */ add_action('init', function () { if (isset($_POST['lexdot_send_message']) && is_user_logged_in()) { // SECURITY if (!isset($_POST['lexdot_nonce']) || !wp_verify_nonce($_POST['lexdot_nonce'], 'lexdot_secure')) { return; } $user_id = get_current_user_id(); $case_id = intval($_POST['case_id']); $content = sanitize_textarea_field($_POST['message_content']); $case = get_post($case_id); if (!$case) return; $assigned_lawyer = get_post_meta($case_id, 'assigned_lawyer', true); $client_id = $case->post_author; // CREATE MESSAGE $msg_id = wp_insert_post([ 'post_type' => 'lexdot_message', 'post_content'=> $content, 'post_status' => 'publish', 'post_author' => $user_id ]); if ($msg_id) { update_post_meta($msg_id, 'case_id', $case_id); update_post_meta($msg_id, 'status', 'sent'); // FILE UPLOAD if (!empty($_FILES['lexdot_file']['name'])) { require_once(ABSPATH . 'wp-admin/includes/file.php'); $uploaded = wp_handle_upload($_FILES['lexdot_file'], ['test_form' => false]); if (!isset($uploaded['error'])) { update_post_meta($msg_id, 'file_url', $uploaded['url']); } } // NOTIFICATIONS $link = '/case-chat/?case_id=' . $case_id; if ($user_id == $client_id && $assigned_lawyer) { lexdot_add_notification($assigned_lawyer, 'New message from client', $link); } if ($user_id == $assigned_lawyer) { lexdot_add_notification($client_id, 'New message from lawyer', $link); } } wp_redirect($_SERVER['REQUEST_URI']); exit; } }); /* ========================================================= 3. FETCH CHAT (STATUS + FILE SUPPORT) ========================================================= */ add_action('wp_ajax_lexdot_get_chat', function () { if (!is_user_logged_in()) wp_send_json([]); $case_id = intval($_GET['case_id']); $messages = get_posts([ 'post_type' => 'lexdot_message', 'posts_per_page'=> 20, 'meta_query' => [ ['key' => 'case_id', 'value' => $case_id] ] ]); $data = []; foreach ($messages as $msg) { update_post_meta($msg->ID, 'status', 'delivered'); $file = get_post_meta($msg->ID, 'file_url', true); $data[] = [ 'author' => get_userdata($msg->post_author)->display_name, 'content'=> $msg->post_content, 'file' => $file ]; } wp_send_json($data); }); /* ========================================================= 4. MARK MESSAGES AS READ ========================================================= */ add_action('wp_ajax_lexdot_mark_read', function () { $case_id = intval($_POST['case_id']); $messages = get_posts([ 'post_type' => 'lexdot_message', 'posts_per_page' => 20, 'meta_query' => [ ['key' => 'case_id', 'value' => $case_id] ] ]); foreach ($messages as $msg) { update_post_meta($msg->ID, 'status', 'read'); } wp_send_json(['status' => 'ok']); }); /* ========================================================= 5. ONLINE STATUS TRACKING ========================================================= */ add_action('init', function () { if (is_user_logged_in()) { update_user_meta(get_current_user_id(), 'lexdot_last_seen', time()); } }); /* ========================================================= 6. PRACTICE AREA TAXONOMY ========================================================= */ add_action('init', function () { register_taxonomy('practice_area', 'lexdot_case', [ 'label' => 'Practice Area', 'public' => true ]); }); https://lexdot.com/ 2026-04-02T04:28:32+00:00 https://lexdot.com/wp-content/uploads/2026/03/flexible.webp https://lexdot.com/wp-content/uploads/2026/03/Reduced-Friction.webp https://lexdot.com/wp-content/uploads/2026/03/expanded.webp https://lexdot.com/wp-content/uploads/2026/03/Better-fit.webp https://lexdot.com/wp-content/uploads/2026/03/line-2-300x31.png https://lexdot.com/wp-content/uploads/2026/03/line-2-300x31.png https://lexdot.com/wp-content/uploads/2026/03/line-2-300x31.png https://lexdot.com/wp-content/uploads/2026/03/line-2-300x31.png https://lexdot.com/wp-content/uploads/2026/03/legalTalent2-1.webp https://lexdot.com/wp-content/uploads/2025/02/google.svg https://lexdot.com/wp-content/uploads/2025/02/paypal.svg https://lexdot.com/wp-content/uploads/2025/02/netflix.svg https://lexdot.com/wp-content/uploads/2025/02/abbott.svg https://lexdot.com/wp-content/uploads/2025/02/visa.svg https://lexdot.com/wp-content/uploads/2025/02/adidas.svg https://lexdot.com/wp-content/uploads/2025/02/toyota.svg https://lexdot.com/wp-content/uploads/2025/02/fedex.svg https://lexdot.com/lawyer-dashboar/ 2026-04-07T23:56:34+00:00 https://lexdot.com/client-dashboard/ 2026-04-07T13:41:02+00:00 https://lexdot.com/case-chat/ 2026-04-07T13:29:35+00:00 https://lexdot.com/access/ 2026-04-07T05:33:32+00:00 https://lexdot.com/check-your-email/ 2026-04-06T12:05:12+00:00 https://lexdot.com/onboarding/ 2026-04-05T14:30:08+00:00 https://lexdot.com/matches/ 2026-04-02T18:12:17+00:00 https://lexdot.com/lawyer-onboarding/ 2026-04-02T17:43:22+00:00 https://lexdot.com/client-onboarding/ 2026-04-02T17:41:53+00:00 https://lexdot.com/how-we-help/ 2026-04-01T17:19:02+00:00 https://lexdot.com/wp-content/uploads/2025/11/document-review-1.webp https://lexdot.com/wp-content/uploads/2025/11/Patent-and-trademark.webp https://lexdot.com/wp-content/uploads/2025/11/Startup-1.webp https://lexdot.com/wp-content/uploads/2025/11/secondment.webp https://lexdot.com/wp-content/uploads/2025/11/global.webp https://lexdot.com/wp-content/uploads/2025/11/appearance-1.webp https://lexdot.com/wp-content/uploads/2025/11/legal-talent-match.webp https://lexdot.com/wp-content/uploads/2025/11/On-demand.webp https://lexdot.com/wp-content/uploads/2025/11/healthcare.webp https://lexdot.com/wp-content/uploads/2025/11/International.webp https://lexdot.com/wp-content/uploads/2025/11/fixed-fee-1.webp https://lexdot.com/wp-content/uploads/2024/05/legal-contract.webp https://lexdot.com/wp-content/uploads/2024/05/intell-ppty1.webp https://lexdot.com/wp-content/uploads/2024/05/legal-counselling.webp https://lexdot.com/wp-content/uploads/2024/05/trade-mark.webp https://lexdot.com/wp-content/uploads/2024/05/immigration.webp https://lexdot.com/wp-content/uploads/2024/05/biz-formation.webp https://lexdot.com/startup-legal-help/ 2026-03-30T23:10:36+00:00 https://lexdot.com/wp-content/uploads/2025/11/startup.webp https://lexdot.com/patent-and-trademark/ 2026-03-30T22:45:19+00:00 https://lexdot.com/wp-content/uploads/2025/11/patenttrademark.webp https://lexdot.com/fixed-fee-legal-services/ 2026-03-30T22:43:42+00:00 https://lexdot.com/wp-content/uploads/2025/04/fixed-fee.webp https://lexdot.com/international-arbitration/ 2026-03-30T22:41:10+00:00 https://lexdot.com/wp-content/uploads/2025/11/international-arbitration.webp https://lexdot.com/healthcare-medical-legal-services/ 2026-03-30T22:38:48+00:00 https://lexdot.com/wp-content/uploads/2025/11/medical-and-health-care-legal-services.webp https://lexdot.com/on-demand-legal/ 2026-03-30T22:34:16+00:00 https://lexdot.com/wp-content/uploads/2025/04/on-demand-legal.webp https://lexdot.com/legal-talent-match/ 2026-03-30T22:31:20+00:00 https://lexdot.com/wp-content/uploads/2025/04/legal-match.webp https://lexdot.com/appearances-2/ 2026-03-30T22:26:07+00:00 https://lexdot.com/wp-content/uploads/2025/04/appearances.webp https://lexdot.com/global-legal-concierge/ 2026-03-30T22:18:35+00:00 https://lexdot.com/wp-content/uploads/2025/11/legal-concierge.webp https://lexdot.com/secondments/ 2026-03-30T22:11:53+00:00 https://lexdot.com/wp-content/uploads/2024/08/Legal-Workspace.webp https://lexdot.com/document-reviews/ 2026-03-30T22:02:43+00:00 https://lexdot.com/wp-content/uploads/2025/04/document-review.webp https://lexdot.com/elementor-65179/ 2026-03-29T12:54:08+00:00 https://lexdot.com/wp-content/uploads/2026/03/Customer-Image-3.png https://lexdot.com/wp-content/uploads/2026/03/Customer-Image-2.png https://lexdot.com/wp-content/uploads/2026/03/Customer-Image-1.png https://lexdot.com/wp-content/uploads/2026/03/Image-Statistic-1.jpg https://lexdot.com/wp-content/uploads/2026/03/Image-Statistic-2.jpg https://lexdot.com/wp-content/uploads/2026/03/CTA-Shape-1.png https://lexdot.com/wp-content/uploads/2026/03/CTA-Shape-1.png https://lexdot.com/wp-content/uploads/2026/03/Why-Us-Image.jpg https://lexdot.com/wp-content/uploads/2026/03/Line-Process-1.png https://lexdot.com/wp-content/uploads/2026/03/Line-Process-1.png https://lexdot.com/wp-content/uploads/2026/03/Line-Process-1.png https://lexdot.com/wp-content/uploads/2026/03/Line-Process-1.png https://lexdot.com/wp-content/uploads/2026/03/Urban-Road-Bike.jpg https://lexdot.com/wp-content/uploads/2026/03/Mountain-Explorer-Bike.jpg https://lexdot.com/wp-content/uploads/2026/03/City-Commuter-Bike.jpg https://lexdot.com/wp-content/uploads/2026/03/Image-Event.jpg https://lexdot.com/wp-content/uploads/2026/03/Customer-Image-4.png https://lexdot.com/wp-content/uploads/2026/03/Customer-Image-5.png https://lexdot.com/wp-content/uploads/2026/03/Customer-Image-6.png https://lexdot.com/wp-content/uploads/2026/03/Customer-Image-7.png https://lexdot.com/about-lexdot/ 2026-03-15T16:36:22+00:00 https://lexdot.com/our-global-focus/ 2026-03-14T01:31:33+00:00 https://lexdot.com/wp-content/uploads/2025/07/lexdot-legal-help-without-borders.webp https://lexdot.com/get-free-proposals/ 2026-03-14T01:07:59+00:00 https://lexdot.com/global-legal-community/ 2026-03-11T23:09:13+00:00 https://lexdot.com/wp-content/uploads/2025/05/logoicon.png https://lexdot.com/wp-content/uploads/2025/02/fedex.svg https://lexdot.com/wp-content/uploads/2025/02/abbott.svg https://lexdot.com/wp-content/uploads/2025/02/netflix.svg https://lexdot.com/wp-content/uploads/2025/02/adidas.svg https://lexdot.com/wp-content/uploads/2025/02/google.svg https://lexdot.com/wp-content/uploads/2025/02/toyota.svg https://lexdot.com/wp-content/uploads/2025/02/visa.svg https://lexdot.com/wp-content/uploads/2025/02/paypal.svg https://lexdot.com/wp-content/uploads/elementor/thumbs/transparent-rg2ys6act7apo4xi4h29jsqi6hamozqk9y15bbznzs.png https://lexdot.com/wp-content/uploads/2025/07/lexbot.webp https://lexdot.com/wp-content/uploads/2024/06/block-chain-672x378.jpg https://lexdot.com/wp-content/uploads/2025/03/connect.webp https://lexdot.com/wp-content/uploads/2025/02/Online-Legal-Consultation.webp https://lexdot.com/maintenance-mode/ 2026-03-08T09:57:28+00:00 https://lexdot.com/wp-content/uploads/2026/03/main-tools.webp https://lexdot.com/get-started/ 2026-03-08T01:29:56+00:00 https://lexdot.com/join-our-network-elevate-your-practice/ 2026-03-07T12:41:41+00:00 https://lexdot.com/wp-content/uploads/2026/03/Modern-legal-Work-Path.webp https://lexdot.com/wp-content/uploads/2026/03/touch.png https://lexdot.com/wp-content/uploads/2026/01/create-1.webp https://lexdot.com/wp-content/uploads/2026/01/collaborate-1.webp https://lexdot.com/wp-content/uploads/2026/01/connect-1.webp https://lexdot.com/guidelines-for-marketplace-contributors/ 2026-03-07T12:31:35+00:00 https://lexdot.com/find-global-legal-talent-for-cross-border-matters/ 2026-03-07T12:24:24+00:00 https://lexdot.com/wp-content/uploads/2026/03/FB_IMG_1565106683376-qnaoggblm7dlanbihqxwunynzahq1q8ttd2o5wvy5s.webp https://lexdot.com/wp-content/uploads/2026/03/headshot_-jpeg-scaled-qnaogefx8jb0nfe8sq4npofqsiqzmc1d53rp7cyqi8.webp https://lexdot.com/wp-content/uploads/2026/03/Steve_Recent_Website_Photo-scaled-1-150x150.webp https://lexdot.com/wp-content/uploads/2026/03/legalTalent1-1.webp https://lexdot.com/wp-content/uploads/2026/03/legalTalent2-1.webp https://lexdot.com/questions/ 2026-03-07T12:16:37+00:00 https://lexdot.com/ask-a-lawyer/ 2026-03-07T12:12:30+00:00 https://lexdot.com/wp-content/uploads/elementor/thumbs/step1-rk5o7lpyudn25rl3clfslxiy86tivy8396041s5f2o.webp https://lexdot.com/wp-content/uploads/elementor/thumbs/step2-rk5o7lpyudn25rl3clfslxiy86tivy8396041s5f2o.webp https://lexdot.com/wp-content/uploads/elementor/thumbs/step3-rk5o7mnt17ochdjq73uf6faetkow3nbtlanlj240wg.webp https://lexdot.com/nigerian-lawyers-online/ 2026-03-03T07:15:19+00:00 https://lexdot.com/wp-content/uploads/2026/03/Nigerian-Lawyer.webp https://lexdot.com/wp-content/uploads/2026/03/Nigerian-Legal-Future.webp https://lexdot.com/frequently-asked-questions/ 2026-03-03T02:16:01+00:00 https://lexdot.com/marketplace-code-of-conduct/ 2026-02-19T23:07:09+00:00 https://lexdot.com/wp-content/uploads/2026/02/Request-Proposals-1.png https://lexdot.com/client-engagement-agreement/ 2026-02-19T22:59:47+00:00 https://lexdot.com/wp-content/uploads/2025/02/Flexible-Legal.svg https://lexdot.com/what-we-do/ 2026-02-18T05:46:40+00:00 https://lexdot.com/wp-content/uploads/2025/06/discover-experts-1.webp https://lexdot.com/flexible-legal-workspace/ 2026-01-25T01:47:58+00:00 https://lexdot.com/ai-assistant/ 2026-01-24T23:58:26+00:00 https://lexdot.com/wp-content/uploads/elementor/thumbs/lexbot-rg61xsr5djuk5ubt4crqk8w6qdculx4gdcixj3pqpg.webp https://lexdot.com/wp-content/uploads/2025/02/Designer_1_-removebg-preview.png https://lexdot.com/wp-content/uploads/2025/02/Vector.png https://lexdot.com/wp-content/uploads/2020/01/Hire-a-provider.png https://lexdot.com/wp-content/uploads/2020/01/review-proposals.png https://lexdot.com/wp-content/uploads/2025/03/checked1.png https://lexdot.com/lex-community/ 2026-01-21T16:59:16+00:00 https://lexdot.com/wp-content/uploads/2024/06/membersx.webp https://lexdot.com/lexdot-media/ 2026-01-21T07:01:20+00:00 https://lexdot.com/wp-content/uploads/2024/07/whatwedodifferent.png https://lexdot.com/wp-content/uploads/2025/02/tiktok.png https://lexdot.com/wp-content/uploads/2025/02/Youtube-1.webp https://lexdot.com/wp-content/uploads/2025/02/Facebook-1.webp https://lexdot.com/wp-content/uploads/2025/02/instagram.webp https://lexdot.com/wp-content/uploads/2024/07/make-a-request.webp https://lexdot.com/wp-content/uploads/2024/07/Legal-Match.webp https://lexdot.com/wp-content/uploads/2024/07/Connect-and-Deliver.webp https://lexdot.com/wp-content/uploads/2025/02/visa.svg https://lexdot.com/wp-content/uploads/2025/02/paypal.svg https://lexdot.com/wp-content/uploads/2025/02/toyota.svg https://lexdot.com/wp-content/uploads/2025/02/google.svg https://lexdot.com/wp-content/uploads/2025/02/adidas.svg https://lexdot.com/wp-content/uploads/2025/02/netflix.svg https://lexdot.com/wp-content/uploads/2025/02/abbott.svg https://lexdot.com/wp-content/uploads/2025/02/fedex.svg https://lexdot.com/taxonomy-of-legal-roles/ 2026-01-14T00:57:59+00:00 https://lexdot.com/wp-content/uploads/elementor/thumbs/Lexdot-files-rg61u71ge9pf9npykpke48gxsjbtrg17rb33gbjal8.webp https://lexdot.com/legal-workplace/ 2026-01-14T00:07:10+00:00 https://lexdot.com/advocacy-at-lexdot/ 2026-01-13T23:04:31+00:00 https://lexdot.com/support-center/ 2026-01-12T01:08:27+00:00 https://lexdot.com/wp-content/uploads/elementor/thumbs/flexible-legal-services-rg2uzp3yvc2ovnjrrf4db6h89g27fk6n54t0nvijlk.png https://lexdot.com/wp-content/uploads/elementor/thumbs/lawyer-rg2t95wi74gyhkdrww0vxgk9jma4cgxi7md4a68fjs.png https://lexdot.com/wp-content/uploads/elementor/thumbs/freelance-lawyer-rg2wfdakkgt53yhr1971vn2fuzdlkkbfwvuxegwfjs.webp https://lexdot.com/how-it-works/ 2025-12-31T02:25:18+00:00 https://lexdot.com/wp-content/uploads/2025/04/Find-a-lawyer.webp https://lexdot.com/wp-content/uploads/2022/12/3-copyright.jpg https://lexdot.com/wp-content/uploads/2025/03/how-it-works-for-lawyetrs.webp https://lexdot.com/wp-content/uploads/2024/07/Modern-legal-Work-Path.webp https://lexdot.com/privacy-policy/ 2025-12-06T22:09:52+00:00 https://lexdot.com/lega-service-provider-agreement/ 2025-12-06T20:33:56+00:00 https://lexdot.com/wp-content/uploads/2025/02/Collaboration.svg https://lexdot.com/knowledge-base/ 2025-12-06T20:06:52+00:00 https://lexdot.com/terms-of-use/ 2025-12-06T15:07:12+00:00 https://lexdot.com/forgot-password/ 2025-11-21T16:16:09+00:00 https://lexdot.com/legal-perspectives/ 2025-11-12T19:11:45+00:00 https://lexdot.com/wp-content/uploads/2024/05/legal-community-blog-672x448.webp https://lexdot.com/wp-content/uploads/2024/05/bizzare-cases-672x378.webp https://lexdot.com/wp-content/uploads/2024/05/collaboration-672x448.webp https://lexdot.com/wp-content/uploads/2024/05/bizare-laws-672x448.webp https://lexdot.com/wp-content/uploads/2024/07/workspace-2-672x269.webp https://lexdot.com/wp-content/uploads/2020/08/hire-lawyers-1-672x315.jpg https://lexdot.com/wp-content/uploads/2024/07/AI-and-Legal-Ethics-672x387.webp https://lexdot.com/wp-content/uploads/2024/11/AI-Lawyers-672x384.webp https://lexdot.com/wp-content/uploads/2024/06/legal-works-1-672x378.webp https://lexdot.com/wp-content/uploads/2024/05/appearance-Lawyers-672x378.webp https://lexdot.com/wp-content/uploads/2024/06/block-chain-672x378.jpg https://lexdot.com/wp-content/uploads/2024/11/AI-Lawyers-672x384.webp https://lexdot.com/legal-pointers/ 2025-11-12T19:10:20+00:00 https://lexdot.com/wp-content/uploads/2024/06/legal-disruption-672x378.webp https://lexdot.com/wp-content/uploads/2024/07/AI-and-Legal-Ethics-672x387.webp https://lexdot.com/wp-content/uploads/2024/05/criminal-defense-672x353.webp https://lexdot.com/wp-content/uploads/2024/06/scan-Alert-672x377.webp https://lexdot.com/wp-content/uploads/2024/01/onthekey-672x449.jpg https://lexdot.com/wp-content/uploads/2024/06/lawyer-near-me-672x378.webp https://lexdot.com/wp-content/uploads/2024/05/Legal-Questions-and-answers-672x378.webp https://lexdot.com/wp-content/uploads/2024/06/cyber-crime-672x378.webp https://lexdot.com/wp-content/uploads/2024/07/legal-employee-672x390.webp https://lexdot.com/wp-content/uploads/2024/06/AI-672x378.webp https://lexdot.com/wp-content/uploads/2024/06/remote-work-672x378.webp https://lexdot.com/wp-content/uploads/2024/06/remote-work-672x378.webp https://lexdot.com/disclaimer/ 2025-11-12T19:07:40+00:00 https://lexdot.com/wp-content/uploads/2019/06/one.jpeg https://lexdot.com/wp-content/uploads/2020/01/lexdot-ipad-300x300.png https://lexdot.com/wp-content/uploads/elementor/thumbs/legal-workforce-plpzj3aa05ynty5ji0b034fo3kf6stxqz94luwii10.jpg https://lexdot.com/wp-content/uploads/2020/04/pngguru.com-3.png https://lexdot.com/lexdot-lawyer-verification/ 2025-11-11T14:47:40+00:00 https://lexdot.com/wp-content/uploads/2025/03/badge.png https://lexdot.com/cookie-notice/ 2025-06-28T11:51:00+00:00 https://lexdot.com/wp-content/uploads/2024/07/cookie.webp https://lexdot.com/massenger/ 2025-06-24T09:26:56+00:00 https://lexdot.com/login/ 2025-04-22T10:48:04+00:00 https://lexdot.com/legal-topics/ 2025-04-04T14:44:38+00:00 https://lexdot.com/reach-out/ 2025-04-02T17:49:27+00:00 https://lexdot.com/wp-content/uploads/2020/02/maintenance.jpg https://lexdot.com/pricing-table/ 2025-03-07T02:17:21+00:00 https://lexdot.com/legal-questions-answers/ 2025-02-28T20:14:38+00:00 https://lexdot.com/legal-guidance/ 2024-11-24T04:56:42+00:00 https://lexdot.com/request/ 2024-07-16T21:23:40+00:00 https://lexdot.com/trending/ 2024-07-15T06:26:58+00:00 https://lexdot.com/wp-content/uploads/2015/06/technology_05-scaled.jpg https://lexdot.com/my-account/ 2024-07-10T10:39:29+00:00 https://lexdot.com/checkout/ 2024-07-10T10:39:27+00:00 https://lexdot.com/cart/ 2024-07-10T10:39:19+00:00 https://lexdot.com/complete-registration/ 2024-06-22T14:32:50+00:00 https://lexdot.com/thank-you/ 2024-06-21T20:55:49+00:00 https://lexdot.com/wp-content/uploads/elementor/thumbs/documents-1-p97c9lt62welw40xbsu5pgfds2bb4hqzt1i7y5whz4.png https://lexdot.com/lost-password/ 2024-02-01T23:06:12+00:00 https://lexdot.com/password-reset/ 2024-01-05T04:10:34+00:00 https://lexdot.com/edit-profile/ 2024-01-05T04:10:33+00:00 https://lexdot.com/my-profile/ 2023-12-24T04:01:05+00:00 https://lexdot.com/submit-listing/ 2017-03-17T08:27:48+00:00 https://lexdot.com/pricing-plan/ 2017-03-17T08:27:48+00:00 https://lexdot.com/payment-gateway/ 2017-03-17T08:27:48+00:00 https://lexdot.com/payment-success/ 2017-03-17T08:27:48+00:00 https://lexdot.com/payment-fail/ 2017-03-17T08:27:48+00:00 https://lexdot.com/payment-checkout/ 2017-03-17T08:27:48+00:00 https://lexdot.com/my-favorites/ 2017-01-26T14:37:20+00:00 https://lexdot.com/service-blocks/ 2017-01-26T11:51:38+00:00 https://lexdot.com/image-gallery/ 2017-01-26T11:33:38+00:00 https://lexdot.com/packages-2/ 2017-01-26T11:11:43+00:00 https://lexdot.com/testimonials/ 2017-01-11T16:58:25+00:00 https://lexdot.com/blog/ 2017-01-11T16:31:10+00:00 https://lexdot.com/listing-author-2-2/ 2016-12-05T11:43:34+00:00 https://lexdot.com/my-reviews/ 2015-05-05T13:59:47+00:00 https://lexdot.com/following/ 2015-02-11T16:43:07+00:00 https://lexdot.com/user-reviews/ 2014-07-31T13:43:39+00:00 https://lexdot.com/write-a-review/ 2014-07-31T13:11:19+00:00 https://lexdot.com/logout/ 2013-12-23T10:41:03+00:00