Skip to content

Commit e247745

Browse files
Merge branch 'dev' of https://github.com/scheduleonce/help-center into dev
2 parents fa4e268 + 929dbbb commit e247745

182 files changed

Lines changed: 625 additions & 236 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Documentation Issue
3+
about: Report an issue or requested fix for help center documentation
4+
title: ''
5+
labels: 'documentation'
6+
assignees: ''
7+
---
8+
9+
**Article URL / Path:**
10+
<!-- Paste the help center URL or file path here -->
11+
12+
**Problem Description:**
13+
<!-- Describe clearly what is broken or needs to be changed -->
14+
15+
**Expected Behavior / Fix:**
16+
<!-- Describe what the correct link, text, or behavior should be -->
17+
18+
**Screenshots / Additional Context:**
19+
<!-- Add screenshots or additional context if relevant -->

astro.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ export default defineConfig({
3939
"/scheduleonce/developers/client-side-api/embedded-booking-calendar-events/",
4040
"/contact-management/how-oncehub-associates-activities-with-contact":
4141
"/contact-management/how-contacts-are-identified-in-oncehub/",
42+
"/scheduleonce/account-integrations/api/":
43+
"/scheduleonce/account-integrations/automation/api/",
44+
"/scheduleonce/account-integrations/api/custom-integrations-with-oncehub-api/":
45+
"/scheduleonce/account-integrations/automation/api/custom-integrations-with-oncehub-api/",
4246
},
4347
image: {
4448
service: passthroughImageService(),
Lines changed: 4 additions & 4 deletions
Loading

src/components/Header.astro

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,28 @@ const switcher = productSwitcherLinks(path);
108108
class="header-nav-link">Videos</a
109109
>
110110
<a href="/whats-new" class="header-nav-link">What&#8217;s New</a>
111-
<a href="https://oncehub.com" class="header-nav-link">Website</a>
112-
<a href="https://app.oncehub.com" target="_blank">Sign In</a>
111+
{
112+
isHomepage(path) && (
113+
<>
114+
<a href="https://oncehub.com" target="_blank" class="header-nav-link">
115+
Website
116+
</a>
117+
<a
118+
href="https://app.oncehub.com"
119+
target="_blank"
120+
class="header-nav-link"
121+
>
122+
Sign In
123+
</a>
124+
</>
125+
)
126+
}
113127
<ThemeSelect />
114128
</div>
115129
</div>
116-
117-
<TopicsBar />
130+
<div class="header-tabs">
131+
<TopicsBar />
132+
</div>
118133
<ChatbotScript />
119134

120135
<style>
@@ -251,6 +266,10 @@ const switcher = productSwitcherLinks(path);
251266
gap: 6px;
252267
}
253268

269+
.header-tabs {
270+
margin-inline: calc(-1 * var(--sl-content-pad-x, 1.5rem));
271+
}
272+
254273
/* ── Product switcher ── */
255274
.product-switcher {
256275
position: relative;

0 commit comments

Comments
 (0)