abandoned-orders
3 years ago
bumps
3 years ago
cancellation-insights
3 years ago
coupons
3 years ago
customers
3 years ago
invoices
3 years ago
licenses
3 years ago
notices
2 years ago
onboarding
3 years ago
orders
2 years ago
product-groups
3 years ago
products
3 years ago
subscriptions
2 years ago
upgrade-paths
3 years ago
advanced.php
3 years ago
coming-soon.php
3 years ago
connection-invalid.php
3 years ago
connection.php
3 years ago
denied.php
3 years ago
plugin.php
3 years ago
settings-page.php
3 years ago
settings.php
3 years ago
store.php
3 years ago
user-profile.php
3 years ago
coming-soon.php
56 lines
| 1 | <style> |
| 2 | #wpwrap { |
| 3 | background: var(--sc-color-gray-50); |
| 4 | } |
| 5 | |
| 6 | .wrap { |
| 7 | display: grid; |
| 8 | height: calc(100vh - 32px); |
| 9 | } |
| 10 | |
| 11 | .sc-container { |
| 12 | margin: auto; |
| 13 | max-width: 500px; |
| 14 | padding: 2rem; |
| 15 | } |
| 16 | |
| 17 | .sc-section-heading { |
| 18 | margin-bottom: 0.5rem; |
| 19 | display: flex; |
| 20 | align-items: center; |
| 21 | justify-content: space-between; |
| 22 | /* border-bottom: 1px solid rgba(229, 231, 235, 1); */ |
| 23 | /* padding-bottom: 1rem; */ |
| 24 | } |
| 25 | |
| 26 | .sc-section-heading h3 { |
| 27 | margin: 0; |
| 28 | overflow: hidden; |
| 29 | text-overflow: ellipsis; |
| 30 | white-space: nowrap; |
| 31 | font-size: 1.25rem; |
| 32 | line-height: 1.75rem; |
| 33 | font-weight: 600; |
| 34 | color: rgba(17, 24, 39, 1); |
| 35 | display: flex; |
| 36 | align-items: center; |
| 37 | gap: 0.5em; |
| 38 | color: var(--sc-color-gray-900); |
| 39 | } |
| 40 | </style> |
| 41 | |
| 42 | <div class="wrap"> |
| 43 | <div class="sc-container"> |
| 44 | <sc-dashboard-module> |
| 45 | <sc-card> |
| 46 | <sc-empty icon="shopping-bag"> |
| 47 | <sc-text style="--font-size: var(--sc-font-size-x-large); --line-height: var(--sc-line-height-normal); color: var(--sc-color-gray-900)"> |
| 48 | <?php esc_html_e( 'Coming soon...', 'surecart' ); ?> |
| 49 | </sc-text> |
| 50 | <?php esc_html_e( 'We are currently working on our Pro features. Please check back once we release new revenue and time saving features.', 'surecart' ); ?> |
| 51 | </sc-empty> |
| 52 | </sc-card> |
| 53 | </sc-dashboard-module> |
| 54 | </div> |
| 55 | </div> |
| 56 |