Technical how to

This technical help has been written by our development team based on the answers/directions provided to our clients who have asked for directions to modify the code. We published them hoping that they will help other clients with similar requests implement the modifications faster.

Please keep in mind that theme customization services ARE NOT included in the client standard support. Our support team cannot do code modifications for you.

Item support is a service provided directly by us through the FreshDesk ticket system. Support is limited to questions regarding the theme’s features or problems with the theme. We are not able to provide support for code customizations or third-party plugins. If you need help with anything other than minor customizations of your theme, we suggest searching for a WordPress developer on studio.envato.com.

Full Themeforest support policy is available here for further information (https://themeforest.net/page/item_support_policy).

Technical: Change Redirect Page after Booking Payment

The redirect code for after payment for when a booking is done works so that user is redirected to My Reservations page in user dashboard. The code is in below templates themes/wprentals folder The redirect can be done to a general link or another custom page template Ex: for a redirect link $redirect=​’http://yourdomain.com’;

Technical How to : Change the submit property page

The submit page property is actually composed on 7 submit templates, each named after the data submitted. We have Description, Price, Images, Details, Location, Amenities and Calendar. For each of these pages the submission is made via an ajax mechanism, meaning that when you hit the save button the data inserted is read by a […]

Technical: How to enable Invoices in renter/user dashboard.

By default, the theme shows invoices only in the owner account. If you wish to show the list of invoices in the renter account as well the following changes need to be done: For mobile user menu remove highlighted code: Desktop user menu remove highlighted code: top user menu remove highlighted code: Then remove highlighted code as […]

Technical how to: Ical feeds

The ical feed you add in calendar is saved via ajax. The js code is at ajaxcalls_add.js at line 631 $(‘#edit_calendar’).click(function () {……   The php code is at line 505 in ajax_functions_edit.php , function wpestate_ajax_update_ical_feed() .   The function that does the actual import is wpestate_import_calendar_feed_listing($edit_id); and can be found in icalendar.php file at […]