Changeset 3032367
- Timestamp:
- 02/06/2024 07:03:27 PM (2 years ago)
- Location:
- registerone-event-forms/trunk
- Files:
-
- 4 edited
-
admin/classes/RegisteroneShortcodes.php (modified) (5 diffs)
-
front-end/assets/css/form-custom.css (modified) (10 diffs)
-
readme.txt (modified) (3 diffs)
-
registerone-wordpress-client.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
registerone-event-forms/trunk/admin/classes/RegisteroneShortcodes.php
r3025889 r3032367 1588 1588 if($responses['code'] == 201) { 1589 1589 1590 $next_step_a = $responses['next_step'][0]; 1591 1592 $key_pos = (int)array_search($data['dwc_screen_name'],$next_step_a); 1593 if($this->_count_array($next_step_a) > 1) { $key_pos++; } 1590 // print_r($responses); die; 1594 1591 1595 1592 $redirect_url = $root; 1596 $redirect_url .= "?".$next_step_a[$key_pos]; 1593 1594 if(isset($responses['add_extra_fields'])){ 1595 $extra_amenity_id = $responses['add_extra_fields'][0]; 1596 $redirect_url .= "?badges&extra={$extra_amenity_id}"; 1597 1598 }else{ 1599 1600 $next_step_a = $responses['next_step'][0]; 1601 1602 $key_pos = (int)array_search($data['dwc_screen_name'],$next_step_a); 1603 1604 if($this->_count_array($next_step_a) > 1) { 1605 $key_pos++; 1606 } 1607 1608 $redirect_url .= "?".$next_step_a[$key_pos]; 1609 } 1597 1610 1598 1611 // if returned by profile, is attendee "tickets" token … … 1796 1809 } 1797 1810 1798 }elseif($responses['code'] == 202 || 1799 $responses['code'] == 201 || 1811 }elseif($responses['code'] == 201 || 1800 1812 $responses['code'] == 200) { 1801 1813 … … 1807 1819 1808 1820 $next_step_a = $responses['next_step'][0]; 1809 $key_pos = (int)array_search($data['dwc_screen_name'], $next_step_a);1821 $key_pos = (int)array_search($data['dwc_screen_name'], $next_step_a); 1810 1822 $key_pos++; 1811 1812 // badge post returns 2021813 if($responses['code'] == 202){1814 $key_pos++;1815 }1816 1823 1817 1824 $redirect_url = $root; 1818 1825 $redirect_url .= "?".$next_step_a[$key_pos]; 1819 1826 } 1820 }else{ 1821 //die("3"); 1822 $redirect_url .= "?amenities"; 1827 1828 }elseif($responses['code'] == 202) { 1829 1830 if(isset($responses['add_extra_fields'])){ 1831 $extra_amenity_id = $responses['add_extra_fields'][0]; 1832 $redirect_url .= "?badges&extra={$extra_amenity_id}"; 1833 1834 }else{ 1835 1836 $next_step_a = $responses['next_step'][0]; 1837 $key_pos = (int)array_search('badges', $next_step_a); 1838 $key_pos++; 1839 1840 $redirect_url = $root; 1841 $redirect_url .= "?".$next_step_a[$key_pos]; 1842 } 1823 1843 } 1824 1844 … … 6440 6460 </div> 6441 6461 6442 <?php if($formData['amenity_id_amenity_type_a'][$selectorKey] == 3): ?>6443 <div class = "amenity-item-container">6444 <div style = "display:<?php echo (isset($formData['amenity_id_selected_a'][$val]) && in_array($selectorKey, $formData['amenity_id_selected_a'][$val])) ? "initial" : "none"; ?>;" id="badge_note_<?php echo esc_attr($selectorKey); ?>" class="badge-note">6445 Add your details on the NEXT PAGE6446 </div>6447 <div class="flex-right-gutter"></div>6448 </div>6449 <?php endif; ?>6450 6451 6462 <?php endforeach; ?> 6452 6463 … … 10434 10445 } 10435 10446 ?> 10436 v3.7. 110447 v3.7.2 10437 10448 : <a href="https://app.registerone.com/privacy-policy" target="_blank">Privacy Policy</a> 10438 10449 <?php -
registerone-event-forms/trunk/front-end/assets/css/form-custom.css
r3025889 r3032367 129 129 display: flex; 130 130 flex-direction: row; 131 background-color: #dbdbdb;132 131 flex-wrap: nowrap; 133 132 } … … 161 160 #submit-apply { 162 161 margin-top: 5px; 163 /*float: right;*/164 162 margin-left: 40%; 165 163 } … … 1232 1230 white-space: inherit; 1233 1231 align-items: center; 1234 display: block;1232 display: flex; 1235 1233 } 1236 1234 … … 1314 1312 justify-content: flex-start; 1315 1313 margin-left: 15px; 1314 min-height: 50px; 1316 1315 } 1317 1316 … … 1728 1727 width: max-content; 1729 1728 cursor: help; 1729 height: 20px; 1730 1730 } 1731 1731 … … 2114 2114 width: 88%; 2115 2115 } 2116 #submit-apply { 2117 margin-top: 5px; 2118 margin-left: 35%; 2119 } 2116 2120 } 2117 2121 … … 2120 2124 div.block { 2121 2125 width: 90%; 2126 } 2127 #submit-apply { 2128 margin-top: 5px; 2129 margin-left: 35%; 2122 2130 } 2123 2131 } … … 2154 2162 margin: 0 5px; 2155 2163 } 2164 #submit-apply { 2165 margin-top: 5px; 2166 margin-left: 35%; 2167 } 2156 2168 } 2157 2169 … … 2235 2247 flex-wrap: wrap; 2236 2248 } 2249 #submit-apply { 2250 margin-top: 5px; 2251 margin-left: 35%; 2252 } 2237 2253 } 2238 2254 … … 2310 2326 flex-wrap: wrap; 2311 2327 } 2328 #submit-apply { 2329 margin-top: 5px; 2330 margin-left: 35%; 2331 } 2312 2332 } 2313 2333 -
registerone-event-forms/trunk/readme.txt
r3025889 r3032367 7 7 Requires at least: 5 8 8 Tested up to: 6.4 9 Version 3.7. 110 Stable tag: 3.7. 19 Version 3.7.2 10 Stable tag: 3.7.2 11 11 Requires PHP: 7.4 12 12 License: GPLv2 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html 14 14 15 RegisterONE is a unified , turnkey event solution provider for events, trade shows, expos, conferences, meetings & symposiums.15 RegisterONE is a unified event management platform for events, trade shows and expos. 16 16 17 17 == Description == … … 136 136 == Changelog == 137 137 138 = 3.7.2 = 139 * Optimized ticketing screen flow 140 138 141 = 3.7.1 = 139 142 * CSS mods for SSO login … … 472 475 == Upgrade Notice == 473 476 474 = 3.7.1 = 475 * Map areas now display booth number/label over area 476 * Added ability to customize label size 477 * Added borders around area with custom controls for width and color 478 * Added background colors with custom controls based on area status 477 = 3.7.2 = 478 * Optimized ticketing screen flow -
registerone-event-forms/trunk/registerone-wordpress-client.php
r3025889 r3032367 4 4 Plugin URI: https://www.registerone.com 5 5 Description: RegisterONE – Exhibitor Registration, Advanced Booth Mapping, Ticketing 6 Version: 3.7. 16 Version: 3.7.2 7 7 Author: RegisterONE 8 8 Author URI: http://www.registerone.com
Note: See TracChangeset
for help on using the changeset viewer.