Skip to content

Instantly share code, notes, and snippets.

View anton-roos's full-sized avatar
🎯
Focusing

Anton Roos anton-roos

🎯
Focusing
View GitHub Profile
@anton-roos
anton-roos / update-text.sql
Last active May 25, 2020 15:03
Update text in WooCommerce Database
UPDATE `wp_cf7dbplugin_submits`
SET `field_name` = REPLACE(`field_name`, 'tel-123', 'tel-576')
WHERE `field_name` LIKE 'tel-123%';
@anton-roos
anton-roos / footer.html
Last active May 25, 2020 14:49
Changing footer year with JavaScript Avada
@anton-roos
anton-roos / sendy.sql
Last active April 9, 2020 10:18
Sendy SQL Queries
/* Delete all bounced email addresses from list 13 */
DELETE FROM `subscribers` WHERE `bounced` = 1 AND `list` = 13;
/* Delete all marked as spam email addresses from list 5 */
DELETE FROM `subscribers` WHERE `complaint` = 1 AND `list` = 5;