customizer.php
2 weeks ago
onboarding-wizard.php
2 weeks ago
select-feed.php
2 weeks ago
welcome.php
2 weeks ago
welcome.php
34 lines
| 1 | <div class="cff-fb-full-wrapper cff-fb-fs" v-if="viewsActive.pageScreen == 'welcome' && !iscustomizerScreen"> |
| 2 | <?php |
| 3 | |
| 4 | /** |
| 5 | * CFF Admin Notices |
| 6 | * |
| 7 | * @since 4.0 |
| 8 | */ |
| 9 | |
| 10 | do_action('cff_admin_notices'); |
| 11 | ?> |
| 12 | |
| 13 | <div class="cff-fb-wlcm-header cff-fb-fs"> |
| 14 | <h2>{{welcomeScreen.mainHeading}}</h2> |
| 15 | <div class="sb-positioning-wrap" v-bind:class="{ 'sb-onboarding-highlight' : viewsActive.onboardingStep === 1 }"> |
| 16 | <button type="button" class="cff-fb-btn cff-fb-btn-new cff-btn-orange" @click.prevent.default="! viewsActive.onboardingPopup ? switchScreen('pageScreen', 'selectFeed') : switchScreen('welcome')" :aria-label="genericText.addNew"> |
| 17 | <svg aria-hidden="true" width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 18 | <path d="M9.66537 5.66659H5.66536V9.66659H4.33203V5.66659H0.332031V4.33325H4.33203V0.333252H5.66536V4.33325H9.66537V5.66659Z" fill="white"/> |
| 19 | </svg> |
| 20 | <span>{{genericText.addNew}}</span> |
| 21 | </button> |
| 22 | </div> |
| 23 | </div> |
| 24 | <?php |
| 25 | include_once CFF_BUILDER_DIR . 'templates/sections/empty-state.php'; |
| 26 | include_once CFF_BUILDER_DIR . 'templates/sections/feeds-list.php'; |
| 27 | ?> |
| 28 | |
| 29 | <div v-if="licenseType == 'free'" class="cff-fb-fs"> |
| 30 | <?php |
| 31 | CustomFacebookFeed\CFF_View::render('sections.builder_footer_cta'); |
| 32 | ?> |
| 33 | </div> |
| 34 | </div> |