Changeset 1666646
- Timestamp:
- 05/29/2017 06:45:05 PM (9 years ago)
- Location:
- visfeed/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (7 diffs)
-
visfeed.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
visfeed/trunk/readme.txt
r1546177 r1666646 1 1 === Visfeed === 2 2 Contributors: rickgonzalez 3 link: http:// visbridge.com/3 link: http://ownerfeed.com/ 4 4 Tags: Vacation Rental booking, Reservations, Payment Platform, Stripe, scheduling, confirmations, appointment setting, tour, sharing economy, hosting platform 5 5 Requires at least: 3.0.1 … … 15 15 This plugin allows you to set up a booking website that can manage Stripe payments and several different booking workflows. Visfeed supports instant bookings as well as managed requests to book. 16 16 17 Additional support can be found at http://www. visbridge.com/visfeed-documentation/17 Additional support can be found at http://www.ownerfeed.com/visfeed-documentation/ 18 18 19 19 Hosted resources can include rental properties, or anything that can be booked daily or hourly. Visfeed displays the resource's availability calendar and allows a customer to book time with the resource, accept agreements, make booking requests and process payments via the Stripe network. … … 29 29 This section describes how to install the plugin and get it working. 30 30 31 If you’re interested in seeing the plugin’s interactions prior to creating an account, you can email rick@ visbridge.com and I’ll send you a sample calendar account to review.31 If you’re interested in seeing the plugin’s interactions prior to creating an account, you can email rick@ownerfeed.com and I’ll send you a sample calendar account to review. 32 32 33 33 34 1. Create a Visbridge account on www.visbridge.com. There is a $10/month fee for each property or resource.34 1. Create an ownerfeed account on www.ownerfeed.com. There is a $10/month fee for each property or resource. 35 35 2. Add booking agreements, welcome letters, recommendations and confirmation information. 36 3. Create a new, or connect your existing, Stripe account via the visbridge.com settings area. This is required if you want to use the automated payment part of the workflows. Visbridgecharges a .85% fee for transactions on top of Stripe’s normal fee of 2.9% + $0.30.36 3. Create a new, or connect your existing, Stripe account via the ownerfeed.com settings area. This is required if you want to use the automated payment part of the workflows. Ownerfeed charges a .85% fee for transactions on top of Stripe’s normal fee of 2.9% + $0.30. 37 37 4. Upload the plugin files to the `/wp-content/plugins/Visfeed` directory, or install the plugin through the WordPress plugins screen directly. 38 38 5. Activate the plugin through the 'Plugins' screen in WordPress. … … 76 76 77 77 78 property_id = available via visbridgeaccount,78 property_id = available via ownerfeed account, 79 79 80 80 … … 83 83 corediscount1 - 6 = 0 These are pricing discounts which can be expressed as a number such as 25 = 25% discount. Discounts are placed on the number of units, for example, discount2 on 2 or more days and discount3 on 3 or more. The default for all discounts is 0 which would apply the per unit price regardless of the number of units. 84 84 85 ics_usedirect = 0 or 1 - default 0 means that the availability calendar comes automatically from visbridge.com. If 1 is set, the program expects an external source for the availability calendar.85 ics_usedirect = 0 or 1 - default 0 means that the availability calendar comes automatically from ownerfeed.com. If 1 is set, the program expects an external source for the availability calendar. 86 86 87 87 88 ics_name = “” - name of external calendar file - the default is empty because the program uses the visbridge.com default booking calendar, which has many advantages.88 ics_name = “” - name of external calendar file - the default is empty because the program uses the ownerfeed.com default booking calendar, which has many advantages. 89 89 90 90 … … 113 113 114 114 115 Visbridgeis a Stripe connect provider, which means that the you as the Stripe account owner are responsible for managing refunds and transfers to your account. By opening and connecting your Stripe account with Visbridge, we are able to control the booking flow and present the payment screens when necessary, but you are the owner of the Stripe account with full access to the Stripe dashboard with account credentials.115 Ownerfeed is a Stripe connect provider, which means that the you as the Stripe account owner are responsible for managing refunds and transfers to your account. By opening and connecting your Stripe account with Visbridge, we are able to control the booking flow and present the payment screens when necessary, but you are the owner of the Stripe account with full access to the Stripe dashboard with account credentials. 116 116 117 117 … … 124 124 125 125 126 = Is there a trial period for Visbridge? =126 = Is there a trial period for Ownerfeed? = 127 127 128 128 129 No, but you can create an account without activating your subscription. This allows you to check out the features. You will not be able to create bookings or payments without activating a subscription. 130 129 Currently there is a 30 day trial period. 131 130 132 131 = Can I customize the Visfeed flows or UI? = 133 132 134 133 135 There’s a limited number of customizations that you can perform through the shortcode and global settings. The plugin uses a file called visfeed.js which is open source, but you must be able to host the javascript and adhere to the Visbridge account management conventions established in the original.134 Yes! There’s a limited number of customizations that you can perform through the shortcode and global settings. The plugin uses a file called visfeed.js which is open source. 136 135 137 136 138 137 == Screenshots == 139 138 140 1. Setting up an account on visbridge.com creates your unique token for the plugin. Visbridge.com is also where you manage your mobile confirmations and calendar syncing.139 1. Setting up an account on ownerfeed.com creates your unique token for the plugin. Ownerfeed.com is also where you manage your mobile confirmations and calendar syncing. 141 140 2. The second screen shot shows a month view of the availability calendar. 142 141 3. After clicking and dragging to create a booking, the user is presented with a custom booking agreement. -
visfeed/trunk/visfeed.php
r1545098 r1666646 255 255 256 256 wp_enqueue_script( 'bootstrap-js',plugins_url( '/js/bootstrap.min.js', __FILE__ ), array (),'3.3.7', true); 257 wp_enqueue_script( 'visfeed',plugins_url( '/js/visfeed_1_ 2_2.js', __FILE__ ), array (),false, false);257 wp_enqueue_script( 'visfeed',plugins_url( '/js/visfeed_1_4.js', __FILE__ ), array (),false, false); 258 258 wp_enqueue_script( 'datetimepicker',plugins_url( '/js/bootstrap-datetimepicker.js', __FILE__ ), array (),false, false); 259 259 wp_enqueue_style( 'bootstrap-css', plugins_url( '/css/bootstrap.min.css', __FILE__ ), array (),false, false);
Note: See TracChangeset
for help on using the changeset viewer.