Notes for Datasnipper, G2 and Walmart. Added Birchstreet. Small script changes.
This commit is contained in:
@ -392,8 +392,3 @@ DONE: Get Sophia a marketing number on usage increase between embedded and non-e
|
|||||||
* In the past they took way too long
|
* In the past they took way too long
|
||||||
* Numbers need to be in by December
|
* Numbers need to be in by December
|
||||||
|
|
||||||
## 11/03/2023
|
|
||||||
|
|
||||||
### Check in with Sophia
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
347
CustomerNotes/BigIdeasLearning/custom_css.html
Normal file
347
CustomerNotes/BigIdeasLearning/custom_css.html
Normal file
@ -0,0 +1,347 @@
|
|||||||
|
<script>
|
||||||
|
let observer;
|
||||||
|
|
||||||
|
let config = {
|
||||||
|
attributes: true,
|
||||||
|
childList: true,
|
||||||
|
subtree: true
|
||||||
|
};
|
||||||
|
let eoqMutationObserver = () => {
|
||||||
|
let observeStarter = () => {
|
||||||
|
observer.observe(document,config);
|
||||||
|
}
|
||||||
|
|
||||||
|
let callback = () => {
|
||||||
|
if(document.querySelector('[data-test="activity-title"]').innerHTML == 'Survey' || document.querySelector('[data-test="activity-title"]').innerHTML == 'Try It'){
|
||||||
|
document.querySelector('[data-test="continue-button"]').click();
|
||||||
|
}
|
||||||
|
observer.disconnect();
|
||||||
|
observeStarter();
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
observer = new MutationObserver(() => {
|
||||||
|
if(document.querySelector('[data-test="quiz-summary"]')){
|
||||||
|
callback();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
observer.observe(document, config);
|
||||||
|
}
|
||||||
|
|
||||||
|
eoqMutationObserver();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.nGiSq {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Accordion styles */
|
||||||
|
|
||||||
|
.fr-view .accordion,
|
||||||
|
div[data-test='additional-information'] .accordion {
|
||||||
|
background-color: transparent;
|
||||||
|
border-top: 1px solid #000;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 25px 0;
|
||||||
|
width: 100%;
|
||||||
|
text-align: left;
|
||||||
|
outline: none;
|
||||||
|
transition: 0.4s;
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 125%;
|
||||||
|
position:relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fr-view .accordion:before,
|
||||||
|
div[data-test='additional-information'] .accordion:before,
|
||||||
|
.fr-view .accordion:after,
|
||||||
|
div[data-test='additional-information'] .accordion:after {
|
||||||
|
content: '';
|
||||||
|
width:24px;
|
||||||
|
height:24px;
|
||||||
|
position:absolute;
|
||||||
|
right:0;
|
||||||
|
top:50%;
|
||||||
|
transform:translateY(-50%);
|
||||||
|
background-color:#000;
|
||||||
|
transition:opacity 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fr-view .accordion:before,
|
||||||
|
div[data-test='additional-information'] .accordion:before {
|
||||||
|
width:14px;
|
||||||
|
height:2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fr-view .accordion:after,
|
||||||
|
div[data-test='additional-information'] .accordion:after {
|
||||||
|
width:2px;
|
||||||
|
height:14px;
|
||||||
|
right:6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fr-view .accordion.active:after,
|
||||||
|
div[data-test='additional-information'] .accordion.active:after {
|
||||||
|
opacity:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fr-view .accordion-panel,
|
||||||
|
div[data-test='additional-information'] .accordion-panel {
|
||||||
|
padding: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
max-height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: max-height 0.2s ease-out;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 150%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fr-view .accordion-panel .accordion-panel-content,
|
||||||
|
div[data-test='additional-information'] .accordion-panel .accordion-panel-content {
|
||||||
|
padding-bottom:25px;
|
||||||
|
max-width:600px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.fr-view .accordion-panel p,
|
||||||
|
div[data-test='additional-information'] .accordion-panel p {
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 150%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.fr-view .accordion-panel:last-of-type,
|
||||||
|
div[data-test='additional-information'] .accordion-panel:last-of-type {
|
||||||
|
border-bottom:1px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Labels styling */
|
||||||
|
|
||||||
|
.fr-view .info-box, div[data-test='additional-information'] .info-box {
|
||||||
|
padding: 64px 20px 20px;
|
||||||
|
background: #f0f0ff;
|
||||||
|
border-left: 4px solid #2d29fc;
|
||||||
|
position: relative;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 150%;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
}
|
||||||
|
.fr-view .info-box:after, div[data-test='additional-information'] .info-box:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
top: 20px;
|
||||||
|
left: 20px;
|
||||||
|
background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%232D29FC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 16V12' stroke='%232D29FC' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M12 8H12.01' stroke='%232D29FC' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
|
||||||
|
background-size: contain;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.general, div[data-test='additional-information'] .info-box.general {
|
||||||
|
background: #f0f0ff;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.general:after, div[data-test='additional-information'] .info-box.general:after {
|
||||||
|
background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%232D29FC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 16V12' stroke='%232D29FC' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M12 8H12.01' stroke='%232D29FC' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
|
||||||
|
}
|
||||||
|
.fr-view .info-box.people, div[data-test='additional-information'] .info-box.people {
|
||||||
|
background: #ead9e3;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.people:after, div[data-test='additional-information'] .info-box.people:after {
|
||||||
|
background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 21V15L3 15V21' stroke='%232D29FC' stroke-width='2'/%3E%3Cpath d='M9 11C11.2091 11 13 9.20914 13 7C13 4.79086 11.2091 3 9 3C6.79086 3 5 4.79086 5 7C5 9.20914 6.79086 11 9 11Z' stroke='%232D29FC' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M21 21V15H18.5' stroke='%232D29FC' stroke-width='2'/%3E%3Cpath d='M16 3.13C16.8604 3.35031 17.623 3.85071 18.1676 4.55232C18.7122 5.25392 19.0078 6.11683 19.0078 7.005C19.0078 7.89318 18.7122 8.75608 18.1676 9.45769C17.623 10.1593 16.8604 10.6597 16 10.88' stroke='%232D29FC' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
|
||||||
|
}
|
||||||
|
.fr-view .info-box.glossary, div[data-test='additional-information'] .info-box.glossary {
|
||||||
|
background: #e8e8e8;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.glossary:after, div[data-test='additional-information'] .info-box.glossary:after {
|
||||||
|
background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 3H6V21L12 17L18 21V3Z' stroke='%232D29FC' stroke-width='2'/%3E%3C/svg%3E%0A");
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources, div[data-test='additional-information'] .info-box.resources {
|
||||||
|
background: #eff8fa;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources .resource-blocks, div[data-test='additional-information'] .info-box.resources .resource-blocks {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources .resource-blocks a, div[data-test='additional-information'] .info-box.resources .resource-blocks a {
|
||||||
|
color: #333132;
|
||||||
|
background-color: #fff;
|
||||||
|
padding: 20px 20px 54px;
|
||||||
|
display: block;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 150%;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources .resource-blocks a span, div[data-test='additional-information'] .info-box.resources .resource-blocks a span {
|
||||||
|
display: block;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 150%;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources .resource-blocks a:hover, div[data-test='additional-information'] .info-box.resources .resource-blocks a:hover {
|
||||||
|
color: #2d29fc;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources .resource-blocks a:after, div[data-test='additional-information'] .info-box.resources .resource-blocks a:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
bottom: 20px;
|
||||||
|
right: 20px;
|
||||||
|
background-image: url("data:image/svg+xml,%0A%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.32812 17L17.3281 7' stroke='%232D29FC' stroke-width='2'/%3E%3Cpath d='M7.32812 7H17.3281V17' stroke='%232D29FC' stroke-width='2'/%3E%3C/svg%3E%0A");
|
||||||
|
background-size: contain;
|
||||||
|
background-position: center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources:after, div[data-test='additional-information'] .info-box.resources:after {
|
||||||
|
background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%232D29FC' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M16.2417 7.76001L14.1217 14.12L7.76172 16.24L9.88172 9.88001L16.2417 7.76001Z' stroke='%232D29FC' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
|
||||||
|
}
|
||||||
|
.fr-view .info-box.alert, div[data-test='additional-information'] .info-box.alert {
|
||||||
|
background: #fff0f0;
|
||||||
|
border-left: 4px solid #ff2a26;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.alert:after, div[data-test='additional-information'] .info-box.alert:after {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.76619 20L12 2.94365L22.2338 20H1.76619Z' stroke='%23990300' stroke-width='2'/%3E%3Cpath d='M12 9V13' stroke='%23990300' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M12 17H12.01' stroke='%23990300' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
.fr-view .info-box.alert a, div[data-test='additional-information'] .info-box.alert a {
|
||||||
|
color: #990300;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course, div[data-test='additional-information'] .info-box.course {
|
||||||
|
background-color: #f5f6ff;
|
||||||
|
border-left: 4px solid #2e29fc;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course:after, div[data-test='additional-information'] .info-box.course:after {
|
||||||
|
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='album 1'%3E%3Cpath id='Vector' d='M11 3V11L14 8L17 11V3' stroke='%232D29FC' stroke-width='2' stroke-linecap='square'/%3E%3Crect id='Rectangle 566' x='3' y='3' width='18' height='18' stroke='%232D29FC' stroke-width='2'/%3E%3Cpath id='Vector 115' d='M7 3V21' stroke='%232D29FC' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper, div[data-test='additional-information'] .info-box.course .courses-wrapper {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper a, div[data-test='additional-information'] .info-box.course .courses-wrapper a {
|
||||||
|
color: #333132;
|
||||||
|
background-color: #fff;
|
||||||
|
padding: 15px;
|
||||||
|
display: flex;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 150%;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper a img, div[data-test='additional-information'] .info-box.course .courses-wrapper a img {
|
||||||
|
margin-right: 20px;
|
||||||
|
width: 140px;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper a > div, div[data-test='additional-information'] .info-box.course .courses-wrapper a > div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper a .title, div[data-test='additional-information'] .info-box.course .courses-wrapper a .title {
|
||||||
|
color: #242424;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: normal;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper a .subtitle, div[data-test='additional-information'] .info-box.course .courses-wrapper a .subtitle {
|
||||||
|
color: #6b686a;
|
||||||
|
font-size: 11px;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 14px;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper a .level, div[data-test='additional-information'] .info-box.course .courses-wrapper a .level {
|
||||||
|
color: #2e29fc;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper a:after, div[data-test='additional-information'] .info-box.course .courses-wrapper a:after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12H19' stroke='%232D29FC' stroke-width='2'/%3E%3Cpath d='M12 5L19 12L12 19' stroke='%232D29FC' stroke-width='2'/%3E%3C/svg%3E");
|
||||||
|
background-size: contain;
|
||||||
|
background-position: center;
|
||||||
|
right: 15px;
|
||||||
|
bottom: 15px;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper a:hover, div[data-test='additional-information'] .info-box.course .courses-wrapper a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.fr-view .info-box, div[data-test='additional-information'] .info-box {
|
||||||
|
padding: 20px 20px 20px 64px;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources .resource-blocks, div[data-test='additional-information'] .info-box.resources .resource-blocks {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources .resource-blocks a, div[data-test='additional-information'] .info-box.resources .resource-blocks a {
|
||||||
|
margin: 0 10px;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources .resource-blocks a:first-child, div[data-test='additional-information'] .info-box.resources .resource-blocks a:first-child {
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.resources .resource-blocks a:last-child, div[data-test='additional-information'] .info-box.resources .resource-blocks a:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper, div[data-test='additional-information'] .info-box.course .courses-wrapper {
|
||||||
|
margin-left: -10px;
|
||||||
|
margin-right: -10px;
|
||||||
|
}
|
||||||
|
.fr-view .info-box.course .courses-wrapper a, div[data-test='additional-information'] .info-box.course .courses-wrapper a {
|
||||||
|
margin: 0 10px 20px;
|
||||||
|
width: calc(50% - 20px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
window.addEventListener("DOMContentLoaded", () => {
|
||||||
|
handleAccordions()
|
||||||
|
|
||||||
|
window.Northpass.subscribe("activityRender", (data) => {
|
||||||
|
handleAccordions()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
function handleAccordions() {
|
||||||
|
if (
|
||||||
|
document.querySelectorAll(".accordion").length > 0 &&
|
||||||
|
document.querySelectorAll(".accordion-panel").length > 0
|
||||||
|
) {
|
||||||
|
var acc = document.getElementsByClassName("accordion");
|
||||||
|
toggleAccordions(acc);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggleAccordions(acc) {
|
||||||
|
var i;
|
||||||
|
for (i = 0; i < acc.length; i++) {
|
||||||
|
acc[i].addEventListener("click", function () {
|
||||||
|
this.classList.toggle("active");
|
||||||
|
var panel = this.nextElementSibling;
|
||||||
|
if (panel.style.maxHeight) {
|
||||||
|
panel.style.maxHeight = null;
|
||||||
|
} else {
|
||||||
|
panel.style.maxHeight = panel.scrollHeight + "px";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@ -219,28 +219,29 @@ Told him about embedding support articles.
|
|||||||
|
|
||||||
### Big Sync with Hande, Dirk, and Sushant
|
### Big Sync with Hande, Dirk, and Sushant
|
||||||
|
|
||||||
* Accredible's "Shared on LinkedIn" button: https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fwww.credential.net%2Fd9c470f9-5726-4ebe-9106-5ee2a325a0c6
|
- Accredible's "Shared on LinkedIn" button: <https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fwww.credential.net%2Fd9c470f9-5726-4ebe-9106-5ee2a325a0c6>
|
||||||
* Workato Link for DataSnipper Hubspot: webhooks.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/datasnipper-hubspot-flow
|
- Workato Link for DataSnipper Hubspot: webhooks.workato.com/webhooks/rest/bd1a1eb7-7e79-4208-a1db-8e9c7440bcc9/datasnipper-hubspot-flow
|
||||||
|
|
||||||
## 11/09/2023
|
## 11/09/2023
|
||||||
|
|
||||||
### Hande, Dirk, follow up questions
|
### Hande, Dirk, follow up questions
|
||||||
|
|
||||||
* A few remaining questions from Dirk to "move forward"
|
- A few remaining questions from Dirk to "move forward"
|
||||||
* Not happy that LPs are for admins only
|
- Not happy that LPs are for admins only
|
||||||
* Ideally, we will get the Hubspot automation setup for client groups
|
- Ideally, we will get the Hubspot automation setup for client groups
|
||||||
* However, some CSMs will need to come in and make some edits
|
- However, some CSMs will need to come in and make some edits
|
||||||
* Admins seem a bit overzealous
|
- Admins seem a bit overzealous
|
||||||
TODO: Send Hande product roadmap items, communities, product updates
|
TODO: Send Hande product roadmap items, communities, product updates
|
||||||
TODO: Test archived courses URLs and if we get a 404 or 302.
|
TODO: Test archived courses URLs and if we get a 404 or 302.
|
||||||
|
|
||||||
Action Items:
|
Action Items:
|
||||||
* Auto group creation and assignment of Learning Paths via API.
|
|
||||||
* Ask Sushant for payload, but they also temporarily have the Hubspot conversion team.
|
- Auto group creation and assignment of Learning Paths via API.
|
||||||
* Want to run messaging out of Hubspot, but it's not clear how Hubspot shows who is/isn't enrolled.
|
- Ask Sushant for payload, but they also temporarily have the Hubspot conversion team.
|
||||||
* TODO: Check with partners team for Hubspot logs and why progress isn't being sent to Hubspot. Dirk & Audit course.
|
- Want to run messaging out of Hubspot, but it's not clear how Hubspot shows who is/isn't enrolled.
|
||||||
* Can the integration clean up old courses in Hubspot properties?
|
- TODO: Check with partners team for Hubspot logs and why progress isn't being sent to Hubspot. Dirk & Audit course.
|
||||||
* Hande wants to send email when someone is signed up to an LP. What does Hubspot data look like?
|
- Can the integration clean up old courses in Hubspot properties?
|
||||||
* Email 1: Access to Learning Path
|
- Hande wants to send email when someone is signed up to an LP. What does Hubspot data look like?
|
||||||
* Email 2: Inactivity Nudge
|
- Email 1: Access to Learning Path
|
||||||
* Email 3: Badge/Course completion
|
- Email 2: Inactivity Nudge
|
||||||
|
- Email 3: Badge/Course completion
|
||||||
|
|||||||
15
CustomerNotes/DataSnipper/hubspot-payload.json
Normal file
15
CustomerNotes/DataSnipper/hubspot-payload.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"payload": {
|
||||||
|
"email": "sushant.raj@datasnipper.com",
|
||||||
|
"company": "Datasnipper",
|
||||||
|
"package": "test1",
|
||||||
|
"segment": "test1",
|
||||||
|
"industry": "test1",
|
||||||
|
"full_name": null,
|
||||||
|
"health_category": "test1",
|
||||||
|
"contract_expires": "test1",
|
||||||
|
"onboarding_stage": "test1",
|
||||||
|
"onboarding_end_date": "test1",
|
||||||
|
},
|
||||||
|
"params": {},
|
||||||
|
}
|
||||||
@ -453,7 +453,6 @@ House keeping:
|
|||||||
* Core Onboarding - November 6th to see new enrollments.
|
* Core Onboarding - November 6th to see new enrollments.
|
||||||
* Content isn't done yet - Buyer Intent, Content Onboarding
|
* Content isn't done yet - Buyer Intent, Content Onboarding
|
||||||
|
|
||||||
|
|
||||||
## 11/06/2023
|
## 11/06/2023
|
||||||
|
|
||||||
### Numbers for Certs
|
### Numbers for Certs
|
||||||
@ -467,3 +466,13 @@ Katlin to present to this to Senior Leadership Team (SLT)
|
|||||||
Exciting news about metrics - Enrollments in G2U wasn't in their system.
|
Exciting news about metrics - Enrollments in G2U wasn't in their system.
|
||||||
But they want to start tracking churn and G2U progress/completions.
|
But they want to start tracking churn and G2U progress/completions.
|
||||||
Erin to chat with Data team about other webhooks and data into their system (Looker/SFDC)
|
Erin to chat with Data team about other webhooks and data into their system (Looker/SFDC)
|
||||||
|
|
||||||
|
## 11/15/2023
|
||||||
|
|
||||||
|
### Minor Updates
|
||||||
|
|
||||||
|
TODO: Send new cert to partners team with new language - Core to Foundations
|
||||||
|
TODO: Update sectors in DNS records for sender mail.
|
||||||
|
|
||||||
|
Certs were 146% over goal.
|
||||||
|
Certification push in January
|
||||||
|
|||||||
@ -907,3 +907,17 @@ curl --location --request POST 'https://firebasedynamiclinks.googleapis.com/v1/s
|
|||||||
}
|
}
|
||||||
}'
|
}'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## 11/15/2023
|
||||||
|
|
||||||
|
### Tech Call - Analytics
|
||||||
|
|
||||||
|
* Ask Rob to follow up on the slack channel and API delays.
|
||||||
|
* Other topic: MyMetrics - Rob was proposing a new API
|
||||||
|
* Slight change in the requirement
|
||||||
|
* If someone clicks on the link, they should be directed to the course.
|
||||||
|
* Scope for Q4 is to just show 1 link in the MyMetrics page and that will go the course.
|
||||||
|
* They will _only_ be releasing the overview link.
|
||||||
|
* This will go to a course.
|
||||||
|
|
||||||
|
Faisal UUID: 518512cd-c43e-4ed2-b9ed-0a7719ad947f
|
||||||
|
|||||||
@ -17,3 +17,4 @@ BIGIDEAS = "mgGWRtmhebC9xulTXeSohVtop"
|
|||||||
ZENJOB = "LIXqtHXEqcXHyN0EtezngnpzA"
|
ZENJOB = "LIXqtHXEqcXHyN0EtezngnpzA"
|
||||||
DATASNIPPER = "098Odf9CIkk4aQA1lW7tsa9k8"
|
DATASNIPPER = "098Odf9CIkk4aQA1lW7tsa9k8"
|
||||||
CHUBB = "m6ZEBesXzpWx2vmp11rEHxrMY"
|
CHUBB = "m6ZEBesXzpWx2vmp11rEHxrMY"
|
||||||
|
BIRCHSTREET = "WpMV3jF4q9Om5FjUsrzZifduE"
|
||||||
|
|||||||
15
Scripts/json-test.json
Normal file
15
Scripts/json-test.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{ "data": [ { "attributes": { "created_at": "2023-11-09T16:14:34Z",
|
||||||
|
"group_enrollment_link": "https://birchstreet.northpass.com/g/b8ae0c7ff0f4bb584c7c2fa387922d25b4180678",
|
||||||
|
"membership_count": 0,
|
||||||
|
"memberships_count": 0,
|
||||||
|
"name": "169",
|
||||||
|
"updated_at": "2023-11-09T16:14:34Z"},
|
||||||
|
"id": "ae8808e9-eea5-4ccc-903f-3c142d287591",
|
||||||
|
"links": { "memberships": "https://app.northpass.com/groups/ae8808e9-eea5-4ccc-903f-3c142d287591/memberships",
|
||||||
|
"self": { "href": "https://api.northpass.com/v1/groups/ae8808e9-eea5-4ccc-903f-3c142d287591",
|
||||||
|
"methods": ["get", "delete"]},
|
||||||
|
"teaching": { "href": "https://app.northpass.com/groups/ae8808e9-eea5-4ccc-903f-3c142d287591",
|
||||||
|
"methods": ["get", "put"]}},
|
||||||
|
"type": "groups"}],
|
||||||
|
"links": { "self": "https://api.northpass.com/v1/groups?filter%5Bname%5D%5Bcont%5D=169"}}
|
||||||
|
|
||||||
Reference in New Issue
Block a user