Changeset 2158178
- Timestamp:
- 09/18/2019 01:29:44 AM (7 years ago)
- Location:
- showpass/trunk
- Files:
-
- 2 edited
-
showpass-wordpress-plugin-shortcode.php (modified) (1 diff)
-
showpass-wordpress-plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
showpass/trunk/showpass-wordpress-plugin-shortcode.php
r2108326 r2158178 12 12 /* making connection and taking the data from API */ 13 13 function call_showpass_api($url) { 14 $response = wp_remote_get($url); 14 $args = array( 15 'timeout' => 30, 16 ); 17 $response = wp_remote_get($url, $args); 15 18 $http_code = wp_remote_retrieve_response_code($response); 16 19 if ($http_code === 200) { -
showpass/trunk/showpass-wordpress-plugin.php
r2126943 r2158178 5 5 Description: List events, display event details and products. Use the Showpass purchase widget for on site ticket & product purchases all with easy to use shortcodes. See our git repo here for full documentation. https://github.com/showpass/showpass-wordpress-plugin 6 6 Author: Showpass / Up In Code Inc. 7 Version: 3.3. 27 Version: 3.3.3 8 8 Author URI: https://www.showpass.com 9 9 */
Note: See TracChangeset
for help on using the changeset viewer.