delete_async_request(); delete_option($pluginManagerInstance->get_option_name('review-download-inprogress')); delete_option($pluginManagerInstance->get_option_name('review-download-request-id')); delete_option($pluginManagerInstance->get_option_name('review-manual-download')); delete_option($pluginManagerInstance->get_option_name('page-details')); delete_option($pluginManagerInstance->get_option_name('review-content')); delete_option($pluginManagerInstance->get_option_name('css-content')); if (is_file($pluginManagerInstance->getCssFile())) { wp_delete_file($pluginManagerInstance->getCssFile()); } if ($settingsDelete) { delete_option($pluginManagerInstance->get_option_name('style-id')); delete_option($pluginManagerInstance->get_option_name('scss-set')); delete_option($pluginManagerInstance->get_option_name('filter')); delete_option($pluginManagerInstance->get_option_name('lang')); delete_option($pluginManagerInstance->get_option_name('dateformat')); delete_option($pluginManagerInstance->get_option_name('nameformat')); delete_option($pluginManagerInstance->get_option_name('no-rating-text')); delete_option($pluginManagerInstance->get_option_name('verified-icon')); delete_option($pluginManagerInstance->get_option_name('enable-animation')); delete_option($pluginManagerInstance->get_option_name('show-arrows')); delete_option($pluginManagerInstance->get_option_name('show-header-button')); delete_option($pluginManagerInstance->get_option_name('reviews-load-more')); delete_option($pluginManagerInstance->get_option_name('show-reviewers-photo')); delete_option($pluginManagerInstance->get_option_name('widget-setted-up')); delete_option($pluginManagerInstance->get_option_name('show-review-replies')); delete_option($pluginManagerInstance->get_option_name('verified-by-trustindex')); } $wpdb->query($wpdb->prepare('TRUNCATE %i', $pluginManagerInstance->get_tablename('reviews'))); $pluginManagerInstance->setNotificationParam('not-using-no-connection', 'active', true); $pluginManagerInstance->setNotificationParam('not-using-no-connection', 'timestamp', time() + 86400); $pluginManagerInstance->setNotificationParam('not-using-no-widget', 'active', false); } function trustindex_plugin_change_step($step = 5) { global $pluginManagerInstance; if ($step < 5) { $optionsToDelete = [ 'widget-setted-up', 'align', 'review-text-mode', 'verified-icon', 'enable-animation', 'no-rating-text', 'disable-font', 'show-reviewers-photo', 'show-logos', 'show-stars', 'footer-filter-text', 'top-rated-type', 'top-rated-date', 'show-arrows', 'show-header-button', 'reviews-load-more', 'dateformat', 'nameformat', 'show-review-replies', 'verified-by-trustindex', 'fomo-open', 'fomo-link', 'fomo-border', 'fomo-arrow', 'fomo-icon', 'fomo-color', 'fomo-icon-background', 'fomo-margin', 'fomo-title', 'fomo-text', 'fomo-url', 'fomo-day', 'fomo-hide-count', ]; foreach ($optionsToDelete as $name) { delete_option($pluginManagerInstance->get_option_name($name)); } $pluginManagerInstance->emptyViews(); } if ($step < 4) { delete_option($pluginManagerInstance->get_option_name('scss-set')); } if ($step < 3) { delete_option($pluginManagerInstance->get_option_name('style-id')); } if ($step < 2) { trustindex_plugin_disconnect_page(); } } if ($ti_command === 'save-page') { check_admin_referer('ti-save-page'); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized $pageDetails = isset($_POST['page_details']) ? json_decode(wp_unslash($_POST['page_details']), true) : null; $reviewDownload = isset($_POST['review_download']) ? sanitize_text_field(wp_unslash($_POST['review_download'])) : 0; if ($pageDetails['name']) { $pageDetails['name'] = json_encode($pageDetails['name']); } $pluginManagerInstance->setNotificationParam('not-using-no-connection', 'active', false); $pluginManagerInstance->setNotificationParam('not-using-no-widget', 'active', true); $pluginManagerInstance->setNotificationParam('not-using-no-widget', 'timestamp', time() + (2 * 3600)); $tableName = $pluginManagerInstance->get_tablename('reviews'); $wpdb->query($wpdb->prepare('TRUNCATE %i', $tableName)); $reviews = null; if (isset($pageDetails['reviews'])) { $reviews = $pageDetails['reviews']; unset($pageDetails['reviews']); } $requestId = null; if (isset($pageDetails['request_id'])) { $requestId = $pageDetails['request_id']; unset($pageDetails['request_id']); } else if (isset($_REQUEST['review_request_id'])) { $requestId = sanitize_text_field(wp_unslash($_REQUEST['review_request_id'])); } if ($requestId) { update_option($pluginManagerInstance->get_option_name('review-download-request-id'), $requestId, false); } $manualDownload = 0; if (isset($pageDetails['manual_download'])) { $manualDownload = (int)$pageDetails['manual_download']; unset($pageDetails['manual_download']); } else if (isset($_REQUEST['manual_download'])) { $manualDownload = (int)$_REQUEST['manual_download']; } delete_option($pluginManagerInstance->get_option_name('review-download-token')); if ($reviewDownload) { update_option($pluginManagerInstance->get_option_name('review-download-inprogress'), $reviewDownload, false); update_option($pluginManagerInstance->get_option_name('review-manual-download'), $manualDownload, false); update_option($pluginManagerInstance->get_option_name('review-download-is-connecting'), 1, false); } else { delete_option($pluginManagerInstance->get_option_name('review-download-inprogress')); delete_option($pluginManagerInstance->get_option_name('review-manual-download')); delete_option($pluginManagerInstance->get_option_name('review-download-is-connecting')); } if (is_array($reviews)) { foreach ($reviews as $row) { $date = isset($row['created_at']) ? $row['created_at'] : (isset($row['date']) ? $row['date'] : ''); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery $wpdb->insert($tableName, [ 'user' => $row['reviewer']['name'], 'user_photo' => $row['reviewer']['avatar_url'], 'text' => $row['text'], 'rating' => $row['rating'] ? $row['rating'] : 5, 'date' => substr($date, 0, 10), 'reviewId' => isset($row['id']) ? $row['id'] : null, 'reply' => isset($row['reply']) ? $row['reply'] : "" ]); } update_option($pluginManagerInstance->get_option_name('download-timestamp'), time() + (86400 * 10), false); delete_option($pluginManagerInstance->get_option_name('review-download-inprogress')); delete_option($pluginManagerInstance->get_option_name('review-manual-download')); update_option($pluginManagerInstance->get_option_name('review-download-modal'), 0, false); } update_option($pluginManagerInstance->get_option_name('page-details'), $pageDetails, false); $GLOBALS['wp_object_cache']->delete( $pluginManagerInstance->get_option_name('page-details'), 'options' ); $lang = strtolower(substr(get_locale(), 0, 2)); if (!isset($pluginManager::$widget_languages[ $lang ])) { $lang = 'en'; } update_option($pluginManagerInstance->get_option_name('lang'), $lang, false); header('Location: admin.php?page='.esc_attr($_page).'&tab=free-widget-configurator'); exit; } else if ($ti_command === 'delete-page') { check_admin_referer('ti-delete-page'); trustindex_plugin_disconnect_page(); header('Location: admin.php?page='.esc_attr($_page).'&tab=free-widget-configurator'); exit; } else if ($ti_command === 'save-style') { check_admin_referer('ti-save-style'); $styleId = isset($_REQUEST['style_id']) ? (int)$_REQUEST['style_id'] : 4; if (14 !== $styleId) { update_option($pluginManagerInstance->get_option_name('style-id'), $styleId, false); delete_option($pluginManagerInstance->get_option_name('review-content')); trustindex_plugin_change_step(3); if (in_array($pluginManager::$widget_templates['templates'][$styleId]['type'], ['floating', 'fomo'])) { $pluginManagerInstance->noreg_save_css(); } } if (isset($_GET['style_id'])) { header('Location: admin.php?page='.esc_attr($_page).'&tab=free-widget-configurator'); } exit; } else if ($ti_command === 'save-set') { check_admin_referer('ti-save-set'); $setId = isset($_REQUEST['set_id']) ? sanitize_text_field(wp_unslash($_REQUEST['set_id'])) : 'light-background'; update_option($pluginManagerInstance->get_option_name('scss-set'), $setId, false); trustindex_plugin_change_step(4); $pluginManagerInstance->noreg_save_css(true); if (isset($_GET['verified_by_trustindex'])) { update_option($pluginManagerInstance->get_option_name('verified-by-trustindex'), 1, false); } if (isset($_GET['set_id'])) { header('Location: admin.php?page='.esc_attr($_page).'&tab=free-widget-configurator'); } exit; } else if ($ti_command === 'save-filter-stars') { check_admin_referer('ti-save-filter-stars'); $filter = $pluginManagerInstance->getWidgetOption('filter'); $filter['stars'] = isset($_POST['stars']) ? explode(',', sanitize_text_field(wp_unslash($_POST['stars']))) : $pluginManagerInstance->getWidgetOption('filter', false, true)['stars']; update_option($pluginManagerInstance->get_option_name('filter'), $filter, false); exit; } else if ($ti_command === 'save-language') { check_admin_referer('ti-save-language'); $value = isset($_POST['lang']) ? sanitize_text_field(wp_unslash($_POST['lang'])) : 'en'; update_option($pluginManagerInstance->get_option_name('lang'), $value, false); delete_option($pluginManagerInstance->get_option_name('review-content')); if ($pluginManagerInstance->isRtlLanguage()) { update_option($pluginManagerInstance->get_option_name('align'), 'right', false); } exit; } else if ($ti_command === 'save-dateformat') { check_admin_referer('ti-save-dateformat'); $value = isset($_POST['dateformat']) ? sanitize_text_field(wp_unslash($_POST['dateformat'])) : ''; update_option($pluginManagerInstance->get_option_name('dateformat'), $value, false); exit; } else if ($ti_command === 'save-nameformat') { check_admin_referer('ti-save-nameformat'); $value = isset($_POST['nameformat']) ? sanitize_text_field(wp_unslash($_POST['nameformat'])) : ''; update_option($pluginManagerInstance->get_option_name('nameformat'), $value, false); exit; } else if ($ti_command === 'save-top-rated-type') { check_admin_referer('ti-save-top-rated-type'); $value = isset($_POST['type']) ? sanitize_text_field(wp_unslash($_POST['type'])) : ''; update_option($pluginManagerInstance->get_option_name('top-rated-type'), $value, false); exit; } else if ($ti_command === 'save-top-rated-date') { check_admin_referer('ti-save-top-rated-date'); $value = isset($_POST['date']) ? sanitize_text_field(wp_unslash($_POST['date'])) : ''; update_option($pluginManagerInstance->get_option_name('top-rated-date'), $value, false); exit; } else if ($ti_command === 'save-options') { $scssSet = get_option($pluginManagerInstance->get_option_name('scss-set')); check_admin_referer('ti-save-options'); $r = 0; if (isset($_POST['verified-icon'])) { $r = sanitize_text_field(wp_unslash($_POST['verified-icon'])); } update_option($pluginManagerInstance->get_option_name('verified-icon'), $r, false); $r = 1; if (isset($_POST['enable-animation'])) { $r = sanitize_text_field(wp_unslash($_POST['enable-animation'])); } update_option($pluginManagerInstance->get_option_name('enable-animation'), $r, false); $r = 1; if (isset($_POST['show-arrows'])) { $r = sanitize_text_field(wp_unslash($_POST['show-arrows'])); } update_option($pluginManagerInstance->get_option_name('show-arrows'), $r, false); $r = 1; if (isset($_POST['show-header-button'])) { $r = sanitize_text_field(wp_unslash($_POST['show-header-button'])); } update_option($pluginManagerInstance->get_option_name('show-header-button'), $r, false); $r = 1; if (isset($_POST['reviews-load-more'])) { $r = sanitize_text_field(wp_unslash($_POST['reviews-load-more'])); } update_option($pluginManagerInstance->get_option_name('reviews-load-more'), $r, false); $r = 1; if (isset($_POST['show-reviewers-photo'])) { $r = sanitize_text_field(wp_unslash($_POST['show-reviewers-photo'])); } update_option($pluginManagerInstance->get_option_name('show-reviewers-photo'), $r, false); $r = 0; if (isset($_POST['no-rating-text'])) { $r = sanitize_text_field(wp_unslash($_POST['no-rating-text'])); } update_option($pluginManagerInstance->get_option_name('no-rating-text'), $r, false); $r = 0; if (isset($_POST['disable-font'])) { $r = sanitize_text_field(wp_unslash($_POST['disable-font'])); } update_option($pluginManagerInstance->get_option_name('disable-font'), $r, false); $r = 1; if (isset($_POST['show-logos'])) { $r = sanitize_text_field(wp_unslash($_POST['show-logos'])); } update_option($pluginManagerInstance->get_option_name('show-logos'), $r, false); $r = 1; if (isset($_POST['show-stars'])) { $r = sanitize_text_field(wp_unslash($_POST['show-stars'])); } update_option($pluginManagerInstance->get_option_name('show-stars'), $r, false); $r = 0; if (isset($_POST['footer-filter-text'])) { $r = sanitize_text_field(wp_unslash($_POST['footer-filter-text'])); } update_option($pluginManagerInstance->get_option_name('footer-filter-text'), $r, false); $r = 0; if (isset($_POST['show-review-replies'])) { $r = sanitize_text_field(wp_unslash($_POST['show-review-replies'])); } update_option($pluginManagerInstance->get_option_name('show-review-replies'), $r, false); $filter = $pluginManagerInstance->getWidgetOption('filter'); $filter['only-ratings'] = isset($_POST['only-ratings']) ? (bool)$_POST['only-ratings'] : $pluginManagerInstance->getWidgetOption('filter', false, true)['only-ratings']; update_option($pluginManagerInstance->get_option_name('filter'), $filter, false); $r = 1; if (isset($_POST['fomo-open'])) { $r = sanitize_text_field(wp_unslash($_POST['fomo-open'])); } update_option($pluginManagerInstance->get_option_name('fomo-open'), $r, false); $r = 0; if (isset($_POST['fomo-link'])) { $r = sanitize_text_field(wp_unslash($_POST['fomo-link'])); } update_option($pluginManagerInstance->get_option_name('fomo-link'), $r, false); $r = 1; if (isset($_POST['fomo-border'])) { $r = sanitize_text_field(wp_unslash($_POST['fomo-border'])); } update_option($pluginManagerInstance->get_option_name('fomo-border'), $r, false); $r = 1; if (isset($_POST['fomo-arrow'])) { $r = sanitize_text_field(wp_unslash($_POST['fomo-arrow'])); } update_option($pluginManagerInstance->get_option_name('fomo-arrow'), $r, false); $r = 0; if (isset($_POST['fomo-icon-background'])) { $r = sanitize_text_field(wp_unslash($_POST['fomo-icon-background'])); } update_option($pluginManagerInstance->get_option_name('fomo-icon-background'), $r, false); exit; } else if ($ti_command === 'save-align') { check_admin_referer('ti-save-align'); $value = isset($_POST['align']) ? sanitize_text_field(wp_unslash($_POST['align'])) : ''; update_option($pluginManagerInstance->get_option_name('align'), $value, false); exit; } else if ($ti_command === 'save-fomo-icon') { check_admin_referer('ti-save-fomo-icon'); $value = isset($_POST['fomo-icon']) ? sanitize_text_field(wp_unslash($_POST['fomo-icon'])) : ''; update_option($pluginManagerInstance->get_option_name('fomo-icon'), $value, false); if ('hide' === $value) { update_option($pluginManagerInstance->get_option_name('fomo-open'), 1, false); } exit; } else if ($ti_command === 'save-fomo-color') { check_admin_referer('ti-save-fomo-color'); $value = isset($_POST['fomo-color']) ? sanitize_text_field(wp_unslash($_POST['fomo-color'])) : ''; update_option($pluginManagerInstance->get_option_name('fomo-color'), $value, false); exit; } else if ($ti_command === 'save-fomo-margin') { check_admin_referer('ti-save-fomo-margin'); $value = isset($_POST['fomo-margin']) ? sanitize_text_field(wp_unslash($_POST['fomo-margin'])) : ''; update_option($pluginManagerInstance->get_option_name('fomo-margin'), $value, false); exit; } else if ($ti_command === 'save-fomo-title') { check_admin_referer('ti-save-fomo-title'); $value = isset($_POST['fomo-title']) ? sanitize_text_field(wp_unslash($_POST['fomo-title'])) : ''; update_option($pluginManagerInstance->get_option_name('fomo-title'), $value, false); exit; } else if ($ti_command === 'save-fomo-text') { check_admin_referer('ti-save-fomo-text'); $value = isset($_POST['fomo-text']) ? sanitize_text_field(wp_unslash($_POST['fomo-text'])) : ''; update_option($pluginManagerInstance->get_option_name('fomo-text'), $value, false); exit; } else if ($ti_command === 'save-fomo-url') { check_admin_referer('ti-save-fomo-url'); $value = isset($_POST['fomo-url']) ? sanitize_text_field(wp_unslash($_POST['fomo-url'])) : ''; if ($value) { update_option($pluginManagerInstance->get_option_name('fomo-url'), $value, false); } else { delete_option($pluginManagerInstance->get_option_name('fomo-url')); } exit; } else if ($ti_command === 'save-fomo-day') { check_admin_referer('ti-save-fomo-day'); $value = isset($_POST['fomo-day']) ? (int)sanitize_text_field(wp_unslash($_POST['fomo-day'])) : 0; update_option($pluginManagerInstance->get_option_name('fomo-day'), $value, false); exit; } else if ($ti_command === 'save-fomo-hide-count') { check_admin_referer('ti-save-fomo-hide-count'); $value = isset($_POST['fomo-hide-count']) ? (int)sanitize_text_field(wp_unslash($_POST['fomo-hide-count'])) : 0; update_option($pluginManagerInstance->get_option_name('fomo-hide-count'), $value, false); exit; } else if ($ti_command === 'save-review-text-mode') { check_admin_referer('ti-save-review-text-mode'); $value = isset($_POST['review_text_mode']) ? sanitize_text_field(wp_unslash($_POST['review_text_mode'])) : ''; update_option($pluginManagerInstance->get_option_name('review-text-mode'), $value, false); exit; } else if ($ti_command === 'save-verified-by-trustindex') { check_admin_referer('ti-save-verified-by-trustindex'); $value = isset($_POST['verified-by-trustindex']) ? sanitize_text_field(wp_unslash($_POST['verified-by-trustindex'])) : ''; update_option($pluginManagerInstance->get_option_name('verified-by-trustindex'), $value, false); exit; } else if ($ti_command === 'save-amp-notice-hide') { update_option($pluginManagerInstance->get_option_name('amp-hidden-notification'), 1, false); exit; } if (isset($_GET['recreate'])) { check_admin_referer('ti-recreate'); $pluginManagerInstance->uninstall(); $pluginManagerInstance->activate(); header('Location: admin.php?page='.esc_attr($_page).'&tab=free-widget-configurator'); exit; } if (isset($_GET['setup_widget'])) { check_admin_referer('ti-setup-widget'); update_option($pluginManagerInstance->get_option_name('widget-setted-up'), 1, false); header('Location: admin.php?page='.esc_attr($_page).'&tab=free-widget-configurator'); } $reviews = $pluginManagerInstance->getReviews(); $isReviewDownloadInProgress = $pluginManagerInstance->is_review_download_in_progress(); $styleId = (int)$pluginManagerInstance->getWidgetOption('style-id', true); $scssSet = $pluginManagerInstance->getWidgetOption('scss-set', true); $widgetSettedUp = $pluginManagerInstance->getWidgetOption('widget-setted-up'); if (!$pluginManagerInstance->is_noreg_linked()) { $styleId = null; $scssSet = null; $widgetSettedUp = null; } else { $pageDetails = $pluginManagerInstance->getPageDetails(); $isTopRatedBadge = $styleId ? $pluginManager::$widget_templates['templates'][$styleId]['is-top-rated-badge'] : false; if ($isTopRatedBadge) { $isTopRatedBadgeValid = isset($pageDetails['rating_score']) ? (float)$pageDetails['rating_score'] >= $pluginManager::$topRatedMinimumScore : false; } } wp_enqueue_style('trustindex-widget-preview-css', 'https://cdn.trustindex.io/assets/ti-preview-box.css', [], true); ?> is_noreg_linked()) { $stepDone = 1; } if ($stepDone >= 4 && $isTopRatedBadge && !$isTopRatedBadgeValid) { $stepDone = 3; } if (!$stepCurrent) { $stepCurrent = $stepDone + 1; } else if ($stepCurrent > ($stepDone + 1)) { $stepCurrent = $stepDone + 1; } include(plugin_dir_path(__FILE__) . '../include/step-list.php'); ?>
is_trustindex_connected()): ?>

