Last active
August 25, 2024 08:26
-
-
Save anthony9981/f7c6854979c3a2151eacfe5db05a7e8f to your computer and use it in GitHub Desktop.
[Code Snipppet] Tự động click try again khi tiến trình bị gián đoạn cho plugin wp all import
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setInterval(function() { | |
| if (jQuery('#wpallimport-try-again').is(':visible')) { | |
| jQuery('#wpallimport-try-again').click(); | |
| } | |
| }, 5000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment