I don’t use any version of Wp yet, as I am beginning and I have to create a vacation home rental website but before to download and start from the scratch I need to know if this theme included Ical import calendar from an external website into the dashboard and/or export the ical calendar to external sites such AIRBNB/Homeaway/Tripadvisor.
Also, is this themed allow plugins such authorized.net and may I have some ITT knowledge to deal and manage the theme and do my site exactly like https://lifestylevillas.net/vacation-properties/
Can you advised please,
Thank You
Hi, which file do I need to edit to show a specific amount per page?> I see you have the option in the featured shortcode, but for no other. For instance, say I want 3 rows of three images across, with a total of 9 properties per page. Also, is there a way to remove weekly listings on single family homes only? Thank you for a quick reply to this.
]]>After installing, activating, the settings screen in the admin panel is totally blank. I turned off most plugins to see if they conflicted but they did not, can you help?
]]>I’m currently using your plugin on a client site and for some reason the datepicker isn’t working. When you click on it no calendar drops down to choose a date. Are there any known conflicts with this?
Thank you
]]>Hey there! I am working on the site with a concept very similar to Homeaway . com but for the car rentals instead of homes. Would this Plug in work for that? Can it be customized for car rentals instead of homes? Would it allow members to add their cars in their profiles? Which membership Plugin would work best with this plugin?
Thanks!
]]>Just wondering about the extent of the plugins capabilities with regards to interfacing with the (Specifically Escapia and ISLink) APIs?. Would it be possible to create additional functionality within the plugin that would allow users to search for properties based on geographic location?
Also – I’d like to integrate with google maps in order to display the property location on the map, is it possible to retrieve property coordinates from the APIs?
]]>When on a property, clicked over to the “Book” tab, selecting dates in the future, specifically 2016, and clicking “Check Availability” causes nothing to happen. If a date in the current year (2015) is selected and “Check Availability” is clicked, the “Book Now” button appears and works.
Example Link: https://www.myrtlegrandvacations.com/vrp/unit/Ocean_Surf_Club…new_renovations…same_great_rates-1830-86272-1
Is this a known issue, or perhaps there is a setting that needs to be set somewhere? Can anyone advise?
]]>How do I go about obtaining an API key? I installed the plugin and it had a link to sign up but it was a dead link? https://www.gueststream.com/apps-and-tools/vrpconnector-sign-up-page/AP
]]>I cloned an existing site to new domain and hosting. When i try to activate VRPConnector I am getting this error:
Parse error: syntax error, unexpected T_STRING in /home/content/80/3948380/html/CaptainErik/bestbeach/wp-content/plugins/vrpconnector/VRPConnector.php on line 20
I have tried to uninstall and re-install to no avail.
This is VRPConnector.php:
<?php
/**
* Plugin Name: VRPConnector
* Plugin URI: https://www.gueststream.com/apps-and-tools/vrpconnector/
* Description: Vacation Rental Platform Connector.
* Author: GuestStream, Inc.
* Version: 1.0.0
* Author URI: https://www.gueststream.com/
*/
if ( !isset( $_SESSION ) ) {
@session_start();
}
/** Constants needed throughout plugin: * */
define( ‘VRP_URL’, plugin_dir_url( __FILE__ ) );
define( ‘VRP_PATH’, dirname( __FILE__ ) . ‘/’ );
require __DIR__ . “/vendor/autoload.php”;
$vrp = new \Gueststream\VRPConnector;
//Activation:
register_activation_hook( __FILE__, ‘vrp_flush_rewrites’ );
register_deactivation_hook( __FILE__, ‘flush_rewrite_rules’ );
/**
* Flush rewrite rules upon activation/deactivation.
*/
function vrp_flush_rewrites() {
\Gueststream\VRPConnector::rewrite_activate();
flush_rewrite_rules();
}