Changeset 2858708
- Timestamp:
- 02/02/2023 02:10:40 AM (3 years ago)
- Location:
- showpass/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (1 diff)
-
showpass-wordpress-plugin-shortcode.php (modified) (3 diffs)
-
showpass-wordpress-plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
showpass/trunk/readme.txt
r2813893 r2858708 3 3 Requires at least: 4.9 4 4 Tested up to: 6.0.2 5 Stable tag: 3.7. 05 Stable tag: 3.7.1 6 6 Requires PHP: 5.4.45 7 7 Contributors: marcshowpass, spapril, spzachary -
showpass/trunk/showpass-wordpress-plugin-shortcode.php
r2813893 r2858708 90 90 # get any query parameters from URL 91 91 $parameters = $_GET; 92 92 93 foreach ($parameters as $parameter => $value) { 93 if ($parameter == 'q' ) {94 if ($parameter == 'q' && !isset($atts['override_q'])) { 94 95 $final_api_url .= "&" . $parameter . "=" . showpass_utf8_urldecode($value); 95 96 } else if ($parameter == 'tags') { … … 175 176 $final_api_url .= "&id__in=" . $event_ids; 176 177 } 178 177 179 } 178 180 … … 899 901 if (!is_admin()) { 900 902 $data = call_showpass_api($final_api_url); 901 902 903 $events = array(); 903 904 $sort_order = explode(',', $event_ids); -
showpass/trunk/showpass-wordpress-plugin.php
r2813893 r2858708 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.7. 07 Version: 3.7.1 8 8 Author URI: https://www.showpass.com 9 9 */
Note: See TracChangeset
for help on using the changeset viewer.