Implement the rest of the welcome step

This commit is contained in:
inpsyde-maticluznar 2024-10-23 08:56:47 +02:00
parent 02ba0b1d48
commit 32bf8a76ec
No known key found for this signature in database
GPG key ID: D005973F231309F6
46 changed files with 933 additions and 2 deletions

View file

@ -77,6 +77,13 @@ class SettingsModule implements ServiceModule, ExecutableModule {
);
wp_enqueue_style( 'ppcp-admin-settings' );
wp_enqueue_style('ppcp-admin-settings-font', 'https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
wp_localize_script('ppcp-admin-settings', 'ppcpSettings', [
'assets' => [
'imagesUrl' => $module_url . '/images/'
]
]);
}
);