4157 comments found.
Hello, we hope everything is going very well. We’ve been using your plugin for several years now, and it has worked wonderfully for us. However, we’re looking to take a step forward in enhancing the user experience.
Our website is www.farallonesrentacar.com, where we’ve implemented the plugin using WordPress and the Divi theme.
After reviewing how the plugin is presented on your live demo page (https://preview.codecanyon.net/item/car-rental-system-native-wordpress-plugin/full_screen_preview/11758680), we believe this layout and functionality align perfectly with the improvements we’re aiming to make.
We’d like to know:
What is the cost of the theme used in the demo?
Do you offer implementation services for setting up the plugin as shown in the live demo?
Thank you in advance for your time and support.
Best regards, Dorian Chaves Velasco. Farallones Team.
Hi…
Hello, I need a feature on your system: I want to prevent customers from booking a car more than 4 months in advance. Example: today (July 24, 2025), they can only book until November 24, 2025.
I want to translate the plugin. Send you files in PL language, but no respond.
Thanks for your efforts. One day it will be added to core. Your email went to spam, so I only now noticed it.
Hello, is it ready?
Why you don’t answer? When translation will be ready? I need it to finish my page!
I have been trying to contact you several times without success i paid for custom works in December but i have not received the deliverables. I have emailed follow ups with no replies please get in touch
I sent you a reply couple month ago about refund options, but that is custom works that is not related to this plugin here. The custom works that you asked are not able to develop.
You still have not given me my money back. You are not responding back to my emails despite me sending you multiple emails you keep ignoring my messages. Can i please have my money back?
Serious bug
Customers were able to successfully place orders for a product (rental cars) even though the available quantity was already zero. This resulted in the stock level being reduced to -1, which should not be possible under normal circumstances. The system failed to enforce the availability check before confirming the order.
The system should block the order and display a message indicating that the item is out of stock or unavailable.
Awaiting a way to resolve this issue.
It should, not sure why this happened, but it is really hard to debug that and would require testing on your server.
What kind of access do you need in order to test things out? We can provide SFTP and Admin Access.
Hi, Im having a SKU error when adding a second car
Error: Car with this stock keeping unit (SKU) already exist!
Something is wrong with your server setup. When I test it on Xampp, it does not give me this error.
On mobile the car rental form doesn’t show the date label on the date field, it’s confusing for customers. On desktop version everything is good. I tested this on the default theme too, it’s the same.
Hello I need support as for a few days I’m not able to make a reservation through the single car pages in my client website. I’m getting the following error – https://share.cleanshot.com/FYGctG1p
Can you please help me solve this problem.
It cannot just stop working, it says that params are missing, maybe you disabled some fields in CRS Admin, but left them as required. If you have budget, I can investigate individual website, otherwise you should check.
Hi,
Sorry may be I need to explain the issue more. The problem is occurring only when I trying to make a reservation through a certain car page. When I make a reservation from the search form on the homepage there is no problem.
I haven’t done any changes to the settings of the plugin. I can’t understand why there is no problem making reservation through the search form and there is when making one directly from a certain car page. The reservation form is the same with selecting pick-up and drop-off dates and locations.
Use twenty sixteen theme, and default plugin install with default settings imported and it will work. You either done something via theme, or so. Ask the one who installed your theme, what he done there. If you want me to work on your website, you will need to hire me (info (at) xrental [thedot] com for the hired works).
Hi, I bought the plugin a while ago and I already wrote you an email explaining that I’m having compatibility issues with the TanTum theme where they use your plugin that I had to pay for separately. Can I talk to someone about this? You can reply to me at luciacurcetti@hotmail.it
You should ask theme author. But feel free to describe your issue to info (at) xrental [thedot] com
Hi, does this plugin support calendar sync via ical? Thanks.
This feature can be developed via custom works by any smart developer.
I have a few questions: 1. I read the plugin is compatible with Elementor. Since I need to follow a graphic template, I need to know if I can embed using shortcodes booking forms and car carousels and similar into my custom template. How much can I customise the style of those parts to work seamlessly into the template (this is a key feature I need)? 2. Is it possible to set a geofence area in the booking form? 3. Can I set a per-km fee? 4. Can I add other vehicle types, such as e-bikes? Thanks
I am planning to purchase two licenses of your car rental plugin for use on two separate websites. Before proceeding with the purchase, I would like to ask if there is any built-in functionality or recommended method that would allow me to export prices (including special prices or discounts) from one site and import them into the other.
The reason I ask is to avoid duplicating the same work twice when managing pricing updates between the two sites.
Is such a workflow supported, either directly through the plugin or via an external method such as CSV import/export?
Thank you in advance for your assistance. I look forward to your response.
Hi, you can export all “fleet_management_” prefixed car rental database tables via phpmyadmin.
Salve, ho bisogno di aiuto per il plug-in l ho installato su wordpress ma non riesco a farlo comparire sul sito come devo fare ?grazie mille
Use shortcodes. Support is only in english
Hello, I have an issue with your plugin. When I create a location, car, or extra item and then delete it, I’m unable to create it again with the same name,or even an another name. The system says it already exists. I checked the database and confirmed it’s deleted, but it seems like the ID or some reference is still stored somewhere.
So far, I’ve had to manually add data directly into the database to make it work, but I need a long-term solution to handle this properly through the plugin itself.
How can I permanently resolve this issue without editing the database manually?
this code works GOOD, but just for car models. User seven-1 if you see this please help us solve this for location and extras too. Or please admin contact the user seven-1 (commented here 4 months ago) and let him know to help us out.
function modify_car_rental_sku_handling() { // Add SKU field right after model name add_action(‘admin_footer’, function() { if (!isset($_GET[‘page’]) || strpos($_GET[‘page’], ‘car-rental-add-edit-item-model’) === false) { return; } ?> <script type=”text/javascript”> jQuery(document).ready(function($) { // Find model name row – being very specific with the selector var $modelNameRow = $(‘input[name=”item_model_name”]’).closest(‘tr’); if ($modelNameRow.length > 0) { // Create SKU row with matching styling var skuRow = $( ‘
// Override SKU validation
add_filter('fleet_management_is_network_enabled', '__return_true', 999);
add_filter('fleet_management_validate_sku', '__return_true', 999);
// Debug output
if (WP_DEBUG) {
add_action('admin_notices', function() {
if (!isset($_GET['page']) || strpos($_GET['page'], 'car-rental-add-edit-item-model') === false) {
return;
}
global $wpdb;
$lastSKU = $wpdb->get_var("
SELECT item_sku
FROM {$wpdb->prefix}car_rental_items
ORDER BY item_id DESC
LIMIT 1
");
?>
Car Rental SKU Debug Info:
Last SKU: <?php echo esc_html($lastSKU); ?>
<script type="text/javascript">
jQuery(document).ready(function($) {
var formClassFound = $('form.add-edit-item-model').length > 0 ? 'Yes' : 'No';
var currentSKU = $('#item_model_sku').val();
$('.notice-info').append('Form class found: ' + formClassFound + '
');
$('.notice-info').append('Current SKU field value: ' + currentSKU + '
');
});
</script>
<?php
});
}
// Initialize the handler add_action(‘init’, ‘modify_car_rental_sku_handling’);
// Override the SKU duplication check add_filter(‘query’, function($query) { global $wpdb; if (isset($_POST[‘save_item_model’]) && strpos($query, ‘item_sku’) !== false && strpos($query, ‘SELECT’) !== false) { error_log(‘Car Rental Debug – Intercepted SKU check query: ’ . $query); return “SELECT item_id FROM {$wpdb->prefix}car_rental_items WHERE 1=0”; } return $query; }, 0);
Hi, I open new message because the previous one has not been answered 22 days ago.
I have 2 questions on different topics:
1. After a booking, a WordPress user is automatically created, but no password is sent to the customer. How can the customer log in or get a password? I have seen an option to disable WordPress account creation for new bookings, but it is grayed out and cannot be selected (within the “booking” tab). Is it possible to disable account creation? Would that affect any feature of the plugin?
2 I am working with the availability calendar, I would like to know if it is possible to display it for more than 30 days at a time. I am using the shortcode: [car_rental_system display=”availability” layout=”calendar”] My questions are: - Is there any way to change the number of days or set a custom date range to be displayed on the calendar? - Alternatively, is it possible to display multiple calendars, one per month (e.g. via multiple shortcodes?
Thanks for your time and best regards!
Juan
1. Wordpress should send emails with user creation. You can disable via php editing parameter in interface file. See notes in that admin page how to do that.
2. More than one calendar is resource too intensive. In admin you can use search, in front end its just a calendar.
Hi again,
I would like to follow up on my second question regarding the availability calendar.
Currently, when using the shortcode [car_rental_system display=”availability” layout=”calendar”], it only shows availability for the next 30 days. I would like to know:
1 – Is there any way to extend the number of days or months shown in the calendar? Maybe shortcode parameters or something like that
This would help us offer a better experience to our customers by allowing them to check availability well in advance.
Thank you again for your help.
Best regards, Juan
Via custom works only you can extend to more days, but it will slow down the page load, so 30 days is optimal to resources used. You can order custom works from some skilled developer.
Dear support team,
I’m using the Native Car Rental plugin on my WordPress website and have encountered a serious issue related to the coupon functionality.
Whenever I apply a coupon code within a seasonal pricing period, the total price drops to €0, even though the price per day is correctly defined and the coupon has a valid configuration.
Here is a summary of the setup:
Seasonal pricing is correctly set (e.g. 01.07.2025–31.08.2025)
Price per day is defined (e.g. €40/day)
A coupon (e.g. SUMMER10, 10% discount) is added to that same seasonal period
There are no overlapping dates or invalid extras
Even with a default price per day defined, the issue persists
When I remove the coupon, the system correctly displays and calculates the price
I have tested this with all other plugins disabled and the issue remains. It seems like the coupon logic inside seasonal pricing breaks the price calculation entirely.
Can you please check if this is a known bug and let me know if a fix or update is available? This is affecting live bookings on the site, so a quick resolution would be greatly appreciated.
You should have a default price plan with no coupon codes nor dates, and then add seasonal prices on top of that.
Hi, i have problem with your plugin. Can you help me?
Please describe your issue.
Hello I did buy https://codecanyon.net/item/car-rental-system-native-wordpress-plugin/11758680
I would like to get and the theme that is in the demo. I am new to web design and i am doing this all alone for my new business. Thought that what i bough was as in demo with the theme to.
The demo theme can be bought at wpcarrental.com. Also there is a theme at solidmvc.com.
I’ve submitted several questions over the past 2–3 months and have never received a response. It’s really frustrating, because we invest our time and money to improve our businesses, and when we need support for a plugin we’ve already paid for, there’s simply no one there.
When I first installed the plugin and configured everything correctly, it showed a message like “Reservation cancelled” for no reason. After reaching out, I was told I needed to pay an additional €300 for a script to fix it. I didn’t complain – I paid, and everything worked fine after that.
But the lack of support is unacceptable. I suggest either: • introducing a yearly subscription with proper support, • or shutting down the product, so people can move on and find solutions that actually help them run their businesses.
You don’t have supported status, so please renew your support. And hard questions is hard to answer. If you have a large budget, I am more than welcome to do individual premium support.
Reservation Failure Minimum number of night should not be less than 8 hours. Please modify your searching criteria.
Pick-up is not possible on January 1, 1970 12:00 am. Please modify your pickup date & time according to rental location current date & time. Rental location current date & time is May 19, 2025 3:22 pm
Please select at least one car
I am receiving this error message. I am using Betheme, WordPress version 6.8.1, and PHP 8.3, with English as the default language.