Compare commits

...

2 Commits

Author SHA1 Message Date
611935a691 Merge branch 'main' of git.robert.ooo:roberto/siti-delivery-time-notices
All checks were successful
Build & Release Plugin / release (push) Successful in 9s
2026-02-01 17:39:15 +00:00
c5496439c7 Require SitiDeliveryTimeNotice class in the main plugin file 2026-02-01 17:38:54 +00:00

View File

@@ -11,7 +11,7 @@
* Plugin Name: Siti Delivery Time Notices * Plugin Name: Siti Delivery Time Notices
* Plugin URI: https://plugins.robert.ooo/plugin/ * Plugin URI: https://plugins.robert.ooo/plugin/
* Description: A plugin to show delivery time notices on WooCommerce products. * Description: A plugin to show delivery time notices on WooCommerce products.
* Version: 1.0.0 * Version: 1.0.1
* Requires at least: 5.2 * Requires at least: 5.2
* Requires PHP: 7.2 * Requires PHP: 7.2
* Author: Roberto Guagliardo | SitiWeb * Author: Roberto Guagliardo | SitiWeb
@@ -48,4 +48,6 @@ $updater->set_owner( 'roberto' );
$updater->set_repository( SITI_DELIVERY_TIME_NOTICES_SLUG ); $updater->set_repository( SITI_DELIVERY_TIME_NOTICES_SLUG );
$updater->initialize(); $updater->initialize();
require_once plugin_dir_path( __FILE__ ) . 'includes/SitiDeliveryTimeNotice.php';
SitiDeliveryTimeNotice::init(); SitiDeliveryTimeNotice::init();