{"id":333429,"date":"2026-07-01T08:38:20","date_gmt":"2026-07-01T08:38:20","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/wrenchpress\/"},"modified":"2026-08-23T10:06:53","modified_gmt":"2026-08-23T10:06:53","slug":"pitdesk-repair-crm","status":"publish","type":"plugin","link":"https:\/\/es.wordpress.org\/plugins\/pitdesk-repair-crm\/","author":14939027,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"1.5.0","stable_tag":"1.5.0","tested":"7.1","requires":"6.7","requires_php":"8.1","requires_plugins":null,"header_name":"PitDesk Auto Repair CRM - Work Orders & Service History","header_author":"rwsss","header_description":"Lightweight CRM for auto-repair shops: capture customer visits and turn them into tracked jobs with full customer and vehicle history.","assets_banners_color":"","last_updated":"2026-08-23 10:06:53","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"","header_author_uri":"","rating":5,"author_block_rating":0,"active_installs":0,"downloads":404,"num_ratings":1,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"1.0.0":{"tag":"1.0.0","author":"rwsss","date":"2026-07-01 08:39:31"},"1.0.1":{"tag":"1.0.1","author":"rwsss","date":"2026-07-02 05:42:38"},"1.1.0":{"tag":"1.1.0","author":"rwsss","date":"2026-07-06 04:53:07"},"1.2.0":{"tag":"1.2.0","author":"rwsss","date":"2026-07-08 07:31:28"},"1.2.5":{"tag":"1.2.5","author":"rwsss","date":"2026-07-13 19:01:12"},"1.3.0":{"tag":"1.3.0","author":"rwsss","date":"2026-07-26 07:54:42"},"1.4.0":{"tag":"1.4.0","author":"rwsss","date":"2026-07-27 10:18:02"},"1.5.0":{"tag":"1.5.0","author":"rwsss","date":"2026-08-23 10:06:53"}},"upgrade_notice":{"1.5.0":"<p>Adds the customer portal, GDPR export\/erasure and data retention, and a Vietnamese translation. This update adds a database change (a new table for portal sign-in sessions) that applies by itself on the next page load. No existing data is changed or removed.<\/p>","1.4.0":"<p>Adds printable and PDF invoices and estimates. This update adds a database change for document numbering that applies by itself on the next page load. No existing data is changed or removed.<\/p>","1.3.0":"<p>Accessibility improvements and translation fixes. No database change and no settings change. Safe to update.<\/p>","1.2.5":"<p>This update adds a database change: a new engine number column on vehicles. It applies by itself on the next page load. You do not need to reactivate the plugin, and no existing data is changed or removed.<\/p>"},"ratings":{"1":0,"2":0,"3":0,"4":0,"5":1},"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":3599902,"resolution":"128x128","location":"assets","locale":"","width":128,"height":128},"icon-256x256.png":{"filename":"icon-256x256.png","revision":3599902,"resolution":"256x256","location":"assets","locale":"","width":256,"height":256}},"assets_banners":[],"assets_blueprints":{"blueprint.json":{"filename":"blueprint.json","revision":3661639,"resolution":false,"location":"assets","locale":"","contents":"{\"$schema\":\"https:\\\/\\\/playground.wordpress.net\\\/blueprint-schema.json\",\"meta\":{\"title\":\"PitDesk Auto Repair CRM\",\"description\":\"Explore PitDesk, a lightweight CRM for auto-repair shops: leads and the visit form, customers, vehicles, work orders with line items and totals, appointments, and service reminders. Preloaded with sample data.\",\"author\":\"rwsss\",\"categories\":[\"Business\"]},\"landingPage\":\"\\\/wp-admin\\\/admin.php?page=wrenchpress\",\"preferredVersions\":{\"php\":\"8.3\",\"wp\":\"latest\"},\"phpExtensionBundles\":[\"kitchen-sink\"],\"features\":{\"networking\":false},\"login\":true,\"steps\":[{\"step\":\"runPHP\",\"code\":\"<?php\\nrequire_once '\\\/wordpress\\\/wp-load.php';\\nif ( ! class_exists( 'WrenchPress_Customers_Repository' ) ) { return; }\\n$rows = array(\\n\\tarray( 'Mara', 'Nguyen', '555-0100', 'mara@example.com', 'Toyota', 'Camry', 2018, 84000, 'in_progress' ),\\n\\tarray( 'Luis', 'Ortega', '555-0142', 'luis@example.com', 'Ford', 'F-150', 2020, 52000, 'ready' ),\\n\\tarray( 'Priya', 'Shah', '555-0177', 'priya@example.com', 'Honda', 'Civic', 2016, 120000, 'closed' ),\\n\\tarray( 'Dan', 'Kowalski', '555-0188', 'dan@example.com', 'Subaru', 'Outback', 2019, 67000, 'estimate' ),\\n);\\nforeach ( $rows as $r ) {\\n\\t$cid = WrenchPress_Customers_Repository::create( array( 'first_name' => $r[0], 'last_name' => $r[1], 'phone' => $r[2], 'email' => $r[3] ) );\\n\\tif ( ! $cid || ! class_exists( 'WrenchPress_Vehicles_Repository' ) ) { continue; }\\n\\t$vid = WrenchPress_Vehicles_Repository::create( array( 'customer_id' => $cid, 'make' => $r[4], 'model' => $r[5], 'year' => $r[6], 'mileage' => $r[7] ) );\\n\\tif ( ! $vid || ! class_exists( 'WrenchPress_Work_Orders_Repository' ) ) { continue; }\\n\\t$wid = WrenchPress_Work_Orders_Repository::create( array( 'customer_id' => $cid, 'vehicle_id' => $vid, 'status' => $r[8] ) );\\n\\tif ( $wid && 'closed' === $r[8] && class_exists( 'WrenchPress_Reminders_Repository' ) ) {\\n\\t\\tWrenchPress_Reminders_Repository::create_superseding( array(\\n\\t\\t\\t'customer_id'   => $cid,\\n\\t\\t\\t'vehicle_id'    => $vid,\\n\\t\\t\\t'work_order_id' => $wid,\\n\\t\\t\\t'due_date'      => gmdate( 'Y-m-d', time() - 30 * DAY_IN_SECONDS ),\\n\\t\\t\\t'due_mileage'   => $r[7] + 5000,\\n\\t\\t) );\\n\\t}\\n}\\n\"},{\"step\":\"installPlugin\",\"pluginData\":{\"resource\":\"wordpress.org\\\/plugins\",\"slug\":\"pitdesk-repair-crm\"},\"options\":{\"activate\":true}}]}"}},"all_blocks":{"wrenchpress\/visit-form":{"$schema":"https:\/\/schemas.wp.org\/trunk\/block.json","apiVersion":3,"name":"wrenchpress\/visit-form","title":"Visit request form","category":"widgets","icon":"clipboard","description":"Embed the PitDesk visit-request form so customers can submit a visit.","keywords":["form","visit","lead","wrenchpress"],"textdomain":"wrenchpress","editorScript":"file:.\/index.js","supports":{"html":false,"multiple":false}}},"tagged_versions":["1.0.0","1.0.1","1.1.0","1.2.0","1.2.5","1.3.0","1.4.0","1.5.0"],"block_files":[],"assets_screenshots":[],"screenshots":{"1":"The shop dashboard: open work orders by status, new leads, and customer and vehicle counts.","2":"A work order with labor and parts line items, tax, and totals.","3":"A customer record with linked vehicles and full service history.","4":"The public visit-request form embedded on a site."}},"plugin_section":[],"plugin_tags":[269700,9982,1150,270281,266123],"plugin_category":[58],"plugin_contributors":[269701],"plugin_business_model":[],"class_list":["post-333429","plugin","type-plugin","status-publish","hentry","plugin_tags-auto-repair","plugin_tags-automotive","plugin_tags-crm","plugin_tags-garage","plugin_tags-work-orders","plugin_category-user-management","plugin_contributors-rwsss","plugin_committers-rwsss"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/pitdesk-repair-crm\/assets\/icon-128x128.png?rev=3599902","icon_2x":"https:\/\/ps.w.org\/pitdesk-repair-crm\/assets\/icon-256x256.png?rev=3599902","generated":false},"screenshots":[],"raw_content":"<!--section=description-->\n<p>PitDesk Auto Repair CRM is a lightweight customer relationship management (CRM) plugin for auto repair shops, garages, and independent mechanics who run their business on WordPress. It turns incoming visit requests into tracked jobs and keeps a full customer and vehicle service history, without the cost or complexity of heavyweight shop-management software.<\/p>\n\n<p>Customers submit a visit request from a form on your site; your team runs everything else from the WordPress dashboard. PitDesk is self-hosted, fully free forever, and works without WooCommerce.<\/p>\n\n<h4>What you can do<\/h4>\n\n<ul>\n<li>Capture leads: a builder-friendly visit-request form turns website visitors into leads, with built-in spam protection.<\/li>\n<li>Manage customers: a searchable customer database with contact details.<\/li>\n<li>Track vehicles: make, model, year, VIN, license plate, mileage, and more, each linked to a customer.<\/li>\n<li>Run work orders: move each job through a fixed status workflow, from estimate to closed, with labor and parts line items, tax, and totals.<\/li>\n<li>Print invoices and estimates: generate a printable or PDF invoice or estimate from any work order, with stable sequential numbering, no WooCommerce required.<\/li>\n<li>Give customers a portal: a passwordless magic-link login lets each customer view only their own vehicles, service history, current visit status, and invoices, and download their own documents.<\/li>\n<li>Stay GDPR compliant: WordPress core personal-data export and erasure cover customer, vehicle, and lead data; a shop-configurable retention policy purges old leads and stored IP addresses on a schedule; the visit form records consent with a link to your privacy policy.<\/li>\n<li>Keep service history: every vehicle keeps a complete, per-vehicle service history you can revisit any time.<\/li>\n<li>See the shop at a glance: a live dashboard shows open work orders by status, new leads, and customer and vehicle counts.<\/li>\n<li>Control access: built-in roles for shop owner or manager, front desk, and mechanic.<\/li>\n<\/ul>\n\n<h4>Who it is for<\/h4>\n\n<p>Independent auto repair shops, mechanic shops, garages, mobile mechanics, and automotive service businesses that want a simple, self-hosted CRM and work-order tracker inside WordPress, instead of an expensive subscription to shop-management software.<\/p>\n\n<h4>Embed the visit form anywhere<\/h4>\n\n<p>The public visit form adopts your theme or page-builder styling and can be added with a shortcode, the block editor, an Elementor widget, or a Divi module. Staff never work from the front end; all shop work happens in wp-admin.<\/p>\n\n<h4>Built for WordPress<\/h4>\n\n<ul>\n<li>Self-hosted on your own site; your customer and vehicle data stays in your database.<\/li>\n<li>No monthly subscription, and no WooCommerce required.<\/li>\n<li>Translation-ready, and ships with Spanish (Mexico), French (Canada), Ukrainian, and Vietnamese.<\/li>\n<li>Customer identities live in the plugin's own tables, never as WordPress users; the portal uses a short-lived, single-use magic link and its own signed session, so customers never get wp-admin access.<\/li>\n<\/ul>\n\n<h3>Usage<\/h3>\n\n<p>Place the visit form on a public page using whichever tool your site is built with:<\/p>\n\n<ul>\n<li>Shortcode: add <code>[wrenchpress_visit_form]<\/code> to any page, post, or builder text area.<\/li>\n<li>Block editor: add the \"Visit request form\" block.<\/li>\n<li>Elementor: add the \"PitDesk Visit Form\" widget.<\/li>\n<li>Divi: add the \"PitDesk Visit Form\" module.<\/li>\n<\/ul>\n\n<p>To give customers a self-service portal, add the <code>[wrenchpress_portal]<\/code> shortcode to a page. Logged-out visitors see a request form; they enter their email and receive a single-use magic link. Once signed in, a customer sees only their own vehicles, service history, current visit status, and invoices, and can download their own documents. The portal is read-only and never exposes wp-admin.<\/p>\n\n<p>The day-to-day flow:<\/p>\n\n<ol>\n<li>A customer submits the visit form. It arrives under Leads.<\/li>\n<li>Promote the lead to a customer, then add their vehicle.<\/li>\n<li>Create a work order and move it through the statuses as the job progresses.<\/li>\n<li>Add line items and notes. The vehicle keeps a complete service history you can revisit any time.<\/li>\n<li>Issue a printable or PDF invoice or estimate from the work order when you need one.<\/li>\n<\/ol>\n\n<h3>Accessibility<\/h3>\n\n<p>PitDesk targets WCAG 2.2 Level AA and follows the WordPress accessibility coding standards.<\/p>\n\n<p>The plugin's admin screens and dialogs are scanned with axe-core on every change, every dialog is opened and operated by keystroke in a real browser, and appointments can be created and rescheduled from the keyboard alone. Because automated tools cannot judge keyboard operation, visible focus, or screen-reader announcements, the plugin was also tested by hand with the Orca screen reader on Firefox. No other screen reader is tested, and no formal third-party audit or certification is claimed.<\/p>\n\n<p>The public visit form takes its colors and typography from your theme, so it looks like the rest of your site. One consequence is worth stating: front-end text contrast comes from your theme, so meeting AA contrast there is the site owner's responsibility. Regardless of your theme, the plugin guarantees a visible focus ring on every field.<\/p>\n\n<p>The plugin's own admin screens meet AA, and no state is signaled by color alone: overdue reminders, cancelled appointments, and completed steps all carry a text cue too.<\/p>\n\n<p>Known WordPress issue: on WordPress 7.0, core's own secondary buttons (for example the Search button on every list table) fall just below AA contrast under five of the nine admin color schemes, including the default \"Fresh\". This is core's chrome, identical on core screens like Users and Plugins with no plugin involved, and PitDesk will not restyle WordPress to hide it. Selecting the Modern, Blue, Coffee, or Ectoplasm scheme on your profile raises those buttons above the threshold.<\/p>\n\n<h3>External services<\/h3>\n\n<p>This plugin can optionally use a third-party CAPTCHA service to protect the public visit form from spam and automated abuse. A CAPTCHA is only loaded when a shop administrator selects a provider and enters its keys on the plugin settings screen. No CAPTCHA service is contacted until you enable one. You choose one of the following:<\/p>\n\n<p>Google reCAPTCHA v3<\/p>\n\n<p>Used to score visit-form submissions so bots can be rejected. When enabled, the reCAPTCHA script is loaded from google.com on any page that shows the visit form, and on submission the plugin sends the reCAPTCHA token, your site key, and the visitor's IP address to Google's verification endpoint (https:\/\/www.google.com\/recaptcha\/api\/siteverify) to obtain a score. Data is sent only when the form is shown or submitted.\nTerms: https:\/\/policies.google.com\/terms\nPrivacy: https:\/\/policies.google.com\/privacy\nreCAPTCHA terms: https:\/\/developers.google.com\/recaptcha<\/p>\n\n<p>Cloudflare Turnstile<\/p>\n\n<p>An alternative CAPTCHA used for the same purpose. When enabled, the Turnstile widget is loaded from challenges.cloudflare.com on any page that shows the visit form, and on submission the plugin sends the Turnstile token, your site key, and the visitor's IP address to Cloudflare's verification endpoint (https:\/\/challenges.cloudflare.com\/turnstile\/v0\/siteverify). Data is sent only when the form is shown or submitted.\nTerms: https:\/\/www.cloudflare.com\/website-terms\/\nPrivacy: https:\/\/www.cloudflare.com\/privacypolicy\/\nTurnstile: https:\/\/www.cloudflare.com\/products\/turnstile\/<\/p>\n\n<!--section=installation-->\n<ol>\n<li>Upload the plugin folder to <code>\/wp-content\/plugins\/<\/code>, or install the zip from Plugins &gt; Add New &gt; Upload.<\/li>\n<li>Activate the plugin through the Plugins screen. Activation creates the database tables and the custom roles.<\/li>\n<li>Open the PitDesk menu in wp-admin to reach the dashboard.<\/li>\n<li>Assign your staff the PitDesk roles (owner\/manager, front desk, mechanic) on their user profiles.<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id=\"is%20this%20free%20auto%20repair%20shop%20software%3F\"><h3>Is this free auto repair shop software?<\/h3><\/dt>\n<dd><p>Yes. PitDesk Auto Repair CRM is a free, self-hosted WordPress plugin with no monthly fees.<\/p><\/dd>\n<dt id=\"is%20it%20a%20good%20fit%20for%20a%20mechanic%20shop%20or%20garage%3F\"><h3>Is it a good fit for a mechanic shop or garage?<\/h3><\/dt>\n<dd><p>Yes. It is built for independent auto repair shops, garages, and mechanics who want a simple CRM and work-order tracker inside WordPress.<\/p><\/dd>\n<dt id=\"can%20i%20manage%20work%20orders%20and%20estimates%3F\"><h3>Can I manage work orders and estimates?<\/h3><\/dt>\n<dd><p>Yes. Each job is a work order that moves through statuses, including estimate, with labor and parts line items, tax, and totals.<\/p><\/dd>\n<dt id=\"does%20it%20track%20vehicle%20service%20history%3F\"><h3>Does it track vehicle service history?<\/h3><\/dt>\n<dd><p>Yes. Every vehicle keeps a full service history of its work orders, viewable from the customer or the vehicle.<\/p><\/dd>\n<dt id=\"does%20it%20require%20woocommerce%3F\"><h3>Does it require WooCommerce?<\/h3><\/dt>\n<dd><p>No. The plugin is fully self-contained. WooCommerce integration is an optional future enhancement.<\/p><\/dd>\n<dt id=\"do%20customers%20need%20wordpress%20accounts%3F\"><h3>Do customers need WordPress accounts?<\/h3><\/dt>\n<dd><p>No. Customers are stored in the plugin's own tables, separate from WordPress users. Staff are WordPress users with the plugin's roles. The optional customer portal signs customers in with a passwordless magic link and its own session, so they still never become WordPress users or reach wp-admin.<\/p><\/dd>\n<dt id=\"can%20customers%20see%20their%20own%20history%20online%3F\"><h3>Can customers see their own history online?<\/h3><\/dt>\n<dd><p>Yes, if you add the <code>[wrenchpress_portal]<\/code> shortcode to a page. Each customer signs in with a single-use link emailed to them and sees only their own vehicles, service history, current visit, and invoices. Every query is scoped to the signed-in customer, and document downloads are checked against ownership.<\/p><\/dd>\n<dt id=\"is%20it%20gdpr%20friendly%3F\"><h3>Is it GDPR friendly?<\/h3><\/dt>\n<dd><p>Yes. It plugs into WordPress core's personal-data export and erasure tools for customer, vehicle, and lead data; erasure anonymizes personal details while keeping the financial records a shop must retain. The plugin registers privacy-policy content describing what it stores and which CAPTCHA providers may receive data, the visit form records consent with a link to your privacy policy, and a shop-configurable retention policy purges old unpromoted leads and strips stored IP addresses on a schedule.<\/p><\/dd>\n<dt id=\"can%20i%20print%20or%20email%20invoices%3F\"><h3>Can I print or email invoices?<\/h3><\/dt>\n<dd><p>Yes. You can generate a printable or PDF invoice or estimate from any work order. Documents use stable sequential numbering and are frozen when issued, and no WooCommerce is required.<\/p><\/dd>\n<dt id=\"where%20is%20my%20data%20stored%3F\"><h3>Where is my data stored?<\/h3><\/dt>\n<dd><p>In custom database tables created on activation, not in posts or post meta. Your data stays on your own server.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.5.0<\/h4>\n\n<ul>\n<li>Add a customer portal: place the <code>[wrenchpress_portal]<\/code> shortcode on a page and customers sign in with a passwordless, single-use magic link, then view only their own vehicles, per-vehicle service history, current visit status, and work orders.<\/li>\n<li>Let a signed-in customer download their own invoices and estimates; every read and every document download is scoped to the signed-in customer.<\/li>\n<li>Customers never become WordPress users and never reach wp-admin; the portal uses its own short-lived signed session, separate from WordPress login.<\/li>\n<li>GDPR: customer, vehicle, and lead personal data is now covered by WordPress core's Export Personal Data and Erase Personal Data tools. Erasure anonymizes personal details while keeping the work-order and invoice records a shop needs to retain.<\/li>\n<li>GDPR: the plugin registers privacy-policy content describing what personal data it stores, why, and which CAPTCHA providers may receive data when enabled, and the visit form shows a link to your site privacy policy next to the consent checkbox.<\/li>\n<li>Add a shop-configurable data-retention policy: a daily cleanup deletes old unpromoted leads and strips stored submitter IP and user-agent data after a configurable window (defaults 180 and 30 days). Customers and job history are never auto-deleted; set a window to 0 to turn a cleanup off.<\/li>\n<li>Link customer names in the Work Orders list to the matching customer record.<\/li>\n<li>Add a Vietnamese translation, and refresh the Spanish (Mexico), French (Canada), and Ukrainian translations.<\/li>\n<li>Fix bundled translations not loading: the plugin now registers its own languages directory, so shipped Spanish, French, Ukrainian, and Vietnamese catalogs are applied on a translated site.<\/li>\n<\/ul>\n\n<h4>1.4.0<\/h4>\n\n<ul>\n<li>Generate a printable or PDF invoice or estimate from any work order, self-contained with no WooCommerce dependency.<\/li>\n<li>Use stable, gap-free sequential numbering, isolated per document type, and freeze a document's contents and currency when it is issued so a reprint always matches the original.<\/li>\n<li>Refresh the Spanish (Mexico), French (Canada), and Ukrainian translations.<\/li>\n<\/ul>\n\n<h4>1.3.0<\/h4>\n\n<ul>\n<li>Accessibility: the \"Show more details\" toggle on list-table rows now reports its expanded or collapsed state to screen readers.<\/li>\n<li>Accessibility: completed a manual keyboard and screen-reader pass (Orca on Firefox) across the admin screens, the public form, and the appointments calendar. See the Accessibility section for what is and is not covered.<\/li>\n<li>Corrected the translation bug-report link and completed the catalogue headers so translators reach the right place.<\/li>\n<\/ul>\n\n<h4>1.2.5<\/h4>\n\n<ul>\n<li>Find a customer or a vehicle by typing: the customer and vehicle pickers on the appointments calendar, the vehicle form, and the work order form now filter as you type, and can be driven from the keyboard alone.<\/li>\n<li>Search runs on the server, so a picker can now reach any customer or vehicle in the shop. The previous 500-record limit is gone from every picker.<\/li>\n<li>Record an engine number on a vehicle, alongside the existing engine description.<\/li>\n<li>Find a vehicle by VIN, license plate, or engine number, and see which of them matched.<\/li>\n<li>Choose a vehicle and its owner is filled in for you.<\/li>\n<li>Fix a vehicle losing its owner when saved: a picker could submit an empty owner once the chosen customer fell outside the list the page had rendered.<\/li>\n<li>Fix an archived customer's vehicle falling back to the placeholder owner when edited, which could save the vehicle against the wrong owner, or against none at all.<\/li>\n<li>Fix required-field validation on the vehicle and work order forms, which never actually fired.<\/li>\n<li>Improve accessibility across the plugin: WCAG 2.2 Level AA remediation on the admin screens and the public visit form, confirmation dialogs that move focus into the dialog and hand it back when they close, appointments that can be created and rescheduled from the keyboard alone, corrected low-contrast colors, and status messages that are announced to screen readers. The manual screen-reader review is still in progress.<\/li>\n<li>Refresh the Spanish (Mexico), French (Canada), and Ukrainian translations to cover everything above.<\/li>\n<\/ul>\n\n<h4>1.2.0<\/h4>\n\n<ul>\n<li>Add service reminders: set a next-service reminder by date and\/or mileage when you close a work order, prefilled from a shop default and easy to confirm, edit, or skip.<\/li>\n<li>Add a reminders worklist with Overdue, Due soon, All, and History views and live counts.<\/li>\n<li>Mark reminders handled or dismissed; setting a new reminder for a vehicle supersedes the previous one so each vehicle keeps a single active reminder.<\/li>\n<li>Add a shop default reminder interval and a miles or kilometers unit setting that applies wherever mileage is shown and entered.<\/li>\n<li>Refresh the Spanish (Mexico), French (Canada), and Ukrainian translations.<\/li>\n<\/ul>\n\n<h4>1.1.0<\/h4>\n\n<ul>\n<li>Add an Appointments calendar: create, edit, and view appointments tied to a customer and vehicle in month, week, and day views, with drag-to-reschedule and warn-only double-booking notices.<\/li>\n<li>Schedule an appointment straight from a customer, vehicle, or lead, and return to the lead after creating it.<\/li>\n<li>Add a \"Today's appointments\" snapshot to the dashboard.<\/li>\n<li>Add status filter tabs to the Leads list (New, Promoted, Dismissed, Spam, Archived) with an archive and restore action.<\/li>\n<li>Add a \"Powered by PitDesk\" link below the visit form.<\/li>\n<li>Refresh the Spanish (Mexico), French (Canada), and Ukrainian translation templates.<\/li>\n<\/ul>\n\n<h4>1.0.1<\/h4>\n\n<ul>\n<li>Add Spanish (Mexico), French (Canada), and Ukrainian translations.<\/li>\n<\/ul>\n\n<h4>1.0.0<\/h4>\n\n<ul>\n<li>Initial release: leads and the visit form, customers, vehicles, work orders with line items and totals, per-vehicle service history, the staff dashboard, and role-based access.<\/li>\n<\/ul>","raw_excerpt":"Auto repair shop CRM for WordPress: capture leads from a visit form, then manage customers, vehicles, work orders, estimates, invoices, and service hi &hellip;","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/333429","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=333429"}],"author":[{"embeddable":true,"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/rwsss"}],"wp:attachment":[{"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=333429"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=333429"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=333429"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=333429"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=333429"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/es.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=333429"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}