'.__('Advanced', 'wp-reviews-plugin-for-google').''; /* translators: %s: Advanced tab link */ echo wp_kses_post(sprintf(__("You have connected your Trustindex account, so you can find premium functionality under the %s tab. You no longer need this tab unless you choose the limited but forever free mode.", 'wp-reviews-plugin-for-google'), $advancedTab)); ?>

get_option_name('amp-hidden-notification'), 0)): ?>

is_trustindex_connected()): ?> Trustindex admin

is_noreg_linked()): ?>
get_option_name('review-download-token')); if (!$reviewDownloadToken) { $reviewDownloadToken = wp_create_nonce('ti-noreg-connect-token'); update_option($pluginManagerInstance->get_option_name('review-download-token'), $reviewDownloadToken, false); } ?>

$ids): ?>
$template): ?> = $pluginManager::$topRatedMinimumScore : false; $fomoWidgetInvalid = in_array($id, [119, 120]) && (!isset($pageDetails['rating_numbers']) || !isset($pageDetails['rating_numbers_last'])); if (!isset($template['is-active']) || $template['is-active']): ?>
:



renderWidgetAdmin(true, false, ['style-id' => esc_attr($id), 'set-id' => esc_attr($set)]), $pluginManager::$allowedAttributesForWidget); ?>

