Changeset 3375504
- Timestamp:
- 10/09/2025 07:41:34 AM (6 months ago)
- Location:
- synoveo/trunk
- Files:
-
- 3 edited
-
assets/js/gbp-compare.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
synoveo.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
synoveo/trunk/assets/js/gbp-compare.js
r3375269 r3375504 1261 1261 saveBtn.disabled = false; 1262 1262 }, 3000); 1263 } 1264 }); 1265 } 1266 1267 // Sync handler for footer button 1268 const syncBtn = document.getElementById('synoveo-sync-to-google-btn'); 1269 if (syncBtn) { 1270 // Remove any existing listeners 1271 const newSyncBtn = syncBtn.cloneNode(true); 1272 syncBtn.parentNode.replaceChild(newSyncBtn, syncBtn); 1273 const syncButton = newSyncBtn; 1274 1275 syncButton.addEventListener('click', async (e) => { 1276 e.preventDefault(); 1277 e.stopPropagation(); 1278 1279 // Call the existing syncNow function 1280 if (window.SynoveoGbpCompare && typeof window.SynoveoGbpCompare.syncNow === 'function') { 1281 await window.SynoveoGbpCompare.syncNow(); 1263 1282 } 1264 1283 }); -
synoveo/trunk/readme.txt
r3375284 r3375504 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 57 Stable tag: 1.0.6 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 253 253 254 254 == Changelog == 255 256 = 1.0.6 = 257 * **BUGFIX:** Fixed non-functional sync button in GBP Compare modal 258 * **BUGFIX:** Added missing event listener for "Sync to Google" button 259 * **BUGFIX:** Business hours sync now works properly after WordPress best practices refactoring 255 260 256 261 = 1.0.5 = -
synoveo/trunk/synoveo.php
r3375269 r3375504 4 4 * Plugin URI: https://www.synoveo.com 5 5 * Description: Grow revenue by improving your online business presence. Synoveo keeps your Google Business Profile accurate and up-to-date, driving more calls, bookings, visits, and sales. 6 * Version: 1.0. 56 * Version: 1.0.6 7 7 * Author: Synoveo (CODE75) 8 8 * Author URI: https://www.code75.io
Note: See TracChangeset
for help on using the changeset viewer.