https://drive.google.com/file/d/12M9m1sNh6Qn6cVIxzdrVFvvZaA1I751k/view?usp=sharing
This small script updates the product date and unsets the private checkbox, scheduling the product for a specific date in the future. I made this because I couldn't find a quicker way to bulk schedule products (none of the WooCommerce bulk product editor plugins support this), but I need to do this for a lot of products at a time as we rotate seasonal products in the shop.
This file contains 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
{ | |
"workbench.colorCustomizations": { | |
"titleBar.activeBackground": "#057e06", | |
"titleBar.inactiveBackground": "#045e05", | |
"titleBar.activeForeground": "#ffffff", | |
"titleBar.inactiveForeground": "#cccccc" | |
} | |
} |
This file contains 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
// ==UserScript== | |
// @name Copy page title link on Ctrl+CMD+Option+C | |
// @description Copy the title and URL of the current page to the clipboard | |
// @version 0.1 | |
// @match http*://*/* | |
// @grant GM_setClipboard | |
// ==/UserScript== |
OlderNewer