Skip to content

Commit 330bbb6

Browse files
committed
Improved GTM event names, improved get() function, bad email domain CF7 blocks, rand deprecations, new woocommerce plugin
#2248 #2247 #2237
1 parent a372c38 commit 330bbb6

27 files changed

+5044
-157
lines changed

.github/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nebula-wp",
33
"title": "Nebula",
44
"description": "Advanced Starter WordPress Theme for Developers",
5-
"version": "11.0.11.620",
5+
"version": "11.1.6.454",
66
"homepage": "https://gearside.com/nebula/",
77
"repository": {
88
"type": "git",

Nebula-Child/assets/css/admin.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Nebula-Child/assets/js/modules/usage.js

+11-8
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,17 @@ export function supplementalEventTracking(){
1111
}
1212

1313
//Simple example:
14-
//nebula.dom.document.on('click', '.selector', function(){
15-
// gtag('event', 'Action', {
16-
// event_category: 'Category',
17-
// event_label: 'Label',
18-
// something_extra: 'Extra', //Feel free to send additional data in custom parameters
19-
// non_interaction: true //If this action is not significant (or if not initiated by the user explicitly)
20-
// });
21-
//});
14+
// nebula.dom.document.on('click', '.selector', function(){
15+
// gtag('event', 'event_name_here', {
16+
// event_category: 'Category',
17+
// event_action: 'Action',
18+
// event_label: 'Label',
19+
// text: jQuery(this).text(), //For example: the text of the clicked link
20+
// link: jQuery(this).attr('href'). //For example: the href of the clicked link
21+
// something_extra: 'Extra', //Feel free to send additional custom parameters to help identify this event
22+
// non_interaction: true //If this action is not significant (or if not initiated by the user explicitly)
23+
// });
24+
// });
2225

2326
//Add your custom event tracking here!
2427
}

Nebula-Child/resources/sw.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//BEGIN automated edits. These will be automatically overwritten.
22
const THEME_NAME = 'nebula-child';
3-
const NEBULA_VERSION = 'v11.0.11.620'; //Thursday, May 11, 2023 2:52:40 PM
3+
const NEBULA_VERSION = 'v11.1.6.454'; //Tuesday, June 6, 2023 10:53:57 AM
44
const OFFLINE_URL = 'https://nebula.gearside.com/offline/';
55
const OFFLINE_IMG = 'https://nebula.gearside.com/wp-content/themes/Nebula-main/assets/img/offline.svg';
66
const META_ICON = 'https://nebula.gearside.com/wp-content/themes/Nebula-main/assets/img/meta/android-chrome-512x512.png';

Nebula-Child/style.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/admin.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/critical.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/login.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/pre.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)