Plugin Directory

Changeset 3375504


Ignore:
Timestamp:
10/09/2025 07:41:34 AM (6 months ago)
Author:
synoveo
Message:

Deploy synoveo v1.0.6

Location:
synoveo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • synoveo/trunk/assets/js/gbp-compare.js

    r3375269 r3375504  
    12611261              saveBtn.disabled = false;
    12621262            }, 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();
    12631282          }
    12641283        });
  • synoveo/trunk/readme.txt

    r3375284 r3375504  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    253253
    254254== 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
    255260
    256261= 1.0.5 =
  • synoveo/trunk/synoveo.php

    r3375269 r3375504  
    44 * Plugin URI: https://www.synoveo.com
    55 * 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.5
     6 * Version: 1.0.6
    77 * Author: Synoveo (CODE75)
    88 * Author URI: https://www.code75.io
Note: See TracChangeset for help on using the changeset viewer.