isVerifiedByTrustindexAvailable(); foreach ($pluginManager::$widget_styles as $id => $style): ?>
:
renderWidgetAdmin(true, false, ['style-id' => esc_attr($styleId), 'set-id' => esc_attr($id)]), $pluginManager::$allowedAttributesForWidget); ?>
: -
renderWidgetAdmin(true, false, ['style-id' => esc_attr($styleId), 'set-id' => esc_attr($id), 'verified-by-trustindex' => true]), $pluginManager::$allowedAttributesForWidget); ?>



use in the widgets the Trustindex verified badge, the Universal Symbol of Trust. With the verified badge you can build more trust, and sell more!', 'wp-reviews-plugin-for-google')); ?>


: :
renderWidgetAdmin(true), $pluginManager::$allowedAttributesForWidget); ?>
getWidgetOption('filter'); ?>
isVerifiedByTrustindexAvailable()): ?>
getWidgetOption('verified-by-trustindex'); ?>
isLayoutHasReviews()): ?>
isLayoutHasReviews()): ?>
isFomoWidget()): ?>
getWidgetOption('top-rated-date'); ?>
isFomoWidget()): ?> isFomoCustomWidget()): ?>
if you want to highlight it', 'wp-reviews-plugin-for-google'))); ?>
if you want to highlight it', 'wp-reviews-plugin-for-google'))); ?>
getFomoSubtitleTextChoices()): ?>
isFomoHideCountAvailable()): ?>
isLayoutHasReviews()): ?> checked /> getWidgetOption('no-rating-text')): ?> checked /> isLayoutHasReviews() && (!in_array($widgetType, ['floating']) || $styleId === 53)): ?> getWidgetOption('footer-filter-text')): ?> checked /> isLayoutHasReviews()): ?> getWidgetOption('show-review-replies')): ?> checked /> getWidgetOption('show-header-button')): ?> checked /> getWidgetOption('reviews-load-more')): ?> checked /> isLayoutHasReviews() && !in_array($styleId, [53,54])): ?> getWidgetOption('verified-icon')): ?> checked /> getWidgetOption('show-arrows')): ?> checked /> isLayoutHasReviews() && $styleId != 52): ?> getWidgetOption('show-reviewers-photo')): ?> checked /> getWidgetOption('enable-animation')): ?> checked /> isFomoWidget()): ?> getWidgetOption('disable-font')): ?> checked /> isLayoutHasReviews()): ?> getWidgetOption('show-logos')): ?> checked /> is_ten_scale_rating_platform()): ?> getWidgetOption('show-stars')): ?> checked /> isFomoWidget()): ?> getWidgetOption('fomo-icon')): ?> getWidgetOption('fomo-open')): ?> checked /> getWidgetOption('fomo-border')): ?> checked /> getWidgetOption('fomo-icon') && 'platform-images' !== $pluginManagerInstance->getWidgetOption('fomo-icon')): ?> getWidgetOption('fomo-icon-background')): ?> checked /> getWidgetOption('fomo-link')): ?> checked /> getWidgetOption('fomo-link')): ?> getWidgetOption('fomo-arrow')): ?> checked />
getWidgetOption('fomo-link') && $pluginManagerInstance->isFomoCustomWidget()): ?>

get_option_name('rate-us-feedback'), 0)): ?>