Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/custom-t.../inc/Builder
File: CTF_Feed_Builder.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Custom Twitter Feed Builder
[2] Fix | Delete
*
[3] Fix | Delete
* @since 2.0
[4] Fix | Delete
*/
[5] Fix | Delete
namespace TwitterFeed\Builder;
[6] Fix | Delete
[7] Fix | Delete
[8] Fix | Delete
use TwitterFeed\CTF_Feed_Locator;
[9] Fix | Delete
use TwitterFeed\CTF_Settings;
[10] Fix | Delete
use TwitterFeed\Builder\Tabs\CTF_Styling_Tab;
[11] Fix | Delete
use TwitterFeed\Builder\CTF_Feed_Saver;
[12] Fix | Delete
use TwitterFeed\V2\CtfOauthConnect;
[13] Fix | Delete
[14] Fix | Delete
class CTF_Feed_Builder {
[15] Fix | Delete
private static $instance;
[16] Fix | Delete
public static function instance() {
[17] Fix | Delete
if ( null === self::$instance) {
[18] Fix | Delete
require CTF_PLUGIN_DIR . 'vendor/autoload.php';
[19] Fix | Delete
self::$instance = new self();
[20] Fix | Delete
return self::$instance;
[21] Fix | Delete
[22] Fix | Delete
}
[23] Fix | Delete
}
[24] Fix | Delete
[25] Fix | Delete
[26] Fix | Delete
/**
[27] Fix | Delete
* Constructor.
[28] Fix | Delete
*
[29] Fix | Delete
* @since 2.0
[30] Fix | Delete
*/
[31] Fix | Delete
function __construct(){
[32] Fix | Delete
$this->init();
[33] Fix | Delete
}
[34] Fix | Delete
[35] Fix | Delete
/**
[36] Fix | Delete
* Init the Builder.
[37] Fix | Delete
*
[38] Fix | Delete
* @since 2.0
[39] Fix | Delete
*/
[40] Fix | Delete
function init(){
[41] Fix | Delete
if( is_admin() ){
[42] Fix | Delete
add_action('admin_menu', [$this, 'register_menu']);
[43] Fix | Delete
// add ajax listeners
[44] Fix | Delete
CTF_Feed_Saver_Manager::hooks();
[45] Fix | Delete
CTF_Feed_Builder::hooks();
[46] Fix | Delete
#echo json_encode(CTF_Feed_Saver::settings_defaults());
[47] Fix | Delete
[48] Fix | Delete
}
[49] Fix | Delete
}
[50] Fix | Delete
[51] Fix | Delete
/**
[52] Fix | Delete
* Mostly AJAX related hooks
[53] Fix | Delete
*
[54] Fix | Delete
* @since 2.0
[55] Fix | Delete
*/
[56] Fix | Delete
public static function hooks() {
[57] Fix | Delete
add_action( 'wp_ajax_ctf_dismiss_onboarding', array( 'TwitterFeed\Builder\CTF_Feed_Builder', 'after_dismiss_onboarding' ) );
[58] Fix | Delete
add_action( 'wp_ajax_ctf_other_plugins_modal', array( 'TwitterFeed\Builder\CTF_Feed_Builder', 'sb_other_plugins_modal' ) );
[59] Fix | Delete
}
[60] Fix | Delete
[61] Fix | Delete
/**
[62] Fix | Delete
* Check users capabilities and maybe nonce before AJAX actions
[63] Fix | Delete
*
[64] Fix | Delete
* @param $check_nonce
[65] Fix | Delete
* @param string $action
[66] Fix | Delete
*
[67] Fix | Delete
* @since 2.0.6
[68] Fix | Delete
*/
[69] Fix | Delete
public static function check_privilege( $check_nonce = false, $action = 'ctf-admin' ) {
[70] Fix | Delete
$cap = current_user_can( 'manage_twitter_feed_options' ) ? 'manage_twitter_feed_options' : 'manage_options';
[71] Fix | Delete
$cap = apply_filters( 'ctf_settings_pages_capability', $cap );
[72] Fix | Delete
[73] Fix | Delete
if ( ! current_user_can( $cap ) ) {
[74] Fix | Delete
wp_die ( 'You did not do this the right way!' );
[75] Fix | Delete
}
[76] Fix | Delete
[77] Fix | Delete
if ( $check_nonce ) {
[78] Fix | Delete
$nonce = ! empty( $_POST[ $check_nonce ] ) ? $_POST[ $check_nonce ] : false;
[79] Fix | Delete
[80] Fix | Delete
if ( ! wp_verify_nonce( $nonce, $action ) ) {
[81] Fix | Delete
wp_die ( 'You did not do this the right way!' );
[82] Fix | Delete
}
[83] Fix | Delete
}
[84] Fix | Delete
}
[85] Fix | Delete
[86] Fix | Delete
/**
[87] Fix | Delete
* Register Menu.
[88] Fix | Delete
*
[89] Fix | Delete
* @since 2.0
[90] Fix | Delete
*/
[91] Fix | Delete
function register_menu(){
[92] Fix | Delete
$cap = current_user_can( 'manage_twitter_feed_options' ) ? 'manage_twitter_feed_options' : 'manage_options';
[93] Fix | Delete
$cap = apply_filters( 'ctf_settings_pages_capability', $cap );
[94] Fix | Delete
[95] Fix | Delete
$feed_builder = add_submenu_page(
[96] Fix | Delete
'custom-twitter-feeds',
[97] Fix | Delete
__( 'All Feeds', 'custom-twitter-feeds' ),
[98] Fix | Delete
__( 'All Feeds', 'custom-twitter-feeds' ),
[99] Fix | Delete
$cap,
[100] Fix | Delete
'ctf-feed-builder',
[101] Fix | Delete
[$this, 'feed_builder'],
[102] Fix | Delete
0
[103] Fix | Delete
);
[104] Fix | Delete
add_action( 'load-' . $feed_builder, [$this,'builder_enqueue_admin_scripts']);
[105] Fix | Delete
}
[106] Fix | Delete
[107] Fix | Delete
/**
[108] Fix | Delete
* Enqueue Builder CSS & Script.
[109] Fix | Delete
*
[110] Fix | Delete
* Loads only for builder pages
[111] Fix | Delete
*
[112] Fix | Delete
* @since 2.0
[113] Fix | Delete
*/
[114] Fix | Delete
public function builder_enqueue_admin_scripts(){
[115] Fix | Delete
if(get_current_screen()):
[116] Fix | Delete
$screen = get_current_screen();
[117] Fix | Delete
if ( strpos($screen->id, 'ctf-feed-builder') !== false ) :
[118] Fix | Delete
[119] Fix | Delete
$installed_plugins = get_plugins();
[120] Fix | Delete
[121] Fix | Delete
$newly_retrieved_source_connection_data = [];
[122] Fix | Delete
$license_key = get_option( 'ctf_license_key', '' );
[123] Fix | Delete
$ctf_options = get_option( 'ctf_options', array() );
[124] Fix | Delete
[125] Fix | Delete
$active_extensions = [
[126] Fix | Delete
//Fake
[127] Fix | Delete
[
[128] Fix | Delete
'type' => 'feedLayout',
[129] Fix | Delete
'active' => false,
[130] Fix | Delete
'ids' => ['layout']
[131] Fix | Delete
],
[132] Fix | Delete
[
[133] Fix | Delete
'type' => 'advancedFilters',
[134] Fix | Delete
'active' => false,
[135] Fix | Delete
'ids' => ['includewords','excludewords','includeanyall','filterandor','excludeanyall','remove_by_id']
[136] Fix | Delete
],
[137] Fix | Delete
[
[138] Fix | Delete
'type' => 'mediaExtension',
[139] Fix | Delete
'active' => false,
[140] Fix | Delete
'ids' => ['include_media','include_retweeter','include_twittercards']
[141] Fix | Delete
],
[142] Fix | Delete
[
[143] Fix | Delete
'type' => 'autoscrollExtension',
[144] Fix | Delete
'active' => false,
[145] Fix | Delete
'ids' => ['autoscrolldistance']
[146] Fix | Delete
],
[147] Fix | Delete
[
[148] Fix | Delete
'type' => 'lightboxExtension',
[149] Fix | Delete
'active' => false,
[150] Fix | Delete
'ids' => ['disablelightbox']
[151] Fix | Delete
]
[152] Fix | Delete
[153] Fix | Delete
];
[154] Fix | Delete
[155] Fix | Delete
$upgrade_url = 'https://smashballoon.com/custom-twitter-feeds/demo?utm_campaign=twitter-free&utm_source=lite-upgrade-bar';
[156] Fix | Delete
[157] Fix | Delete
$ctf_builder = array(
[158] Fix | Delete
'ajax_handler' => admin_url( 'admin-ajax.php' ),
[159] Fix | Delete
'pluginType' => 'free',
[160] Fix | Delete
'activeExtensions' => $active_extensions,
[161] Fix | Delete
'builderUrl' => admin_url( 'admin.php?page=ctf-feed-builder' ),
[162] Fix | Delete
'nonce' => wp_create_nonce( 'ctf-admin' ),
[163] Fix | Delete
'upgradeUrl' => $upgrade_url,
[164] Fix | Delete
'pluginUrl' => trailingslashit( CTF_PLUGIN_URL ),
[165] Fix | Delete
'ctfRebrand' => ctf_should_rebrand_to_x(),
[166] Fix | Delete
'adminPostURL' => admin_url( 'post.php' ),
[167] Fix | Delete
'adminSettingsURL' => admin_url('admin.php?page=ctf-settings'),
[168] Fix | Delete
'widgetsPageURL' => admin_url( 'widgets.php' ),
[169] Fix | Delete
'supportPageUrl' => admin_url( 'admin.php?page=ctf-support' ),
[170] Fix | Delete
'genericText' => self::get_generic_text(),
[171] Fix | Delete
'translatedText' => $this->get_translated_text(),
[172] Fix | Delete
'welcomeScreen' => array(
[173] Fix | Delete
'mainHeading' => __( 'All Feeds', 'custom-twitter-feeds' ),
[174] Fix | Delete
'createFeed' => __( 'Create your Feed', 'custom-twitter-feeds' ),
[175] Fix | Delete
'createFeedDescription' => __( 'Connect your Twitter account and choose a feed type', 'custom-twitter-feeds' ),
[176] Fix | Delete
'customizeFeed' => __( 'Customize your feed type', 'custom-twitter-feeds' ),
[177] Fix | Delete
'customizeFeedDescription' => __( 'Choose layouts, color schemes, filters and more', 'custom-twitter-feeds' ),
[178] Fix | Delete
'embedFeed' => __( 'Embed your feed', 'custom-twitter-feeds' ),
[179] Fix | Delete
'embedFeedDescription' => __( 'Easily add the feed anywhere on your website', 'custom-twitter-feeds' ),
[180] Fix | Delete
'customizeImgPath' => CTF_BUILDER_URL . 'assets/img/welcome-1.png',
[181] Fix | Delete
'embedImgPath' => CTF_BUILDER_URL . 'assets/img/welcome-2.png',
[182] Fix | Delete
),
[183] Fix | Delete
'pluginsInfo' => [
[184] Fix | Delete
'social_wall' => [
[185] Fix | Delete
'installed' => isset( $installed_plugins['social-wall/social-wall.php'] ) ? true : false,
[186] Fix | Delete
'activated' => is_plugin_active( 'social-wall/social-wall.php' ),
[187] Fix | Delete
'settingsPage' => admin_url( 'admin.php?page=sbsw' ),
[188] Fix | Delete
]
[189] Fix | Delete
],
[190] Fix | Delete
'allFeedsScreen' => array(
[191] Fix | Delete
'mainHeading' => __( 'All Feeds', 'custom-twitter-feeds' ),
[192] Fix | Delete
'columns' => array(
[193] Fix | Delete
'nameText' => __( 'Name', 'custom-twitter-feeds' ),
[194] Fix | Delete
'shortcodeText' => __( 'Shortcode', 'custom-twitter-feeds' ),
[195] Fix | Delete
'instancesText' => __( 'Instances', 'custom-twitter-feeds' ),
[196] Fix | Delete
'actionsText' => __( 'Actions', 'custom-twitter-feeds' ),
[197] Fix | Delete
),
[198] Fix | Delete
'bulkActions' => __( 'Bulk Actions', 'custom-twitter-feeds' ),
[199] Fix | Delete
'legacyFeeds' => array(
[200] Fix | Delete
'heading' => __( 'Legacy Feeds', 'custom-twitter-feeds' ),
[201] Fix | Delete
'toolTip' => __( 'What are Legacy Feeds?', 'custom-twitter-feeds' ),
[202] Fix | Delete
'toolTipExpanded' => array(
[203] Fix | Delete
__( 'Legacy feeds are older feeds from before the version 2 update. You can edit settings for these feeds by using the "Settings" button to the right. These settings will apply to all legacy feeds, just like the settings before version 2, and work in the same way that they used to.', 'custom-twitter-feeds' ),
[204] Fix | Delete
__( 'You can also create a new feed, which will now have it\'s own individual settings. Modifying settings for new feeds will not affect other feeds.', 'custom-twitter-feeds' ),
[205] Fix | Delete
),
[206] Fix | Delete
'toolTipExpandedAction' => array(
[207] Fix | Delete
__( 'Legacy feeds represent shortcodes of old feeds found on your website before the version 2 update.', 'custom-twitter-feeds' ),
[208] Fix | Delete
__( 'To edit Legacy feed settings, you will need to use the "Settings" button above or edit their shortcode settings directly. To delete them, simply remove the shortcode wherever it is being used on your site.', 'custom-twitter-feeds' ),
[209] Fix | Delete
),
[210] Fix | Delete
'show' => __( 'Show Legacy Feeds', 'custom-twitter-feeds' ),
[211] Fix | Delete
'hide' => __( 'Hide Legacy Feeds', 'custom-twitter-feeds' ),
[212] Fix | Delete
),
[213] Fix | Delete
'socialWallLinks' => CTF_Feed_Builder::get_social_wall_links(),
[214] Fix | Delete
'onboarding' => $this->get_onboarding_text()
[215] Fix | Delete
),
[216] Fix | Delete
'dialogBoxPopupScreen' => array(
[217] Fix | Delete
'deleteSourceCustomizer' => array(
[218] Fix | Delete
'heading' => __( 'Delete "#"?', 'custom-twitter-feeds' ),
[219] Fix | Delete
'description' => __( 'You are going to delete this source. To retrieve it, you will need to add it again. Are you sure you want to continue?', 'custom-twitter-feeds' ),
[220] Fix | Delete
),
[221] Fix | Delete
'deleteSingleFeed' => array(
[222] Fix | Delete
'heading' => __( 'Delete "#"?', 'custom-twitter-feeds' ),
[223] Fix | Delete
'description' => __( 'You are going to delete this feed. You will lose all the settings. Are you sure you want to continue?', 'custom-twitter-feeds' ),
[224] Fix | Delete
),
[225] Fix | Delete
'deleteMultipleFeeds' => array(
[226] Fix | Delete
'heading' => __( 'Delete Feeds?', 'custom-twitter-feeds' ),
[227] Fix | Delete
'description' => __( 'You are going to delete these feeds. You will lose all the settings. Are you sure you want to continue?', 'custom-twitter-feeds' ),
[228] Fix | Delete
),
[229] Fix | Delete
'backAllToFeed' => array(
[230] Fix | Delete
'heading' => __( 'Are you Sure?', 'custom-twitter-feeds' ),
[231] Fix | Delete
'description' => __( 'Are you sure you want to leave this page, all unsaved settings will be lost, please make sure to save before leaving.', 'custom-twitter-feeds' ),
[232] Fix | Delete
),
[233] Fix | Delete
'unsavedFeedSources' => array(
[234] Fix | Delete
'heading' => __( 'You have unsaved changes', 'custom-twitter-feeds' ),
[235] Fix | Delete
'description' => __( 'If you exit without saving, all the changes you made will be reverted.', 'custom-twitter-feeds' ),
[236] Fix | Delete
'customButtons' => array(
[237] Fix | Delete
'confirm' => [
[238] Fix | Delete
'text' => __( 'Save and Exit', 'custom-twitter-feeds' ),
[239] Fix | Delete
'color' => 'blue'
[240] Fix | Delete
],
[241] Fix | Delete
'cancel' => [
[242] Fix | Delete
'text' => __( 'Exit without Saving', 'custom-twitter-feeds' ),
[243] Fix | Delete
'color' => 'red'
[244] Fix | Delete
]
[245] Fix | Delete
)
[246] Fix | Delete
),
[247] Fix | Delete
'createMoreFeeds' => array(
[248] Fix | Delete
'icon' => 'twitterSmash',
[249] Fix | Delete
'heading' => __( 'Create more than one feed<br/>with Twitter Feeds Pro', 'custom-twitter-feeds' ),
[250] Fix | Delete
'description' => __( 'Due to new Twitter API limitations, we can no longer support creation of multiple feeds. To continue creating more than a single feed, upgrade to Pro.', 'custom-twitter-feeds' ),
[251] Fix | Delete
'customButtons' => array(
[252] Fix | Delete
'confirm' => [
[253] Fix | Delete
'text' => __( 'Upgrade to Pro', 'custom-twitter-feeds' ),
[254] Fix | Delete
'color' => 'blue'
[255] Fix | Delete
],
[256] Fix | Delete
'cancel' => [
[257] Fix | Delete
'text' => __( 'Close', 'custom-twitter-feeds' ),
[258] Fix | Delete
'color' => 'gray'
[259] Fix | Delete
]
[260] Fix | Delete
)
[261] Fix | Delete
)
[262] Fix | Delete
[263] Fix | Delete
),
[264] Fix | Delete
'selectFeedTypeScreen' => array(
[265] Fix | Delete
'mainHeading' => __( 'Create a Twitter Feed', 'custom-twitter-feeds' ),
[266] Fix | Delete
'feedTypeHeading' => __( 'Select Feed Type', 'custom-twitter-feeds' ),
[267] Fix | Delete
'mainDescription' => __( 'Select one or more feed types. You can add or remove them later.', 'custom-twitter-feeds' ),
[268] Fix | Delete
'updateHeading' => __( 'Update Feed Type', 'custom-twitter-feeds' ),
[269] Fix | Delete
'advancedHeading' => __( 'Advanced Feeds', 'custom-twitter-feeds' ),
[270] Fix | Delete
'anotherFeedTypeHeading' => __( 'Add Another Feed Type', 'custom-twitter-feeds' ),
[271] Fix | Delete
),
[272] Fix | Delete
'selectFeedTemplateScreen' => array(
[273] Fix | Delete
'feedTemplateHeading' => __( 'Start with a template', 'custom-twitter-feeds' ),
[274] Fix | Delete
'feedTemplateDescription' => __( 'Select a starting point for your feed. You can customize this later.', 'custom-twitter-feeds' ),
[275] Fix | Delete
'updateHeading' => __( 'Select another template', 'custom-twitter-feeds' ),
[276] Fix | Delete
'updateHeadingWarning' => __( 'Changing a template will override your layout, header and button settings', 'custom-twitter-feeds' ),
[277] Fix | Delete
'updateHeadingWarning2' => __( 'Changing a template might override your customizations', 'custom-twitter-feeds' )
[278] Fix | Delete
),
[279] Fix | Delete
'mainFooterScreen' => array(
[280] Fix | Delete
'heading' => sprintf( __( 'Upgrade to the %sAll Access Bundle%s to get all of our Pro Plugins', 'custom-twitter-feeds' ), '<strong>', '</strong>' ),
[281] Fix | Delete
'description' => __( 'Includes all Smash Balloon plugins for one low price: Instagram, Facebook, Twitter, YouTube, and Social Wall', 'custom-twitter-feeds' ),
[282] Fix | Delete
'promo' => sprintf( __( '%sBonus%s Lite users get %s50&#37; Off%s automatically applied at checkout', 'custom-twitter-feeds' ), '<span class="ctf-bld-ft-bns">', '</span>', '<strong>', '</strong>' ),
[283] Fix | Delete
),
[284] Fix | Delete
'embedPopupScreen' => array(
[285] Fix | Delete
'heading' => __( 'Embed Feed', 'custom-twitter-feeds' ),
[286] Fix | Delete
'description' => __( 'Add the unique shortcode to any page, post, or widget:', 'custom-twitter-feeds' ),
[287] Fix | Delete
'description_2' => __( 'Or use the built in WordPress block or widget', 'custom-twitter-feeds' ),
[288] Fix | Delete
'addPage' => __( 'Add to a Page', 'custom-twitter-feeds' ),
[289] Fix | Delete
'addWidget' => __( 'Add to a Widget', 'custom-twitter-feeds' ),
[290] Fix | Delete
'selectPage' => __( 'Select Page', 'custom-twitter-feeds' ),
[291] Fix | Delete
),
[292] Fix | Delete
'connectAccountScreen' => self::connect_account_secreen(),
[293] Fix | Delete
[294] Fix | Delete
[295] Fix | Delete
'links' => self::get_links_with_utm(),
[296] Fix | Delete
'pluginsInfo' => [
[297] Fix | Delete
'social_wall' => [
[298] Fix | Delete
'installed' => isset( $installed_plugins['social-wall/social-wall.php'] ) ? true : false,
[299] Fix | Delete
'activated' => is_plugin_active( 'social-wall/social-wall.php' ),
[300] Fix | Delete
'settingsPage' => admin_url( 'admin.php?page=sbsw' ),
[301] Fix | Delete
]
[302] Fix | Delete
],
[303] Fix | Delete
'selectSourceScreen' => self::select_source_screen_text(),
[304] Fix | Delete
'feedTypes' => $this->get_feed_types(),
[305] Fix | Delete
'advancedFeedTypes' => $this->get_advanced_feed_types(),
[306] Fix | Delete
'feedTemplates' => $this->get_feed_templates(),
[307] Fix | Delete
'socialInfo' => $this->get_smashballoon_info(),
[308] Fix | Delete
'svgIcons' => $this->builder_svg_icons(),
[309] Fix | Delete
'installPluginsPopup' => $this->install_plugins_popup(),
[310] Fix | Delete
'feeds' => self::get_feed_list(),
[311] Fix | Delete
'itemsPerPage' => CTF_Db::RESULTS_PER_PAGE,
[312] Fix | Delete
'feedsCount' => CTF_Db::feeds_count(),
[313] Fix | Delete
[314] Fix | Delete
'sources' => [],
[315] Fix | Delete
'sourceConnectionURLs' => [],
[316] Fix | Delete
'appCredentials' => self::get_app_credentials( $ctf_options ),
[317] Fix | Delete
'legacyFeeds' => $this->get_legacy_feed_list(),
[318] Fix | Delete
'extensionsPopup' => [
[319] Fix | Delete
'search' => [
[320] Fix | Delete
'heading' => __( 'Upgrade to Pro to get Search Feeds', 'custom-twitter-feeds' ),
[321] Fix | Delete
'description' => __( 'Create incredibly advanced search based feeds using a wide selection of search terms and operators to form feeds using powerful search queries.', 'custom-twitter-feeds' ),
[322] Fix | Delete
'img' => '<svg width="396" height="264" viewBox="0 0 396 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_235_1820)"><g opacity="0.8"><g filter="url(#filter0_d_235_1820)"><rect x="54" y="105" width="288" height="113" rx="4" fill="white"/></g><rect x="122" y="124" width="188" height="14" rx="1" fill="#DCDDE1"/><rect x="122" y="150" width="160" height="14" rx="1" fill="#DCDDE1"/><circle cx="86.5" cy="137.5" r="17.5" fill="#DCDDE1"/><path d="M132.574 184.785H130.343L130.745 182.844C130.755 182.787 130.753 182.728 130.738 182.672C130.723 182.616 130.696 182.564 130.659 182.519C130.622 182.475 130.575 182.439 130.523 182.413C130.471 182.388 130.414 182.375 130.355 182.374H129.552C129.459 182.372 129.368 182.402 129.295 182.459C129.222 182.516 129.17 182.597 129.15 182.687L128.74 184.785H126.57L126.972 182.844C126.982 182.788 126.979 182.731 126.965 182.676C126.951 182.621 126.926 182.57 126.89 182.525C126.855 182.481 126.811 182.444 126.76 182.418C126.71 182.392 126.655 182.377 126.598 182.374H125.794C125.701 182.372 125.611 182.402 125.537 182.459C125.464 182.516 125.413 182.597 125.392 182.687L124.991 184.785H122.579C122.485 184.783 122.394 184.814 122.32 184.873C122.247 184.932 122.196 185.015 122.178 185.107L122.013 185.91C122.001 185.969 122.002 186.031 122.017 186.089C122.032 186.147 122.059 186.202 122.098 186.248C122.136 186.294 122.185 186.331 122.24 186.357C122.295 186.382 122.354 186.394 122.415 186.393H124.645L123.986 189.608H121.575C121.481 189.606 121.389 189.637 121.316 189.696C121.242 189.754 121.192 189.837 121.173 189.929L121.008 190.733C120.996 190.792 120.997 190.853 121.012 190.911C121.027 190.97 121.055 191.024 121.093 191.071C121.132 191.117 121.18 191.154 121.235 191.179C121.29 191.204 121.35 191.216 121.41 191.215H123.656L123.255 193.156C123.245 193.214 123.247 193.274 123.263 193.331C123.279 193.388 123.307 193.441 123.345 193.485C123.383 193.53 123.431 193.566 123.485 193.591C123.539 193.615 123.597 193.627 123.656 193.626H124.46C124.55 193.624 124.636 193.592 124.705 193.535C124.774 193.478 124.822 193.4 124.842 193.313L125.26 191.215H127.43L127.028 193.156C127.018 193.212 127.021 193.269 127.035 193.324C127.049 193.379 127.074 193.431 127.109 193.475C127.145 193.519 127.189 193.556 127.239 193.582C127.29 193.608 127.345 193.623 127.402 193.626H128.206C128.298 193.628 128.389 193.598 128.462 193.541C128.536 193.484 128.587 193.403 128.607 193.313L129.029 191.215H131.441C131.535 191.217 131.626 191.186 131.7 191.127C131.773 191.068 131.824 190.986 131.842 190.894L132.003 190.09C132.015 190.031 132.014 189.97 131.999 189.911C131.984 189.853 131.957 189.798 131.918 189.752C131.88 189.706 131.831 189.669 131.776 189.644C131.721 189.619 131.662 189.606 131.601 189.608H129.359L130.014 186.393H132.425C132.519 186.395 132.611 186.363 132.684 186.305C132.758 186.246 132.808 186.163 132.827 186.071L132.992 185.267C133.004 185.207 133.003 185.145 132.987 185.085C132.971 185.025 132.942 184.97 132.902 184.923C132.861 184.877 132.811 184.84 132.754 184.816C132.697 184.792 132.635 184.781 132.574 184.785ZM127.751 189.608H125.581L126.24 186.393H128.41L127.751 189.608Z" fill="#59AB46"/><rect x="138" y="182" width="50" height="12" rx="1" fill="#D6ECD1"/><path d="M212.574 184.785H210.343L210.745 182.844C210.755 182.787 210.753 182.728 210.738 182.672C210.723 182.616 210.696 182.564 210.659 182.519C210.622 182.475 210.575 182.439 210.523 182.413C210.471 182.388 210.414 182.375 210.355 182.374H209.552C209.459 182.372 209.368 182.402 209.295 182.459C209.222 182.516 209.17 182.597 209.15 182.687L208.74 184.785H206.57L206.972 182.844C206.982 182.788 206.979 182.731 206.965 182.676C206.951 182.621 206.926 182.57 206.89 182.525C206.855 182.481 206.811 182.444 206.76 182.418C206.71 182.392 206.655 182.377 206.598 182.374H205.794C205.701 182.372 205.611 182.402 205.537 182.459C205.464 182.516 205.413 182.597 205.392 182.687L204.991 184.785H202.579C202.485 184.783 202.394 184.814 202.32 184.873C202.247 184.932 202.196 185.015 202.178 185.107L202.013 185.91C202.001 185.969 202.002 186.031 202.017 186.089C202.032 186.147 202.059 186.202 202.098 186.248C202.136 186.294 202.185 186.331 202.24 186.357C202.295 186.382 202.354 186.394 202.415 186.393H204.645L203.986 189.608H201.575C201.481 189.606 201.389 189.637 201.316 189.696C201.242 189.754 201.192 189.837 201.173 189.929L201.008 190.733C200.996 190.792 200.997 190.853 201.012 190.911C201.027 190.97 201.055 191.024 201.093 191.071C201.132 191.117 201.18 191.154 201.235 191.179C201.29 191.204 201.35 191.216 201.41 191.215H203.656L203.255 193.156C203.245 193.214 203.247 193.274 203.263 193.331C203.279 193.388 203.307 193.441 203.345 193.485C203.383 193.53 203.431 193.566 203.485 193.591C203.539 193.615 203.597 193.627 203.656 193.626H204.46C204.55 193.624 204.636 193.592 204.705 193.535C204.774 193.478 204.822 193.4 204.842 193.313L205.26 191.215H207.43L207.028 193.156C207.018 193.212 207.021 193.269 207.035 193.324C207.049 193.379 207.074 193.431 207.109 193.475C207.145 193.519 207.189 193.556 207.239 193.582C207.29 193.608 207.345 193.623 207.402 193.626H208.206C208.298 193.628 208.389 193.598 208.462 193.541C208.536 193.484 208.587 193.403 208.607 193.313L209.029 191.215H211.441C211.535 191.217 211.626 191.186 211.7 191.127C211.773 191.068 211.824 190.986 211.842 190.894L212.003 190.09C212.015 190.031 212.014 189.97 211.999 189.911C211.984 189.853 211.957 189.798 211.918 189.752C211.88 189.706 211.831 189.669 211.776 189.644C211.721 189.619 211.662 189.606 211.601 189.608H209.359L210.014 186.393H212.425C212.519 186.395 212.611 186.363 212.684 186.305C212.758 186.246 212.808 186.163 212.827 186.071L212.992 185.267C213.004 185.207 213.003 185.145 212.987 185.085C212.971 185.025 212.942 184.97 212.902 184.923C212.861 184.877 212.811 184.84 212.754 184.816C212.697 184.792 212.635 184.781 212.574 184.785ZM207.751 189.608H205.581L206.24 186.393H208.41L207.751 189.608Z" fill="#59AB46"/><rect x="218" y="182" width="50" height="12" rx="1" fill="#D6ECD1"/></g><g opacity="0.8"><g filter="url(#filter1_d_235_1820)"><rect x="54" y="225" width="288" height="113" rx="4" fill="white"/></g><rect x="122" y="244" width="188" height="14" rx="1" fill="#DCDDE1"/><circle cx="86.5" cy="257.5" r="17.5" fill="#DCDDE1"/></g><g filter="url(#filter2_d_235_1820)"><rect x="53" y="45" width="289" height="53" fill="white"/></g><circle cx="75.1713" cy="68.1716" r="8" transform="rotate(-45 75.1713 68.1716)" stroke="#0096CC" stroke-width="2"/><line x1="80.8282" y1="73.8284" x2="87.1922" y2="80.1924" stroke="#0096CC" stroke-width="2"/><rect x="106" y="63" width="119" height="16" rx="2" fill="#B5E5FF"/><rect opacity="0.6" x="14" y="150" width="372" height="114" fill="url(#paint0_linear_235_1820)"/></g><defs><filter id="filter0_d_235_1820" x="45.1412" y="100.571" width="305.718" height="130.718" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.32203" operator="erode" in="SourceAlpha" result="effect1_dropShadow_235_1820"/><feOffset dy="4.42938"/><feGaussianBlur stdDeviation="6.0904"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_235_1820"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_235_1820" result="shape"/></filter><filter id="filter1_d_235_1820" x="45.1412" y="220.571" width="305.718" height="130.718" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.32203" operator="erode" in="SourceAlpha" result="effect1_dropShadow_235_1820"/><feOffset dy="4.42938"/><feGaussianBlur stdDeviation="6.0904"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_235_1820"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_235_1820" result="shape"/></filter><filter id="filter2_d_235_1820" x="44.8915" y="40.9457" width="305.217" height="69.217" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.04069" operator="erode" in="SourceAlpha" result="effect1_dropShadow_235_1820"/><feOffset dy="4.05426"/><feGaussianBlur stdDeviation="5.5746"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_235_1820"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_235_1820" result="shape"/></filter><linearGradient id="paint0_linear_235_1820" x1="200" y1="150" x2="200" y2="264" gradientUnits="userSpaceOnUse"><stop stop-color="#F3F4F5" stop-opacity="0"/><stop offset="0.925689" stop-color="#F3F4F5"/></linearGradient><clipPath id="clip0_235_1820"><rect width="396" height="264" fill="white"/></clipPath></defs></svg>',
[323] Fix | Delete
'popupContentBtn' => '<div class="ctf-fb-extpp-lite-btn">' . self::builder_svg_icons()['tag'] . __( 'Lite users get 50% OFF', 'custom-twitter-feeds' ) .'</div>',
[324] Fix | Delete
'bullets' => [
[325] Fix | Delete
'heading' => __( 'And get much more!', 'custom-twitter-feeds' ),
[326] Fix | Delete
'content' => [
[327] Fix | Delete
__( 'Display photos, videos & GIFs', 'custom-twitter-feeds' ),
[328] Fix | Delete
__( 'Combine mulitple feeds into one', 'custom-twitter-feeds' ),
[329] Fix | Delete
__( 'Unlimited feeds, 12 daily updates', 'custom-twitter-feeds' ),
[330] Fix | Delete
__( 'Auto load tweets on scroll', 'custom-twitter-feeds' ),
[331] Fix | Delete
__( 'Powerful Tweet filters', 'custom-twitter-feeds' ),
[332] Fix | Delete
__( 'View tweets in a lightbox', 'custom-twitter-feeds' ),
[333] Fix | Delete
__( 'Multiple tweet layout options', 'custom-twitter-feeds' ),
[334] Fix | Delete
__( 'Fast & Friendly Support', 'custom-twitter-feeds' ),
[335] Fix | Delete
__( '30 Day Money Back Guarantee', 'custom-twitter-feeds' )
[336] Fix | Delete
]
[337] Fix | Delete
],
[338] Fix | Delete
'buyUrl' => sprintf('https://smashballoon.com/custom-twitter-feeds/demo/hashtag?utm_campaign=twitter-free&utm_source=feed-type&utm_medium=hashtag')
[339] Fix | Delete
],
[340] Fix | Delete
[341] Fix | Delete
'mentionstimeline' => [
[342] Fix | Delete
'heading' => __( 'Mentions Currently Unavailable', 'custom-twitter-feeds' ),
[343] Fix | Delete
'description' => __( 'Display tweets in a single feed from other public accounts that mention your Twitter handle. Great for displaying user generated content such as testimonials or reviews.', 'custom-twitter-feeds' ),
[344] Fix | Delete
'img' => '<svg width="396" height="264" viewBox="0 0 396 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(#filter0_d_235_9853)"><rect x="38" y="69.681" width="233.43" height="137.698" fill="white"/></g><path fill-rule="evenodd" clip-rule="evenodd" d="M60.6153 83.0218C62.9048 82.5664 65.2779 82.8001 67.4346 83.6934C69.5912 84.5867 71.4345 86.0995 72.7314 88.0404C74.0283 89.9814 74.7205 92.2633 74.7205 94.5976V96.3462C74.7205 97.4669 74.2753 98.5417 73.4829 99.3342C72.6904 100.127 71.6156 100.572 70.4949 100.572C69.3742 100.572 68.2994 100.127 67.5069 99.3342C67.3592 99.1865 67.2236 99.029 67.1007 98.8632C65.9844 99.9578 64.4828 100.572 62.9179 100.572C61.3334 100.572 59.8139 99.9424 58.6935 98.822C57.5731 97.7016 56.9437 96.1821 56.9437 94.5976C56.9437 93.0132 57.5731 91.4936 58.6935 90.3733C59.8139 89.2529 61.3334 88.6235 62.9179 88.6235C64.5023 88.6235 66.0219 89.2529 67.1423 90.3733C68.2626 91.4936 68.8921 93.0132 68.8921 94.5976V96.3462C68.8921 96.7713 69.0609 97.179 69.3615 97.4795C69.6621 97.7801 70.0698 97.949 70.4949 97.949C70.92 97.949 71.3277 97.7801 71.6283 97.4795C71.9289 97.179 72.0977 96.7713 72.0977 96.3462V94.5976C72.0977 92.782 71.5593 91.0072 70.5506 89.4976C69.5419 87.988 68.1083 86.8114 66.4309 86.1166C64.7535 85.4218 62.9077 85.24 61.127 85.5942C59.3463 85.9484 57.7106 86.8227 56.4268 88.1065C55.1429 89.3903 54.2686 91.026 53.9144 92.8067C53.5602 94.5875 53.742 96.4332 54.4368 98.1106C55.1316 99.788 56.3082 101.222 57.8178 102.23C59.3275 103.239 61.1023 103.777 62.9179 103.777L62.9192 103.777C64.5305 103.779 66.1129 103.355 67.5061 102.548C68.1328 102.185 68.9352 102.399 69.2982 103.026C69.6613 103.652 69.4476 104.455 68.8209 104.818C67.0264 105.857 64.9894 106.402 62.9166 106.4L62.9179 105.089V106.4C62.9175 106.4 62.917 106.4 62.9166 106.4C60.5827 106.4 58.3013 105.708 56.3607 104.411C54.4198 103.114 52.907 101.271 52.0137 99.1143C51.1203 96.9577 50.8866 94.5845 51.342 92.2951C51.7974 90.0056 52.9215 87.9025 54.5722 86.2519C56.2228 84.6013 58.3258 83.4772 60.6153 83.0218ZM66.2693 94.5976C66.2693 93.7088 65.9162 92.8564 65.2877 92.2279C64.6592 91.5994 63.8067 91.2463 62.9179 91.2463C62.029 91.2463 61.1766 91.5994 60.5481 92.2279C59.9196 92.8564 59.5665 93.7088 59.5665 94.5976C59.5665 95.4865 59.9196 96.3389 60.5481 96.9674C61.1766 97.5959 62.029 97.949 62.9179 97.949C63.8067 97.949 64.6592 97.5959 65.2877 96.9674C65.9162 96.3389 66.2693 95.4865 66.2693 94.5976Z" fill="#0096CC"/><rect x="89.1445" y="86.7292" width="66.8817" height="15.7369" rx="1.3114" fill="#BFE8FF"/><rect x="53.7363" y="128.694" width="200.645" height="17.0483" rx="2.62281" fill="#DCDDE1"/><rect x="53.7363" y="160.168" width="120.649" height="17.0483" rx="2.62281" fill="#DCDDE1"/><g filter="url(#filter1_d_235_9853)"><rect x="103.459" y="40.0995" width="233.43" height="137.698" transform="rotate(5 103.459 40.0995)" fill="white"/></g><path fill-rule="evenodd" clip-rule="evenodd" d="M124.825 55.3606C127.145 55.1065 129.489 55.5462 131.56 56.624C133.63 57.7019 135.335 59.3696 136.458 61.4162C137.58 63.4628 138.071 65.7963 137.868 68.1218L137.715 69.8637C137.618 70.9801 137.08 72.012 136.222 72.7324C135.363 73.4528 134.254 73.8026 133.137 73.7049C132.021 73.6073 130.989 73.0701 130.269 72.2116C130.134 72.0516 130.013 71.8829 129.905 71.707C128.698 72.7002 127.148 73.1809 125.589 73.0446C124.011 72.9065 122.552 72.147 121.533 70.9332C120.515 69.7195 120.02 68.1508 120.158 66.5724C120.297 64.994 121.056 63.5351 122.27 62.5166C123.484 61.4982 125.052 61.0036 126.631 61.1417C128.209 61.2798 129.668 62.0392 130.686 63.253C131.705 64.4667 132.199 66.0354 132.061 67.6138L131.909 69.3557C131.872 69.7792 132.005 70.2 132.278 70.5257C132.551 70.8513 132.943 71.0551 133.366 71.0921C133.789 71.1292 134.21 70.9965 134.536 70.7232C134.862 70.45 135.065 70.0586 135.102 69.6351L135.255 67.8932C135.413 66.0845 135.031 64.2695 134.158 62.6777C133.285 61.0859 131.959 59.7888 130.349 58.9505C128.738 58.1121 126.915 57.7702 125.111 57.9678C123.306 58.1655 121.6 58.8939 120.209 60.0609C118.818 61.228 117.805 62.7813 117.297 64.5243C116.789 66.2674 116.809 68.122 117.355 69.8535C117.901 71.5851 118.948 73.1159 120.364 74.2523C121.78 75.3887 123.501 76.0798 125.31 76.238L125.311 76.2381C126.916 76.3801 128.529 76.0961 129.988 75.4134C130.644 75.1064 131.424 75.3892 131.731 76.0451C132.039 76.7011 131.756 77.4818 131.1 77.7888C129.221 78.6681 127.145 79.0334 125.08 78.8507L125.196 77.5444L125.081 78.8508C125.081 78.8508 125.08 78.8508 125.08 78.8507C122.755 78.6471 120.543 77.7587 118.722 76.2978C116.902 74.8367 115.555 72.8685 114.854 70.6422C114.152 68.4159 114.126 66.0315 114.779 63.7904C115.432 61.5493 116.735 59.5522 118.523 58.0518C120.312 56.5513 122.505 55.6147 124.825 55.3606ZM129.449 67.3852C129.526 66.4997 129.249 65.6198 128.677 64.9389C128.106 64.258 127.287 63.832 126.402 63.7545C125.517 63.677 124.637 63.9545 123.956 64.5258C123.275 65.0971 122.849 65.9156 122.771 66.801C122.694 67.6865 122.971 68.5664 123.543 69.2473C124.114 69.9282 124.932 70.3543 125.818 70.4317C126.703 70.5092 127.583 70.2317 128.264 69.6604C128.945 69.0891 129.371 68.2707 129.449 67.3852Z" fill="#59AB46"/><rect x="152.924" y="61.5405" width="66.8817" height="15.7369" rx="1.3114" transform="rotate(5 152.924 61.5405)" fill="#D6ECD1"/><rect x="113.994" y="100.26" width="200.645" height="17.0483" rx="2.62281" transform="rotate(5 113.994 100.26)" fill="#DCDDE1"/><rect x="111.25" y="131.614" width="120.649" height="17.0483" rx="2.62281" transform="rotate(5 111.25 131.614)" fill="#DCDDE1"/><defs><filter id="filter0_d_235_9853" x="29.8915" y="65.6267" width="249.647" height="153.915" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.04069" operator="erode" in="SourceAlpha" result="effect1_dropShadow_235_9853"/><feOffset dy="4.05426"/><feGaussianBlur stdDeviation="5.5746"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_235_9853"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_235_9853" result="shape"/></filter><filter id="filter1_d_235_9853" x="83.3485" y="36.0453" width="260.76" height="173.735" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.04069" operator="erode" in="SourceAlpha" result="effect1_dropShadow_235_9853"/><feOffset dy="4.05426"/><feGaussianBlur stdDeviation="5.5746"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_235_9853"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_235_9853" result="shape"/></filter></defs></svg>',
[345] Fix | Delete
'popupContentBtn' => '<div class="ctf-fb-extpp-lite-btn">' . self::builder_svg_icons()['tag'] . __( 'Lite users get 50% OFF', 'custom-twitter-feeds' ) .'</div>',
[346] Fix | Delete
'bullets' => [
[347] Fix | Delete
'heading' => __( 'And get much more!', 'custom-twitter-feeds' ),
[348] Fix | Delete
'content' => [
[349] Fix | Delete
__( 'Display photos, videos & GIFs', 'custom-twitter-feeds' ),
[350] Fix | Delete
__( 'Combine mulitple feeds into one', 'custom-twitter-feeds' ),
[351] Fix | Delete
__( 'Unlimited feeds, 12 daily updates', 'custom-twitter-feeds' ),
[352] Fix | Delete
__( 'Auto load tweets on scroll', 'custom-twitter-feeds' ),
[353] Fix | Delete
__( 'Powerful Tweet filters', 'custom-twitter-feeds' ),
[354] Fix | Delete
__( 'View tweets in a lightbox', 'custom-twitter-feeds' ),
[355] Fix | Delete
__( 'Multiple tweet layout options', 'custom-twitter-feeds' ),
[356] Fix | Delete
__( 'Fast & Friendly Support', 'custom-twitter-feeds' ),
[357] Fix | Delete
__( '30 Day Money Back Guarantee', 'custom-twitter-feeds' )
[358] Fix | Delete
]
[359] Fix | Delete
],
[360] Fix | Delete
'buyUrl' => sprintf('https://smashballoon.com/custom-twitter-feeds/demo/hashtag?utm_campaign=twitter-free&utm_source=feed-type&utm_medium=hashtag')
[361] Fix | Delete
],
[362] Fix | Delete
'lists' => [
[363] Fix | Delete
'heading' => __( 'Lists Currently Unavailable', 'custom-twitter-feeds' ),
[364] Fix | Delete
'description' => __( 'Twitter Lists are great for curating content. Display these curated lists easily on your WordPress site with our built-in Twitter List feature.', 'custom-twitter-feeds' ),
[365] Fix | Delete
'img' => '<svg width="396" height="264" viewBox="0 0 396 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_235_10306)"><g filter="url(#filter0_d_235_10306)"><rect x="73" y="33" width="250" height="244" fill="white"/></g><path d="M73 37C73 34.7909 74.7909 33 77 33H319C321.209 33 323 34.7909 323 37V133H73V37Z" fill="#FEF4EF"/><path d="M191.75 76.125C191.75 76.6223 191.552 77.0992 191.201 77.4508C190.849 77.8025 190.372 78 189.875 78C189.378 78 188.901 77.8025 188.549 77.4508C188.198 77.0992 188 76.6223 188 76.125C188 75.6277 188.198 75.1508 188.549 74.7992C188.901 74.4475 189.378 74.25 189.875 74.25C190.372 74.25 190.849 74.4475 191.201 74.7992C191.552 75.1508 191.75 75.6277 191.75 76.125Z" fill="#E34F0E"/><path d="M189.875 85.5C190.372 85.5 190.849 85.3025 191.201 84.9508C191.552 84.5992 191.75 84.1223 191.75 83.625C191.75 83.1277 191.552 82.6508 191.201 82.2992C190.849 81.9475 190.372 81.75 189.875 81.75C189.378 81.75 188.901 81.9475 188.549 82.2992C188.198 82.6508 188 83.1277 188 83.625C188 84.1223 188.198 84.5992 188.549 84.9508C188.901 85.3025 189.378 85.5 189.875 85.5Z" fill="#E34F0E"/><path d="M191.75 91.125C191.75 91.6223 191.552 92.0992 191.201 92.4508C190.849 92.8025 190.372 93 189.875 93C189.378 93 188.901 92.8025 188.549 92.4508C188.198 92.0992 188 91.6223 188 91.125C188 90.6277 188.198 90.1508 188.549 89.7992C188.901 89.4475 189.378 89.25 189.875 89.25C190.372 89.25 190.849 89.4475 191.201 89.7992C191.552 90.1508 191.75 90.6277 191.75 91.125Z" fill="#E34F0E"/><path d="M196.75 75.5C196.418 75.5 196.101 75.6317 195.866 75.8661C195.632 76.1005 195.5 76.4185 195.5 76.75C195.5 77.0815 195.632 77.3995 195.866 77.6339C196.101 77.8683 196.418 78 196.75 78H206.75C207.082 78 207.399 77.8683 207.634 77.6339C207.868 77.3995 208 77.0815 208 76.75C208 76.4185 207.868 76.1005 207.634 75.8661C207.399 75.6317 207.082 75.5 206.75 75.5H196.75Z" fill="#E34F0E"/><path d="M195.5 84.25C195.5 83.9185 195.632 83.6005 195.866 83.3661C196.101 83.1317 196.418 83 196.75 83H206.75C207.082 83 207.399 83.1317 207.634 83.3661C207.868 83.6005 208 83.9185 208 84.25C208 84.5815 207.868 84.8995 207.634 85.1339C207.399 85.3683 207.082 85.5 206.75 85.5H196.75C196.418 85.5 196.101 85.3683 195.866 85.1339C195.632 84.8995 195.5 84.5815 195.5 84.25Z" fill="#E34F0E"/><path d="M196.75 90.5C196.418 90.5 196.101 90.6317 195.866 90.8661C195.632 91.1005 195.5 91.4185 195.5 91.75C195.5 92.0815 195.632 92.3995 195.866 92.6339C196.101 92.8683 196.418 93 196.75 93H206.75C207.082 93 207.399 92.8683 207.634 92.6339C207.868 92.3995 208 92.0815 208 91.75C208 91.4185 207.868 91.1005 207.634 90.8661C207.399 90.6317 207.082 90.5 206.75 90.5H196.75Z" fill="#E34F0E"/><path d="M180.5 70.5C180.5 69.1739 181.027 67.9021 181.964 66.9645C182.902 66.0268 184.174 65.5 185.5 65.5H210.5C211.826 65.5 213.098 66.0268 214.036 66.9645C214.973 67.9021 215.5 69.1739 215.5 70.5V95.5C215.5 96.8261 214.973 98.0979 214.036 99.0355C213.098 99.9732 211.826 100.5 210.5 100.5H185.5C184.174 100.5 182.902 99.9732 181.964 99.0355C181.027 98.0979 180.5 96.8261 180.5 95.5V70.5ZM185.5 68C184.837 68 184.201 68.2634 183.732 68.7322C183.263 69.2011 183 69.837 183 70.5V95.5C183 96.163 183.263 96.7989 183.732 97.2678C184.201 97.7366 184.837 98 185.5 98H210.5C211.163 98 211.799 97.7366 212.268 97.2678C212.737 96.7989 213 96.163 213 95.5V70.5C213 69.837 212.737 69.2011 212.268 68.7322C211.799 68.2634 211.163 68 210.5 68H185.5Z" fill="#E34F0E"/><circle cx="108" cy="161" r="13" fill="#DCDDE1"/><circle cx="108" cy="199" r="13" fill="#DCDDE1"/><circle cx="108" cy="237" r="13" fill="#DCDDE1"/><rect x="137" y="155" width="59" height="14" rx="1" fill="#DCDDE1"/><rect x="137" y="193" width="113" height="14" rx="1" fill="#DCDDE1"/><rect x="137" y="231" width="68" height="14" rx="1" fill="#DCDDE1"/><rect opacity="0.6" y="150" width="400" height="114" fill="url(#paint0_linear_235_10306)"/></g><defs><filter id="filter0_d_235_10306" x="64.8915" y="28.9457" width="266.217" height="260.217" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.04069" operator="erode" in="SourceAlpha" result="effect1_dropShadow_235_10306"/><feOffset dy="4.05426"/><feGaussianBlur stdDeviation="5.5746"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_235_10306"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_235_10306" result="shape"/></filter><linearGradient id="paint0_linear_235_10306" x1="200" y1="150" x2="200" y2="264" gradientUnits="userSpaceOnUse"><stop stop-color="#F3F4F5" stop-opacity="0"/><stop offset="0.925689" stop-color="#F3F4F5"/></linearGradient><clipPath id="clip0_235_10306"><rect width="396" height="264" fill="white"/></clipPath></defs></svg>',
[366] Fix | Delete
'popupContentBtn' => '<div class="ctf-fb-extpp-lite-btn">' . self::builder_svg_icons()['tag'] . __( 'Lite users get 50% OFF', 'custom-twitter-feeds' ) .'</div>',
[367] Fix | Delete
'bullets' => [
[368] Fix | Delete
'heading' => __( 'And get much more!', 'custom-twitter-feeds' ),
[369] Fix | Delete
'content' => [
[370] Fix | Delete
__( 'Display photos, videos & GIFs', 'custom-twitter-feeds' ),
[371] Fix | Delete
__( 'Combine mulitple feeds into one', 'custom-twitter-feeds' ),
[372] Fix | Delete
__( 'Unlimited feeds, 12 daily updates', 'custom-twitter-feeds' ),
[373] Fix | Delete
__( 'Auto load tweets on scroll', 'custom-twitter-feeds' ),
[374] Fix | Delete
__( 'Powerful Tweet filters', 'custom-twitter-feeds' ),
[375] Fix | Delete
__( 'View tweets in a lightbox', 'custom-twitter-feeds' ),
[376] Fix | Delete
__( 'Multiple tweet layout options', 'custom-twitter-feeds' ),
[377] Fix | Delete
__( 'Fast & Friendly Support', 'custom-twitter-feeds' ),
[378] Fix | Delete
__( '30 Day Money Back Guarantee', 'custom-twitter-feeds' )
[379] Fix | Delete
]
[380] Fix | Delete
],
[381] Fix | Delete
'buyUrl' => sprintf('https://smashballoon.com/custom-twitter-feeds/demo/hashtag?utm_campaign=twitter-free&utm_source=feed-type&utm_medium=hashtag')
[382] Fix | Delete
],
[383] Fix | Delete
'socialwall' => [
[384] Fix | Delete
//Combine all your social media channels into one Social Wall
[385] Fix | Delete
'heading' => __( 'Combine all your social media channels into one', 'custom-twitter-feeds' ) . ' <span>' . __( 'Social Wall', 'custom-twitter-feeds' ) . '</span>',
[386] Fix | Delete
'description' => __( '<span class="sb-social-wall">A dash of Instagram, a sprinkle of Facebook, a spoonful of Twitter, and a dollop of YouTube, all in the same feed.</span>', 'custom-twitter-feeds' ),
[387] Fix | Delete
'popupContentBtn' => '<div class="ctf-fb-extpp-lite-btn">' . self::builder_svg_icons()['tag'] . __( 'Lite users get 50% OFF', 'custom-twitter-feeds' ) .'</div>',
[388] Fix | Delete
'img' => '<svg width="397" height="264" viewBox="0 0 397 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0)"><g filter="url(#filter0_ddd)"><rect x="18.957" y="63" width="113.812" height="129.461" rx="2.8453" fill="white"/></g><g clip-path="url(#clip1)"><path d="M18.957 63H132.769V176.812H18.957V63Z" fill="#0068A0"/><rect x="56.957" y="106" width="105" height="105" rx="9" fill="#005B8C"/></g><path d="M36.0293 165.701C31.4649 165.701 27.7305 169.427 27.7305 174.017C27.7305 178.166 30.7678 181.61 34.7347 182.232V176.423H32.6268V174.017H34.7347V172.183C34.7347 170.1 35.9712 168.954 37.8716 168.954C38.7762 168.954 39.7222 169.112 39.7222 169.112V171.162H38.6766C37.6475 171.162 37.3239 171.801 37.3239 172.456V174.017H39.6309L39.2575 176.423H37.3239V182.232C39.2794 181.924 41.0602 180.926 42.3446 179.419C43.629 177.913 44.3325 175.996 44.3281 174.017C44.3281 169.427 40.5936 165.701 36.0293 165.701Z" fill="#006BFA"/><rect x="53.1016" y="169.699" width="41.2569" height="9.95855" rx="1.42265" fill="#D0D1D7"/><g filter="url(#filter1_ddd)"><rect x="18.957" y="201" width="113.812" height="129.461" rx="2.8453" fill="white"/></g><g clip-path="url(#clip2)"><path d="M18.957 201H132.769V314.812H18.957V201Z" fill="#EC352F"/><circle cx="23.957" cy="243" r="59" fill="#FE544F"/></g><g filter="url(#filter2_ddd)"><rect x="139.957" y="23" width="113.812" height="129.461" rx="2.8453" fill="white"/></g><g clip-path="url(#clip3)"><path d="M139.957 23H253.769V136.812H139.957V23Z" fill="#8C8F9A"/><circle cx="127.457" cy="142.5" r="78.5" fill="#D0D1D7"/></g><path d="M157.026 129.493C154.537 129.493 152.553 131.516 152.553 133.967C152.553 136.456 154.537 138.44 157.026 138.44C159.477 138.44 161.5 136.456 161.5 133.967C161.5 131.516 159.477 129.493 157.026 129.493ZM157.026 136.884C155.431 136.884 154.109 135.601 154.109 133.967C154.109 132.372 155.392 131.088 157.026 131.088C158.621 131.088 159.905 132.372 159.905 133.967C159.905 135.601 158.621 136.884 157.026 136.884ZM162.706 129.338C162.706 128.754 162.239 128.287 161.655 128.287C161.072 128.287 160.605 128.754 160.605 129.338C160.605 129.921 161.072 130.388 161.655 130.388C162.239 130.388 162.706 129.921 162.706 129.338ZM165.662 130.388C165.584 128.987 165.273 127.743 164.262 126.731C163.25 125.72 162.005 125.409 160.605 125.331C159.166 125.253 154.848 125.253 153.408 125.331C152.008 125.409 150.802 125.72 149.752 126.731C148.74 127.743 148.429 128.987 148.351 130.388C148.274 131.827 148.274 136.145 148.351 137.585C148.429 138.985 148.74 140.191 149.752 141.241C150.802 142.253 152.008 142.564 153.408 142.642C154.848 142.719 159.166 142.719 160.605 142.642C162.005 142.564 163.25 142.253 164.262 141.241C165.273 140.191 165.584 138.985 165.662 137.585C165.74 136.145 165.74 131.827 165.662 130.388ZM163.795 139.102C163.523 139.88 162.9 140.463 162.161 140.774C160.994 141.241 158.271 141.124 157.026 141.124C155.742 141.124 153.019 141.241 151.891 140.774C151.113 140.463 150.53 139.88 150.219 139.102C149.752 137.974 149.868 135.25 149.868 133.967C149.868 132.722 149.752 129.999 150.219 128.832C150.53 128.093 151.113 127.509 151.891 127.198C153.019 126.731 155.742 126.848 157.026 126.848C158.271 126.848 160.994 126.731 162.161 127.198C162.9 127.47 163.484 128.093 163.795 128.832C164.262 129.999 164.145 132.722 164.145 133.967C164.145 135.25 164.262 137.974 163.795 139.102Z" fill="url(#paint0_linear)"/><rect x="174.102" y="129.699" width="41.2569" height="9.95855" rx="1.42265" fill="#D0D1D7"/><g filter="url(#filter3_ddd)"><rect x="139.957" y="161" width="114" height="109" rx="2.8453" fill="white"/></g><rect x="148.957" y="194" width="91" height="8" rx="1.42265" fill="#D0D1D7"/><rect x="148.957" y="208" width="51" height="8" rx="1.42265" fill="#D0D1D7"/><path d="M164.366 172.062C163.788 172.324 163.166 172.497 162.521 172.579C163.181 172.182 163.691 171.552 163.931 170.794C163.308 171.169 162.618 171.432 161.891 171.582C161.298 170.937 160.466 170.562 159.521 170.562C157.758 170.562 156.318 172.002 156.318 173.779C156.318 174.034 156.348 174.282 156.401 174.514C153.731 174.379 151.353 173.097 149.771 171.154C149.493 171.627 149.336 172.182 149.336 172.767C149.336 173.884 149.898 174.874 150.768 175.437C150.236 175.437 149.741 175.287 149.306 175.062V175.084C149.306 176.644 150.416 177.949 151.886 178.242C151.414 178.371 150.918 178.389 150.438 178.294C150.642 178.934 151.041 179.493 151.579 179.894C152.117 180.295 152.767 180.517 153.438 180.529C152.301 181.43 150.891 181.916 149.441 181.909C149.186 181.909 148.931 181.894 148.676 181.864C150.101 182.779 151.796 183.312 153.611 183.312C159.521 183.312 162.768 178.407 162.768 174.154C162.768 174.012 162.768 173.877 162.761 173.734C163.391 173.284 163.931 172.714 164.366 172.062Z" fill="#1B90EF"/><g filter="url(#filter4_ddd)"><rect x="260.957" y="63" width="113.812" height="129.461" rx="2.8453" fill="white"/></g><g clip-path="url(#clip4)"><rect x="260.957" y="63" width="113.812" height="113.812" fill="#D72C2C"/><path d="M283.359 103.308L373.461 193.41H208.793L283.359 103.308Z" fill="#DF5757"/></g><path d="M276.37 176.456L280.677 173.967L276.37 171.477V176.456ZM285.963 169.958C286.071 170.348 286.145 170.871 286.195 171.535C286.253 172.199 286.278 172.772 286.278 173.27L286.328 173.967C286.328 175.784 286.195 177.12 285.963 177.975C285.755 178.722 285.274 179.203 284.527 179.411C284.137 179.519 283.423 179.593 282.328 179.643C281.249 179.701 280.262 179.726 279.349 179.726L278.029 179.776C274.552 179.776 272.386 179.643 271.531 179.411C270.784 179.203 270.303 178.722 270.096 177.975C269.988 177.585 269.913 177.062 269.863 176.398C269.805 175.734 269.78 175.162 269.78 174.664L269.73 173.967C269.73 172.149 269.863 170.813 270.096 169.958C270.303 169.212 270.784 168.73 271.531 168.523C271.921 168.415 272.635 168.34 273.73 168.29C274.809 168.232 275.797 168.207 276.71 168.207L278.029 168.158C281.506 168.158 283.672 168.29 284.527 168.523C285.274 168.73 285.755 169.212 285.963 169.958Z" fill="#EB2121"/><rect x="295.102" y="169.699" width="41.2569" height="9.95855" rx="1.42265" fill="#D0D1D7"/><g filter="url(#filter5_ddd)"><rect x="260.957" y="201" width="113.812" height="129.461" rx="2.8453" fill="white"/></g><g clip-path="url(#clip5)"><rect x="260.957" y="201" width="113.812" height="113.812" fill="#59AB46"/><circle cx="374.457" cy="235.5" r="44.5" fill="#468737"/></g><g clip-path="url(#clip6)"><path d="M139.957 228H253.957V296C253.957 296.552 253.509 297 252.957 297H140.957C140.405 297 139.957 296.552 139.957 296V228Z" fill="#0068A0"/><circle cx="227.957" cy="245" r="34" fill="#004D77"/></g></g><defs><filter id="filter0_ddd" x="0.462572" y="53.0414" width="150.801" height="166.45" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="8.5359"/><feGaussianBlur stdDeviation="9.24723"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1.42265"/><feGaussianBlur stdDeviation="1.42265"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.11 0"/><feBlend mode="normal" in2="effect1_dropShadow" result="effect2_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="4.26795"/><feGaussianBlur stdDeviation="4.26795"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/><feBlend mode="normal" in2="effect2_dropShadow" result="effect3_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect3_dropShadow" result="shape"/></filter><filter id="filter1_ddd" x="0.462572" y="191.041" width="150.801" height="166.45" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="8.5359"/><feGaussianBlur stdDeviation="9.24723"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1.42265"/><feGaussianBlur stdDeviation="1.42265"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.11 0"/><feBlend mode="normal" in2="effect1_dropShadow" result="effect2_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="4.26795"/><feGaussianBlur stdDeviation="4.26795"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/><feBlend mode="normal" in2="effect2_dropShadow" result="effect3_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect3_dropShadow" result="shape"/></filter><filter id="filter2_ddd" x="121.463" y="13.0414" width="150.801" height="166.45" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="8.5359"/><feGaussianBlur stdDeviation="9.24723"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1.42265"/><feGaussianBlur stdDeviation="1.42265"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.11 0"/><feBlend mode="normal" in2="effect1_dropShadow" result="effect2_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="4.26795"/><feGaussianBlur stdDeviation="4.26795"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/><feBlend mode="normal" in2="effect2_dropShadow" result="effect3_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect3_dropShadow" result="shape"/></filter><filter id="filter3_ddd" x="121.463" y="151.041" width="150.989" height="145.989" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="8.5359"/><feGaussianBlur stdDeviation="9.24723"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1.42265"/><feGaussianBlur stdDeviation="1.42265"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.11 0"/><feBlend mode="normal" in2="effect1_dropShadow" result="effect2_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="4.26795"/><feGaussianBlur stdDeviation="4.26795"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/><feBlend mode="normal" in2="effect2_dropShadow" result="effect3_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect3_dropShadow" result="shape"/></filter><filter id="filter4_ddd" x="242.463" y="53.0414" width="150.801" height="166.45" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="8.5359"/><feGaussianBlur stdDeviation="9.24723"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1.42265"/><feGaussianBlur stdDeviation="1.42265"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.11 0"/><feBlend mode="normal" in2="effect1_dropShadow" result="effect2_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="4.26795"/><feGaussianBlur stdDeviation="4.26795"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/><feBlend mode="normal" in2="effect2_dropShadow" result="effect3_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect3_dropShadow" result="shape"/></filter><filter id="filter5_ddd" x="242.463" y="191.041" width="150.801" height="166.45" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="8.5359"/><feGaussianBlur stdDeviation="9.24723"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="1.42265"/><feGaussianBlur stdDeviation="1.42265"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.11 0"/><feBlend mode="normal" in2="effect1_dropShadow" result="effect2_dropShadow"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="4.26795"/><feGaussianBlur stdDeviation="4.26795"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/><feBlend mode="normal" in2="effect2_dropShadow" result="effect3_dropShadow"/><feBlend mode="normal" in="SourceGraphic" in2="effect3_dropShadow" result="shape"/></filter><linearGradient id="paint0_linear" x1="154.502" y1="158.603" x2="191.208" y2="121.133" gradientUnits="userSpaceOnUse"><stop stop-color="white"/><stop offset="0.147864" stop-color="#F6640E"/><stop offset="0.443974" stop-color="#BA03A7"/><stop offset="0.733337" stop-color="#6A01B9"/><stop offset="1" stop-color="#6B01B9"/></linearGradient><clipPath id="clip0"><rect width="396" height="264" fill="white" transform="translate(0.957031)"/></clipPath><clipPath id="clip1"><path d="M18.957 65.3711C18.957 64.0616 20.0186 63 21.3281 63H130.398C131.708 63 132.769 64.0616 132.769 65.3711V156.895H18.957V65.3711Z" fill="white"/></clipPath><clipPath id="clip2"><path d="M18.957 203.371C18.957 202.062 20.0186 201 21.3281 201H130.398C131.708 201 132.769 202.062 132.769 203.371V294.895H18.957V203.371Z" fill="white"/></clipPath><clipPath id="clip3"><path d="M139.957 25.3711C139.957 24.0616 141.019 23 142.328 23H251.398C252.708 23 253.769 24.0616 253.769 25.3711V116.895H139.957V25.3711Z" fill="white"/></clipPath><clipPath id="clip4"><path d="M260.957 65.3711C260.957 64.0616 262.019 63 263.328 63H372.398C373.708 63 374.769 64.0616 374.769 65.3711V156.895H260.957V65.3711Z" fill="white"/></clipPath><clipPath id="clip5"><path d="M260.957 203.371C260.957 202.062 262.019 201 263.328 201H372.398C373.708 201 374.769 202.062 374.769 203.371V294.895H260.957V203.371Z" fill="white"/></clipPath><clipPath id="clip6"><path d="M139.957 228H253.957V296C253.957 296.552 253.509 297 252.957 297H140.957C140.405 297 139.957 296.552 139.957 296V228Z" fill="white"/></clipPath></defs></svg>',
[389] Fix | Delete
'demoUrl' => 'https://smashballoon.com/social-wall/demo/?utm_campaign=twitter-free&utm_source=feed-type&utm_medium=social-wall&utm_content=learn-more',
[390] Fix | Delete
'buyUrl' => sprintf('https://smashballoon.com/social-wall/pricing/?edd_license_key=%s&upgrade=true&utm_campaign=twitter-free&utm_source=feed-type&utm_medium=social-wall&utm_content=upgrade', $license_key),
[391] Fix | Delete
'bullets' => [
[392] Fix | Delete
'heading' => __( 'Upgrade to the All Access Bundle and get:', 'custom-twitter-feeds' ),
[393] Fix | Delete
'content' => [
[394] Fix | Delete
__( 'Custom Facebook Feed Pro', 'custom-twitter-feeds' ),
[395] Fix | Delete
__( 'All Pro Facebook Extensions', 'custom-twitter-feeds' ),
[396] Fix | Delete
__( 'Custom Twitter Feeds Pro', 'custom-twitter-feeds' ),
[397] Fix | Delete
__( 'Instagram Feed Pro', 'custom-twitter-feeds' ),
[398] Fix | Delete
__( 'YouTube Feeds Pro', 'custom-twitter-feeds' ),
[399] Fix | Delete
__( 'Social Wall Pro', 'custom-twitter-feeds' ),
[400] Fix | Delete
]
[401] Fix | Delete
],
[402] Fix | Delete
],
[403] Fix | Delete
[404] Fix | Delete
//Other Types
[405] Fix | Delete
'feedLayout' => [
[406] Fix | Delete
'heading' => __( 'Upgrade to Pro to get Advanced Layouts', 'custom-twitter-feeds' ),
[407] Fix | Delete
'description' => __( 'Create beautiful and responsive full width grids of your Twitter content. Create multiple grids on the same page or throughout your site, or use responsive rotating carousels/slideshows of your Tweets instead.', 'custom-twitter-feeds' ),
[408] Fix | Delete
'img' => '<svg width="396" height="264" viewBox="0 0 396 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_1081_60249)" filter="url(#filter0_d_1081_60249)"><rect width="233.535" height="135.012" transform="translate(100.297 56.9052) rotate(5)" fill="white"/><rect x="127.309" y="132.337" width="80.2777" height="75.4124" rx="1.21633" transform="rotate(5 127.309 132.337)" fill="#FCE1D5"/><rect x="218.141" y="126.853" width="80.2777" height="80.2777" rx="1.21633" transform="rotate(5 218.141 126.853)" fill="#BFE8FF"/><circle cx="143.137" cy="90.9873" r="12.1633" transform="rotate(5 143.137 90.9873)" fill="#DCDDE1"/><rect x="167.795" y="88.2607" width="66.8981" height="9.73063" rx="1.21633" transform="rotate(5 167.795 88.2607)" fill="#DCDDE1"/></g><g clip-path="url(#clip1_1081_60249)" filter="url(#filter1_d_1081_60249)"><rect width="233.535" height="135.012" transform="translate(64 43.5536)" fill="white"/><rect x="117.518" y="66.6638" width="126.498" height="85.143" rx="1.21633" fill="#43A6DB"/><rect x="127.248" y="111.668" width="102.172" height="8.5143" rx="1.21633" fill="#F7FDFF"/><rect x="127.248" y="128.697" width="77.845" height="8.5143" rx="1.21633" fill="#F7FDFF"/><circle cx="137.587" cy="89.1659" r="10.3388" fill="#F7FDFF"/><rect x="252.531" y="66.6638" width="126.498" height="85.143" rx="1.21633" fill="#F6966B"/><rect x="262.262" y="111.668" width="102.172" height="8.5143" rx="1.21633" fill="#FEF4EF"/><rect x="262.262" y="128.697" width="77.845" height="8.5143" rx="1.21633" fill="#FEF4EF"/><circle cx="272.601" cy="89.1659" r="10.3388" fill="#FEF4EF"/><rect x="-18.7109" y="66.6638" width="126.498" height="85.143" rx="1.21633" fill="#96CE89"/><rect x="-8.98047" y="111.668" width="102.172" height="8.5143" rx="1.21633" fill="#E6F4E3"/><rect x="-8.98047" y="128.697" width="77.845" height="8.5143" rx="1.21633" fill="#E6F4E3"/></g><defs><filter id="filter0_d_1081_60249" x="80.4208" y="52.8509" width="260.631" height="171.07" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.04069" operator="erode" in="SourceAlpha" result="effect1_dropShadow_1081_60249"/><feOffset dy="4.05426"/><feGaussianBlur stdDeviation="5.5746"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1081_60249"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1081_60249" result="shape"/></filter><filter id="filter1_d_1081_60249" x="55.8915" y="39.4993" width="249.752" height="151.229" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.04069" operator="erode" in="SourceAlpha" result="effect1_dropShadow_1081_60249"/><feOffset dy="4.05426"/><feGaussianBlur stdDeviation="5.5746"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1081_60249"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1081_60249" result="shape"/></filter><clipPath id="clip0_1081_60249"><rect width="233.535" height="135.012" fill="white" transform="translate(100.297 56.9052) rotate(5)"/></clipPath><clipPath id="clip1_1081_60249"><rect width="233.535" height="135.012" fill="white" transform="translate(64 43.5536)"/></clipPath></defs></svg>',
[409] Fix | Delete
'popupContentBtn' => '<div class="ctf-fb-extpp-lite-btn">' . self::builder_svg_icons()['tag'] . __( 'Lite users get 50% OFF', 'custom-twitter-feeds' ) .'</div>',
[410] Fix | Delete
'bullets' => [
[411] Fix | Delete
'heading' => __( 'And get much more!', 'custom-twitter-feeds' ),
[412] Fix | Delete
'content' => [
[413] Fix | Delete
__( 'Display photos, videos & GIFs', 'custom-twitter-feeds' ),
[414] Fix | Delete
__( 'Combine mulitple feeds into one', 'custom-twitter-feeds' ),
[415] Fix | Delete
__( 'Unlimited feeds, 12 daily updates', 'custom-twitter-feeds' ),
[416] Fix | Delete
__( 'Auto load tweets on scroll', 'custom-twitter-feeds' ),
[417] Fix | Delete
__( 'Powerful Tweet filters', 'custom-twitter-feeds' ),
[418] Fix | Delete
__( 'View tweets in a lightbox', 'custom-twitter-feeds' ),
[419] Fix | Delete
__( 'Multiple tweet layout options', 'custom-twitter-feeds' ),
[420] Fix | Delete
__( 'Fast & Friendly Support', 'custom-twitter-feeds' ),
[421] Fix | Delete
__( '30 Day Money Back Guarantee', 'custom-twitter-feeds' )
[422] Fix | Delete
]
[423] Fix | Delete
],
[424] Fix | Delete
'buyUrl' => sprintf('https://smashballoon.com/custom-twitter-feeds/demo/hashtag?utm_campaign=twitter-free&utm_source=feed-type&utm_medium=hashtag')
[425] Fix | Delete
],
[426] Fix | Delete
'advancedFilters' => [
[427] Fix | Delete
'heading' => __( 'Upgrade to Pro to get Advanced Filters', 'custom-twitter-feeds' ),
[428] Fix | Delete
'description' => __( 'Use our filter settings to only show Tweets in your feed which contain specific words or hashtags, or do the opposite and hide any which contain them.', 'custom-twitter-feeds' ),
[429] Fix | Delete
'img' => '<svg width="396" height="264" viewBox="0 0 396 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(#filter0_d_605_67392)"><rect x="104" y="71" width="233.43" height="137.698" fill="white"/></g><rect x="162.148" y="91.0482" width="66.8817" height="15.7369" rx="1.3114" fill="#F9BBA0"/><rect x="119.738" y="130.013" width="200.645" height="17.0483" rx="2.62281" fill="#DCDDE1"/><rect x="119.738" y="161.487" width="120.649" height="17.0483" rx="2.62281" fill="#DCDDE1"/><circle cx="134" cy="98" r="14" fill="#F9BBA0"/><g filter="url(#filter1_d_605_67392)"><rect x="48" y="45" width="233.43" height="137.698" fill="white"/></g><rect x="106.148" y="65.0482" width="66.8817" height="15.7369" rx="1.3114" fill="#B6DDAD"/><rect x="63.7383" y="104.013" width="200.645" height="17.0483" rx="2.62281" fill="#DCDDE1"/><rect x="63.7383" y="135.487" width="120.649" height="17.0483" rx="2.62281" fill="#DCDDE1"/><circle cx="78" cy="72" r="14" fill="#B6DDAD"/><circle cx="255.751" cy="43.7509" r="18.7509" fill="#0096CC"/><g clip-path="url(#clip0_605_67392)"><path d="M255.245 41.217C254.708 41.217 254.192 41.4306 253.812 41.8108C253.432 42.1909 253.218 42.7065 253.218 43.2442C253.218 43.7818 253.432 44.2974 253.812 44.6775C254.192 45.0577 254.708 45.2713 255.245 45.2713C255.783 45.2713 256.299 45.0577 256.679 44.6775C257.059 44.2974 257.272 43.7818 257.272 43.2442C257.272 42.7065 257.059 42.1909 256.679 41.8108C256.299 41.4306 255.783 41.217 255.245 41.217ZM255.245 46.6227C254.349 46.6227 253.49 46.2667 252.856 45.6331C252.223 44.9995 251.867 44.1402 251.867 43.2442C251.867 42.3481 252.223 41.4888 252.856 40.8552C253.49 40.2216 254.349 39.8656 255.245 39.8656C256.141 39.8656 257.001 40.2216 257.634 40.8552C258.268 41.4888 258.624 42.3481 258.624 43.2442C258.624 44.1402 258.268 44.9995 257.634 45.6331C257.001 46.2667 256.141 46.6227 255.245 46.6227ZM255.245 38.1763C251.867 38.1763 248.981 40.2778 247.812 43.2442C248.981 46.2105 251.867 48.312 255.245 48.312C258.624 48.312 261.509 46.2105 262.678 43.2442C261.509 40.2778 258.624 38.1763 255.245 38.1763Z" fill="white"/></g><circle cx="311.751" cy="71.7509" r="18.7509" fill="#D72C2C"/><g clip-path="url(#clip1_605_67392)"><path d="M311.127 69.217L313.269 71.3522V71.2441C313.269 70.7065 313.055 70.1909 312.675 69.8107C312.295 69.4305 311.779 69.217 311.241 69.217H311.127ZM308.221 69.7575L309.268 70.8049C309.235 70.9468 309.214 71.0887 309.214 71.2441C309.214 71.7817 309.428 72.2973 309.808 72.6775C310.188 73.0577 310.704 73.2712 311.241 73.2712C311.39 73.2712 311.539 73.251 311.681 73.2172L312.728 74.2645C312.275 74.4875 311.775 74.6227 311.241 74.6227C310.345 74.6227 309.486 74.2667 308.852 73.6331C308.219 72.9995 307.863 72.1401 307.863 71.2441C307.863 70.7103 307.998 70.2103 308.221 69.7575ZM304.484 66.0209L306.025 67.5615L306.329 67.8656C305.214 68.744 304.336 69.8927 303.809 71.2441C304.978 74.2105 307.863 76.3119 311.241 76.3119C312.289 76.3119 313.289 76.1092 314.201 75.7443L314.492 76.0281L316.465 78.0012L317.323 77.143L305.342 65.1627L304.484 66.0209ZM311.241 67.8656C312.137 67.8656 312.997 68.2215 313.63 68.8551C314.264 69.4887 314.62 70.3481 314.62 71.2441C314.62 71.6766 314.532 72.0955 314.377 72.4739L316.357 74.4537C317.37 73.6091 318.181 72.5009 318.674 71.2441C317.505 68.2777 314.62 66.1763 311.241 66.1763C310.295 66.1763 309.39 66.3452 308.539 66.6493L310.005 68.1021C310.39 67.9534 310.802 67.8656 311.241 67.8656Z" fill="white"/></g><defs><filter id="filter0_d_605_67392" x="95.8915" y="66.9457" width="249.647" height="153.915" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.04069" operator="erode" in="SourceAlpha" result="effect1_dropShadow_605_67392"/><feOffset dy="4.05426"/><feGaussianBlur stdDeviation="5.5746"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_605_67392"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_605_67392" result="shape"/></filter><filter id="filter1_d_605_67392" x="39.8915" y="40.9457" width="249.647" height="153.915" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.04069" operator="erode" in="SourceAlpha" result="effect1_dropShadow_605_67392"/><feOffset dy="4.05426"/><feGaussianBlur stdDeviation="5.5746"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_605_67392"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_605_67392" result="shape"/></filter><clipPath id="clip0_605_67392"><rect width="16.217" height="16.217" fill="white" transform="translate(247.137 35.1356)"/></clipPath><clipPath id="clip1_605_67392"><rect width="16.217" height="16.217" fill="white" transform="translate(303.133 63.1356)"/></clipPath></defs></svg>',
[430] Fix | Delete
'popupContentBtn' => '<div class="ctf-fb-extpp-lite-btn">' . self::builder_svg_icons()['tag'] . __( 'Lite users get 50% OFF', 'custom-twitter-feeds' ) .'</div>',
[431] Fix | Delete
'bullets' => [
[432] Fix | Delete
'heading' => __( 'And get much more!', 'custom-twitter-feeds' ),
[433] Fix | Delete
'content' => [
[434] Fix | Delete
__( 'Display photos, videos & GIFs', 'custom-twitter-feeds' ),
[435] Fix | Delete
__( 'Combine mulitple feeds into one', 'custom-twitter-feeds' ),
[436] Fix | Delete
__( 'Unlimited feeds, 12 daily updates', 'custom-twitter-feeds' ),
[437] Fix | Delete
__( 'Auto load tweets on scroll', 'custom-twitter-feeds' ),
[438] Fix | Delete
__( 'Powerful Tweet filters', 'custom-twitter-feeds' ),
[439] Fix | Delete
__( 'View tweets in a lightbox', 'custom-twitter-feeds' ),
[440] Fix | Delete
__( 'Multiple tweet layout options', 'custom-twitter-feeds' ),
[441] Fix | Delete
__( 'Fast & Friendly Support', 'custom-twitter-feeds' ),
[442] Fix | Delete
__( '30 Day Money Back Guarantee', 'custom-twitter-feeds' )
[443] Fix | Delete
]
[444] Fix | Delete
],
[445] Fix | Delete
'buyUrl' => sprintf('https://smashballoon.com/custom-twitter-feeds/demo/hashtag?utm_campaign=twitter-free&utm_source=feed-type&utm_medium=hashtag')
[446] Fix | Delete
],
[447] Fix | Delete
[448] Fix | Delete
'mediaExtension' => [
[449] Fix | Delete
'heading' => __( 'Upgrade to Pro to add Media, Replies & Twitter Cards', 'custom-twitter-feeds' ),
[450] Fix | Delete
'description' => __( 'Display photos, videos, and gifs in your Tweets, show replies to other Tweets, and display beautiful Twitter cards to showcase your links.', 'custom-twitter-feeds' ),
[451] Fix | Delete
'img' => '<svg width="384" height="264" viewBox="0 0 384 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g filter="url(#filter0_d_605_69520)"><rect x="61" y="61.5052" width="190.262" height="125.322" rx="3.41788" transform="rotate(-2 61 61.5052)" fill="white"/></g><g clip-path="url(#clip0_605_69520)"><rect x="68.0703" y="68.0983" width="176.59" height="111.651" rx="2.27859" transform="rotate(-2 68.0703 68.0983)" fill="#E2F5FF"/><path d="M120.926 177.971L248.449 173.518L244.552 61.9354L117.029 66.3886L120.926 177.971Z" fill="#86D0F9"/><path d="M152.809 176.858L248.451 173.518L246.105 106.341L153.879 109.561C151.992 109.627 150.516 111.21 150.582 113.096L152.809 176.858Z" fill="#E34F0E"/><mask id="path-5-inside-1_605_69520" fill="white"><path d="M131.614 157.648C131.862 164.734 129.608 171.68 125.248 177.27C120.887 182.86 114.699 186.738 107.767 188.223C100.834 189.708 93.6003 188.707 87.3325 185.394C81.0646 182.081 76.1626 176.667 73.4854 170.103L89.9485 163.389C91.0491 166.088 93.0644 168.313 95.6411 169.675C98.2179 171.037 101.192 171.449 104.042 170.838C106.892 170.228 109.436 168.634 111.228 166.335C113.021 164.037 113.947 161.182 113.846 158.269L131.614 157.648Z"/></mask><path d="M131.614 157.648C131.862 164.734 129.608 171.68 125.248 177.27C120.887 182.86 114.699 186.738 107.767 188.223C100.834 189.708 93.6003 188.707 87.3325 185.394C81.0646 182.081 76.1626 176.667 73.4854 170.103L89.9485 163.389C91.0491 166.088 93.0644 168.313 95.6411 169.675C98.2179 171.037 101.192 171.449 104.042 170.838C106.892 170.228 109.436 168.634 111.228 166.335C113.021 164.037 113.947 161.182 113.846 158.269L131.614 157.648Z" stroke="#59AB46" stroke-width="36.9005" mask="url(#path-5-inside-1_605_69520)"/></g><g filter="url(#filter1_d_605_69520)"><path d="M140.928 128.126C140.989 127.246 141.753 126.582 142.633 126.644L310.757 138.4C311.637 138.461 312.301 139.225 312.239 140.105L307.225 211.817C307.163 212.697 306.4 213.361 305.52 213.299L137.395 201.543C136.515 201.481 135.852 200.718 135.913 199.838L140.928 128.126Z" fill="white"/></g><rect x="187.566" y="148.202" width="102.239" height="12.7799" rx="1.04748" transform="rotate(4 187.566 148.202)" fill="#BFE8FF"/><rect x="185.785" y="173.699" width="69.4907" height="13.5786" rx="2.09495" transform="rotate(4 185.785 173.699)" fill="#BFE8FF"/><g clip-path="url(#clip1_605_69520)"><path d="M151.329 148.916L158.468 142.752C159.093 142.212 160.078 142.65 160.078 143.488L160.078 146.736C166.593 146.81 171.76 148.116 171.76 154.29C171.76 156.782 170.154 159.251 168.379 160.542C167.826 160.945 167.036 160.439 167.241 159.786C169.08 153.905 166.368 152.343 160.078 152.253L160.078 155.818C160.078 156.658 159.092 157.094 158.468 156.555L151.329 150.39C150.88 150.002 150.88 149.305 151.329 148.916Z" fill="#0096CC"/></g><defs><filter id="filter0_d_605_69520" x="52.0028" y="50.4252" width="212.514" height="149.88" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.41788" operator="erode" in="SourceAlpha" result="effect1_dropShadow_605_69520"/><feOffset dy="4.55717"/><feGaussianBlur stdDeviation="6.26611"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_605_69520"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_605_69520" result="shape"/></filter><filter id="filter1_d_605_69520" x="127.005" y="120.973" width="194.143" height="104.474" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feOffset dy="3.23831"/><feGaussianBlur stdDeviation="4.45268"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_605_69520"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_605_69520" result="shape"/></filter><clipPath id="clip0_605_69520"><rect x="68.0703" y="68.0983" width="176.59" height="111.651" rx="2.27859" transform="rotate(-2 68.0703 68.0983)" fill="white"/></clipPath><clipPath id="clip1_605_69520"><rect width="20.7673" height="20.7673" fill="white" transform="translate(150.992 141.216)"/></clipPath></defs></svg>',
[452] Fix | Delete
'popupContentBtn' => '<div class="ctf-fb-extpp-lite-btn">' . self::builder_svg_icons()['tag'] . __( 'Lite users get 50% OFF', 'custom-twitter-feeds' ) .'</div>',
[453] Fix | Delete
'bullets' => [
[454] Fix | Delete
'heading' => __( 'And get much more!', 'custom-twitter-feeds' ),
[455] Fix | Delete
'content' => [
[456] Fix | Delete
__( 'Display photos, videos & GIFs', 'custom-twitter-feeds' ),
[457] Fix | Delete
__( 'Combine mulitple feeds into one', 'custom-twitter-feeds' ),
[458] Fix | Delete
__( 'Unlimited feeds, 12 daily updates', 'custom-twitter-feeds' ),
[459] Fix | Delete
__( 'Auto load tweets on scroll', 'custom-twitter-feeds' ),
[460] Fix | Delete
__( 'Powerful Tweet filters', 'custom-twitter-feeds' ),
[461] Fix | Delete
__( 'View tweets in a lightbox', 'custom-twitter-feeds' ),
[462] Fix | Delete
__( 'Multiple tweet layout options', 'custom-twitter-feeds' ),
[463] Fix | Delete
__( 'Fast & Friendly Support', 'custom-twitter-feeds' ),
[464] Fix | Delete
__( '30 Day Money Back Guarantee', 'custom-twitter-feeds' )
[465] Fix | Delete
]
[466] Fix | Delete
],
[467] Fix | Delete
'buyUrl' => sprintf('https://smashballoon.com/custom-twitter-feeds/demo/hashtag?utm_campaign=twitter-free&utm_source=feed-type&utm_medium=hashtag')
[468] Fix | Delete
],
[469] Fix | Delete
[470] Fix | Delete
'autoscrollExtension' => [
[471] Fix | Delete
'heading' => __( 'Upgrade to Pro to add<br/>Infinite Scroll', 'custom-twitter-feeds' ),
[472] Fix | Delete
'description' => __( 'Automatically load more posts as the user reaches the end of the feed .', 'custom-twitter-feeds' ),
[473] Fix | Delete
'img' => '<svg width="396" height="264" viewBox="0 0 396 264" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_605_69687)"><path fill-rule="evenodd" clip-rule="evenodd" d="M205.405 -24C204.002 -24 202.865 -22.8626 202.865 -21.4595V59.8378C202.865 61.2409 204.002 62.3784 205.405 62.3784H303.216C304.619 62.3784 305.757 61.2409 305.757 59.8378V-21.4595C305.757 -22.8626 304.619 -24 303.216 -24H205.405ZM88.5405 -10.027C87.1374 -10.027 86 -8.88959 86 -7.48648V73.8108C86 75.2139 87.1374 76.3513 88.5405 76.3513H186.351C187.754 76.3513 188.892 75.2139 188.892 73.8108V-7.48649C188.892 -8.88959 187.754 -10.027 186.351 -10.027H88.5405ZM88.5405 90.3243C87.1374 90.3243 86 91.4618 86 92.8649V174.162C86 175.565 87.1374 176.703 88.5405 176.703H186.351C187.754 176.703 188.892 175.565 188.892 174.162V92.8649C188.892 91.4618 187.754 90.3243 186.351 90.3243H88.5405ZM202.865 78.8919C202.865 77.4888 204.002 76.3514 205.405 76.3514H303.216C304.619 76.3514 305.757 77.4888 305.757 78.8919V160.189C305.757 161.592 304.619 162.73 303.216 162.73H205.405C204.002 162.73 202.865 161.592 202.865 160.189V78.8919Z" fill="#DCDDE1"/><rect x="86" y="194" width="219" height="43" rx="4" fill="#0096CC"/><path d="M118.999 212.146C118.711 212.146 118.52 211.954 118.52 211.667V207.834C118.52 207.546 118.711 207.354 118.999 207.354C119.286 207.354 119.478 207.546 119.478 207.834V211.667C119.478 211.954 119.286 212.146 118.999 212.146Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.3" d="M118.999 223.646C118.711 223.646 118.52 223.454 118.52 223.167V219.333C118.52 219.046 118.711 218.854 118.999 218.854C119.286 218.854 119.478 219.046 119.478 219.333V223.167C119.478 223.454 119.286 223.646 118.999 223.646Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.3" d="M120.913 212.625C120.818 212.625 120.77 212.625 120.674 212.577C120.482 212.433 120.386 212.194 120.53 211.954L122.447 208.648C122.591 208.456 122.83 208.361 123.07 208.504C123.261 208.648 123.357 208.888 123.213 209.127L121.297 212.433C121.201 212.529 121.057 212.625 120.913 212.625Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.3" d="M115.163 222.592C115.068 222.592 115.02 222.592 114.924 222.544C114.732 222.4 114.636 222.16 114.78 221.921L116.697 218.615C116.841 218.423 117.08 218.327 117.32 218.471C117.511 218.615 117.607 218.854 117.463 219.094L115.547 222.4C115.451 222.496 115.307 222.592 115.163 222.592Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.93" d="M117.08 212.625C116.936 212.625 116.793 212.529 116.697 212.385L114.78 209.079C114.636 208.888 114.732 208.6 114.924 208.456C115.116 208.313 115.403 208.408 115.547 208.6L117.463 211.906C117.607 212.098 117.511 212.385 117.32 212.529C117.224 212.625 117.176 212.625 117.08 212.625Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.3" d="M122.83 222.592C122.686 222.592 122.543 222.496 122.447 222.352L120.53 219.046C120.386 218.854 120.482 218.567 120.674 218.423C120.866 218.279 121.153 218.375 121.297 218.567L123.213 221.873C123.357 222.065 123.261 222.352 123.07 222.496C122.974 222.544 122.926 222.592 122.83 222.592Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.65" d="M115.168 215.979H111.335C111.047 215.979 110.855 215.787 110.855 215.5C110.855 215.212 111.047 215.021 111.335 215.021H115.168C115.455 215.021 115.647 215.212 115.647 215.5C115.647 215.787 115.455 215.979 115.168 215.979Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.3" d="M126.668 215.979H122.835C122.547 215.979 122.355 215.787 122.355 215.5C122.355 215.212 122.547 215.021 122.835 215.021H126.668C126.955 215.021 127.147 215.212 127.147 215.5C127.147 215.787 126.955 215.979 126.668 215.979Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.86" d="M115.692 214.015C115.597 214.015 115.549 214.015 115.453 213.967L112.147 212.05C111.955 211.906 111.859 211.667 112.003 211.427C112.147 211.236 112.386 211.14 112.626 211.284L115.932 213.2C116.124 213.344 116.219 213.584 116.076 213.823C115.98 213.967 115.836 214.015 115.692 214.015Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.3" d="M125.657 219.765C125.561 219.765 125.513 219.765 125.418 219.717L122.111 217.8C121.92 217.656 121.824 217.417 121.968 217.177C122.111 216.986 122.351 216.89 122.591 217.034L125.897 218.95C126.088 219.094 126.184 219.333 126.041 219.573C125.945 219.717 125.801 219.765 125.657 219.765Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.44" d="M112.339 219.765C112.196 219.765 112.052 219.669 111.956 219.525C111.812 219.333 111.908 219.046 112.1 218.902L115.406 216.985C115.598 216.842 115.885 216.937 116.029 217.129C116.173 217.321 116.077 217.608 115.885 217.752L112.579 219.669C112.531 219.765 112.435 219.765 112.339 219.765Z" fill="white" stroke="white" stroke-width="0.887334"/><path opacity="0.3" d="M122.308 214.015C122.164 214.015 122.021 213.919 121.925 213.775C121.781 213.583 121.877 213.296 122.068 213.152L125.375 211.235C125.566 211.092 125.854 211.188 125.998 211.379C126.141 211.571 126.045 211.858 125.854 212.002L122.548 213.919C122.452 214.015 122.404 214.015 122.308 214.015Z" fill="white" stroke="white" stroke-width="0.887334"/><path d="M138.371 221.5H145.559V219.805H140.387V210.227H138.371V221.5ZM150.824 221.672C153.379 221.672 154.934 220 154.934 217.234V217.219C154.934 214.469 153.371 212.797 150.824 212.797C148.285 212.797 146.715 214.477 146.715 217.219V217.234C146.715 220 148.262 221.672 150.824 221.672ZM150.824 220.094C149.473 220.094 148.699 219.039 148.699 217.242V217.227C148.699 215.43 149.473 214.367 150.824 214.367C152.168 214.367 152.941 215.43 152.941 217.227V217.242C152.941 219.039 152.176 220.094 150.824 220.094ZM159.215 221.641C160.34 221.641 161.246 221.156 161.715 220.328H161.848V221.5H163.77V215.664C163.77 213.859 162.535 212.797 160.34 212.797C158.309 212.797 156.934 213.75 156.746 215.188L156.738 215.258H158.574L158.582 215.227C158.777 214.664 159.355 214.344 160.246 214.344C161.293 214.344 161.848 214.812 161.848 215.664V216.398L159.652 216.531C157.574 216.656 156.41 217.547 156.41 219.07V219.086C156.41 220.641 157.59 221.641 159.215 221.641ZM158.332 218.992V218.977C158.332 218.273 158.84 217.875 159.926 217.805L161.848 217.68V218.367C161.848 219.383 160.98 220.148 159.809 220.148C158.949 220.148 158.332 219.719 158.332 218.992ZM169.184 221.641C170.387 221.641 171.309 221.094 171.777 220.164H171.91V221.5H173.863V209.656H171.91V214.32H171.777C171.332 213.398 170.355 212.82 169.184 212.82C167.02 212.82 165.684 214.508 165.684 217.227V217.242C165.684 219.945 167.043 221.641 169.184 221.641ZM169.793 220C168.465 220 167.66 218.961 167.66 217.242V217.227C167.66 215.508 168.473 214.461 169.793 214.461C171.113 214.461 171.941 215.516 171.941 217.227V217.242C171.941 218.953 171.121 220 169.793 220ZM177.309 211.531C177.941 211.531 178.465 211.023 178.465 210.383C178.465 209.75 177.941 209.234 177.309 209.234C176.668 209.234 176.145 209.75 176.145 210.383C176.145 211.023 176.668 211.531 177.309 211.531ZM176.332 221.5H178.277V212.961H176.332V221.5ZM180.668 221.5H182.613V216.523C182.613 215.242 183.332 214.43 184.488 214.43C185.668 214.43 186.207 215.102 186.207 216.43V221.5H188.152V215.977C188.152 213.945 187.113 212.797 185.207 212.797C183.973 212.797 183.152 213.352 182.746 214.266H182.613V212.961H180.668V221.5ZM194.121 224.5C196.613 224.5 198.191 223.258 198.191 221.289V212.961H196.246V214.367H196.145C195.66 213.398 194.738 212.82 193.559 212.82C191.355 212.82 190.012 214.523 190.012 216.992V217.008C190.012 219.43 191.355 221.102 193.52 221.102C194.699 221.102 195.629 220.602 196.121 219.688H196.254V221.32C196.254 222.414 195.48 223.031 194.152 223.031C193.066 223.031 192.418 222.648 192.285 222.102L192.277 222.078H190.332L190.324 222.102C190.52 223.539 191.871 224.5 194.121 224.5ZM194.121 219.555C192.77 219.555 192.004 218.516 192.004 217.008V216.992C192.004 215.484 192.77 214.438 194.121 214.438C195.465 214.438 196.285 215.484 196.285 216.992V217.008C196.285 218.516 195.473 219.555 194.121 219.555ZM204.84 221.5H206.785V216.523C206.785 215.242 207.504 214.43 208.66 214.43C209.84 214.43 210.379 215.102 210.379 216.43V221.5H212.324V215.977C212.324 213.945 211.285 212.797 209.379 212.797C208.145 212.797 207.324 213.352 206.918 214.266H206.785V212.961H204.84V221.5ZM218.277 221.672C220.598 221.672 221.738 220.336 222.012 219.234L222.035 219.164H220.184L220.16 219.219C219.973 219.609 219.371 220.141 218.316 220.141C216.996 220.141 216.168 219.25 216.145 217.719H222.113V217.078C222.113 214.5 220.613 212.797 218.184 212.797C215.754 212.797 214.199 214.555 214.199 217.242V217.25C214.199 219.969 215.738 221.672 218.277 221.672ZM218.207 214.32C219.293 214.32 220.082 215.016 220.215 216.414H216.16C216.309 215.055 217.121 214.32 218.207 214.32ZM225.574 221.5H227.59L229.246 215.312H229.379L231.043 221.5H233.082L235.395 212.961H233.465L232.051 219.375H231.918L230.262 212.961H228.41L226.77 219.375H226.637L225.215 212.961H223.262L225.574 221.5ZM241.355 224.336H243.301V220.141H243.434C243.879 221.062 244.855 221.641 246.027 221.641C248.191 221.641 249.535 219.961 249.535 217.242V217.227C249.535 214.523 248.168 212.82 246.027 212.82C244.832 212.82 243.902 213.367 243.434 214.297H243.301V212.961H241.355V224.336ZM245.418 220C244.098 220 243.277 218.945 243.277 217.234V217.219C243.277 215.508 244.098 214.461 245.418 214.461C246.746 214.461 247.551 215.508 247.551 217.227V217.242C247.551 218.953 246.746 220 245.418 220ZM255.184 221.672C257.738 221.672 259.293 220 259.293 217.234V217.219C259.293 214.469 257.73 212.797 255.184 212.797C252.645 212.797 251.074 214.477 251.074 217.219V217.234C251.074 220 252.621 221.672 255.184 221.672ZM255.184 220.094C253.832 220.094 253.059 219.039 253.059 217.242V217.227C253.059 215.43 253.832 214.367 255.184 214.367C256.527 214.367 257.301 215.43 257.301 217.227V217.242C257.301 219.039 256.535 220.094 255.184 220.094ZM264.473 221.672C266.574 221.672 268.098 220.586 268.098 218.961V218.945C268.098 217.703 267.309 216.992 265.637 216.617L264.254 216.312C263.332 216.102 262.973 215.797 262.973 215.297V215.289C262.973 214.648 263.598 214.227 264.465 214.227C265.379 214.227 265.941 214.664 266.082 215.203L266.09 215.227H267.918V215.211C267.793 213.828 266.551 212.797 264.473 212.797C262.457 212.797 261.051 213.859 261.051 215.398V215.406C261.051 216.664 261.824 217.43 263.449 217.789L264.832 218.102C265.77 218.312 266.145 218.641 266.145 219.141V219.156C266.145 219.797 265.473 220.234 264.504 220.234C263.535 220.234 262.965 219.82 262.762 219.227L262.754 219.211H260.824V219.227C260.988 220.672 262.301 221.672 264.473 221.672ZM273.355 221.539C273.73 221.539 274.09 221.508 274.371 221.453V219.953C274.137 219.977 273.988 219.984 273.715 219.984C272.902 219.984 272.566 219.625 272.566 218.773V214.469H274.371V212.961H272.566V210.867H270.59V212.961H269.262V214.469H270.59V219.234C270.59 220.883 271.395 221.539 273.355 221.539ZM279.426 221.672C281.527 221.672 283.051 220.586 283.051 218.961V218.945C283.051 217.703 282.262 216.992 280.59 216.617L279.207 216.312C278.285 216.102 277.926 215.797 277.926 215.297V215.289C277.926 214.648 278.551 214.227 279.418 214.227C280.332 214.227 280.895 214.664 281.035 215.203L281.043 215.227H282.871V215.211C282.746 213.828 281.504 212.797 279.426 212.797C277.41 212.797 276.004 213.859 276.004 215.398V215.406C276.004 216.664 276.777 217.43 278.402 217.789L279.785 218.102C280.723 218.312 281.098 218.641 281.098 219.141V219.156C281.098 219.797 280.426 220.234 279.457 220.234C278.488 220.234 277.918 219.82 277.715 219.227L277.707 219.211H275.777V219.227C275.941 220.672 277.254 221.672 279.426 221.672Z" fill="white"/></g><rect opacity="0.6" x="69" width="257" height="68" fill="url(#paint0_linear_605_69687)"/><defs><linearGradient id="paint0_linear_605_69687" x1="197.5" y1="0" x2="197.5" y2="68" gradientUnits="userSpaceOnUse"><stop stop-color="#F3F4F5"/><stop offset="1" stop-color="#F3F4F5" stop-opacity="0"/></linearGradient><clipPath id="clip0_605_69687"><rect width="396" height="264" fill="white"/></clipPath></defs></svg>',
[474] Fix | Delete
'popupContentBtn' => '<div class="ctf-fb-extpp-lite-btn">' . self::builder_svg_icons()['tag'] . __( 'Lite users get 50% OFF', 'custom-twitter-feeds' ) .'</div>',
[475] Fix | Delete
'bullets' => [
[476] Fix | Delete
'heading' => __( 'And get much more!', 'custom-twitter-feeds' ),
[477] Fix | Delete
'content' => [
[478] Fix | Delete
__( 'Display photos, videos & GIFs', 'custom-twitter-feeds' ),
[479] Fix | Delete
__( 'Combine mulitple feeds into one', 'custom-twitter-feeds' ),
[480] Fix | Delete
__( 'Unlimited feeds, 12 daily updates', 'custom-twitter-feeds' ),
[481] Fix | Delete
__( 'Auto load tweets on scroll', 'custom-twitter-feeds' ),
[482] Fix | Delete
__( 'Powerful Tweet filters', 'custom-twitter-feeds' ),
[483] Fix | Delete
__( 'View tweets in a lightbox', 'custom-twitter-feeds' ),
[484] Fix | Delete
__( 'Multiple tweet layout options', 'custom-twitter-feeds' ),
[485] Fix | Delete
__( 'Fast & Friendly Support', 'custom-twitter-feeds' ),
[486] Fix | Delete
__( '30 Day Money Back Guarantee', 'custom-twitter-feeds' )
[487] Fix | Delete
]
[488] Fix | Delete
],
[489] Fix | Delete
'buyUrl' => sprintf('https://smashballoon.com/custom-twitter-feeds/demo/hashtag?utm_campaign=twitter-free&utm_source=feed-type&utm_medium=hashtag')
[490] Fix | Delete
],
[491] Fix | Delete
[492] Fix | Delete
'lightboxExtension' => [
[493] Fix | Delete
'heading' => __( 'Upgrade to Pro to enable the popup Lightbox', 'custom-twitter-feeds' ),
[494] Fix | Delete
'description' => __( 'View the photos and videos from your feed in a beautiful pop-up lightbox which allows users to experience your content without leaving your site.', 'custom-twitter-feeds' ),
[495] Fix | Delete
'img' => '<svg width="396" height="264" viewBox="0 0 396 264" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M50.6018 136.122L48.2658 134.019L39.3153 143.959L49.2558 152.91L51.3591 150.574L43.7704 143.726L50.6018 136.122Z" fill="#8C8F9A"/><path d="M347.2 119.809L345.097 122.145L352.686 128.993L345.854 136.597L348.19 138.7L357.141 128.76L347.2 119.809Z" fill="#8C8F9A"/><g clip-path="url(#clip0_605_69824)" filter="url(#filter0_d_605_69824)"><rect width="261.925" height="173.162" transform="translate(62.6836 52.392) rotate(-3)" fill="white"/><rect x="112.469" y="187.874" width="93.129" height="5.82056" rx="1.45514" transform="rotate(-3 112.469 187.874)" fill="#D0D1D7"/><rect x="113.152" y="200.952" width="53.8402" height="5.82056" rx="1.45514" transform="rotate(-3 113.152 200.952)" fill="#D0D1D7"/><circle cx="94.1758" cy="195.21" r="8.73084" transform="rotate(-3 94.1758 195.21)" fill="#DCDDE1"/><g clip-path="url(#clip1_605_69824)"><rect x="62.6836" y="52.3918" width="262.169" height="173.162" transform="rotate(-3 62.6836 52.3918)" fill="#E34F0E"/><rect x="191.141" y="20.5734" width="271.58" height="334.479" rx="55.73" transform="rotate(2.99107 191.141 20.5734)" fill="#DCDDE1"/><circle cx="141.742" cy="201.742" r="113.935" transform="rotate(-3 141.742 201.742)" fill="#0096CC"/></g></g><defs><filter id="filter0_d_605_69824" x="53.8248" y="34.2545" width="288.346" height="204.35" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/><feMorphology radius="3.32203" operator="erode" in="SourceAlpha" result="effect1_dropShadow_605_69824"/><feOffset dy="4.42938"/><feGaussianBlur stdDeviation="6.0904"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0"/><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_605_69824"/><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_605_69824" result="shape"/></filter><clipPath id="clip0_605_69824"><rect width="261.925" height="173.162" fill="white" transform="translate(62.6836 52.392) rotate(-3)"/></clipPath><clipPath id="clip1_605_69824"><rect width="262.15" height="121.608" fill="white" transform="translate(62.6836 52.3919) rotate(-3)"/></clipPath></defs></svg>',
[496] Fix | Delete
'popupContentBtn' => '<div class="ctf-fb-extpp-lite-btn">' . self::builder_svg_icons()['tag'] . __( 'Lite users get 50% OFF', 'custom-twitter-feeds' ) .'</div>',
[497] Fix | Delete
'bullets' => [
[498] Fix | Delete
'heading' => __( 'And get much more!', 'custom-twitter-feeds' ),
[499] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function