Skip to content

Commit 46d2b1f

Browse files
committed
More Hubspot overhauls, Hubspot virtual pageview updates, GPC support
1 parent 44b48ff commit 46d2b1f

File tree

20 files changed

+94
-188
lines changed

20 files changed

+94
-188
lines changed

.github/package.json

Lines changed: 1 addition & 1 deletion
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": "13.1.7.967",
5+
"version": "13.1.9.999",
66
"homepage": "https://gearside.com/nebula/",
77
"repository": {
88
"type": "git",

Nebula-Child/assets/css/admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Nebula-Child/resources/sw.js

Lines changed: 1 addition & 1 deletion
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 = 'v13.1.7.967'; //Saturday, June 7, 2025 11:12:49 PM
3+
const NEBULA_VERSION = 'v13.1.9.999'; //Monday, June 9, 2025 11:58:01 PM
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

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/critical.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/login.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/pre.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/modules/measure.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ nebula.eventTracking = async function(){
367367
nebula.dom.document.trigger('nebula_event', thisEvent);
368368
gtag('event', thisEvent.event_name, nebula.gaEventObject(thisEvent));
369369
window.dataLayer.push(Object.assign(thisEvent, {'event': 'nebula_modal_shown'}));
370+
nebula.crm('event', 'Modal Shown (' + thisEvent.event_label + ')');
370371
});
371372
nebula.dom.document.on('hidden.bs.modal', function(e){
372373
let thisEvent = {
@@ -383,6 +384,7 @@ nebula.eventTracking = async function(){
383384
nebula.dom.document.trigger('nebula_event', thisEvent);
384385
gtag('event', thisEvent.event_name, nebula.gaEventObject(thisEvent));
385386
window.dataLayer.push(Object.assign(thisEvent, {'event': 'nebula_modal_hidden'}));
387+
nebula.crm('event', 'Modal Hidden (' + thisEvent.event_label + ')');
386388
});
387389

388390
//Bootstrap Carousels (Sliders)
@@ -1888,7 +1890,7 @@ nebula.hj = function(type='event', value=''){
18881890
};
18891891

18901892
//Send data to the CRM
1891-
nebula.crm = async function(action, data, sendNow = true){
1893+
nebula.crm = async function(action, data, sendNow=true){
18921894
if ( nebula.isDoNotTrack() ){
18931895
return false;
18941896
}
@@ -1944,9 +1946,9 @@ nebula.crm = async function(action, data, sendNow = true){
19441946

19451947
_hsq.push(['setPath', window.location.href.replace(nebula.site.directory.root, '') + '#virtual-pageview/' + data]);
19461948
let oldTitle = document.title;
1947-
document.title += ' (Virtual)'; //Append to the title
1949+
document.title = data + ' (Virtual)'; //Change the title for the virtual page view
19481950
_hsq.push(['trackPageView']);
1949-
document.title = oldTitle;
1951+
document.title = oldTitle; //Then revert the title back to what it was
19501952
}
19511953

19521954
nebula.dom.document.trigger('crm_data', data);

assets/scss/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Theme URI: https://nebula.gearside.com
44
Description: Nebula is a springboard WordPress theme framework for developers. Like other WordPress startup themes, it has custom functionality built-in (like shortcodes, styles, and JS/PHP functions), but unlike other themes Nebula is not meant for the end-user.
55
Author: Nebula
6-
Version: 13.1.7.967
6+
Version: 13.1.9.999
77
License: GNU General Public License v2.0 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99
Text Domain: nebula

0 commit comments

Comments
 (0)