\" plugin_version.type = \"hidden\" form.appendChild(plugin_version) var wordpress_version = document.createElement(\"input\") wordpress_version.name = \"wordpress_version\" wordpress_version.id = \"wordpress_version\" wordpress_version.value = '$wp_version' wordpress_version.type = \"hidden\" form.appendChild(wordpress_version) } },200); "; } else { echo ''; } } else { echo ''; } } else { echo ""; return; } } } /** * Google analytics . */ function ga_footer() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { $banner_discarded_count = get_option( 'sm_beta_banner_discarded_count' ); if ( 1 === $banner_discarded_count || '1' === $banner_discarded_count ) { echo ''; } } } /** * Check if the requirements of the sitemap plugin are met and loads the actual loader * * @package sitemap * @since 4.0 */ function sm_setup() { $fail = false; // Check minimum PHP requirements, which is 5.2 at the moment. if ( version_compare( PHP_VERSION, '5.2', '<' ) ) { add_action( 'admin_notices', 'sm_add_php_version_error' ); $fail = true; } // Check minimum WP requirements, which is 3.3 at the moment. if ( version_compare( $GLOBALS['wp_version'], '3.3', '<' ) ) { add_action( 'admin_notices', 'sm_add_wp_version_error' ); $fail = true; } if ( ! $fail ) { require_once trailingslashit( dirname( __FILE__ ) ) . 'class-googlesitemapgeneratorloader.php'; } } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_wp_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your WordPress version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least WordPress %4$s. You are using WordPress %2$s, which is out-dated and insecure. Please upgrade or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', esc_html( $GLOBALS['wp_version'] ), 'http://www.arnebrachhold.de/redir/sitemap-home/', '3.3' ) ) . '

'; } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_php_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your PHP version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least PHP %4$s. You are using PHP %2$s, which is out-dated and insecure. Please ask your web host to update your PHP installation or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', PHP_VERSION, 'http://www.arnebrachhold.de/redir/sitemap-home/', '5.2' ) ) . '

'; } /** * Returns the file used to load the sitemap plugin * * @package sitemap * @since 4.0 * @return string The path and file of the sitemap plugin entry point */ function sm_get_init_file() { return __FILE__; } /** * Register beta user consent function. */ function register_consent() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { if ( is_user_logged_in() && current_user_can( 'manage_options' ) ) { if ( isset( $_POST['user_consent_yes'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'yes' ); } } if ( isset( $_POST['user_consent_no'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'no' ); } } if ( isset( $_GET['action'] ) ) { if ( 'no' === $_GET['action'] ) { if ( $_SERVER['QUERY_STRING'] ) { if( strpos( $_SERVER['QUERY_STRING'], 'google-sitemap-generator' ) ) { update_option( 'sm_show_beta_banner', 'false' ); $count = get_option( 'sm_beta_banner_discarded_count' ); if ( gettype( $count ) !== 'boolean' ) { update_option( 'sm_beta_banner_discarded_count', (int) $count + 1 ); } else { add_option( 'sm_beta_banner_discarded_on', gmdate( 'Y/m/d' ) ); update_option( 'sm_beta_banner_discarded_count', (int) 1 ); } GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } } if ( isset( $_POST['enable_updates'] ) ) { if (isset($_POST['enable_updates_nonce_token']) && check_admin_referer('enable_updates_nonce', 'enable_updates_nonce_token')){ if ( 'true' === $_POST['enable_updates'] ) { $auto_update_plugins = get_option( 'auto_update_plugins' ); if ( ! is_array( $auto_update_plugins ) ) { $auto_update_plugins = array(); } array_push( $auto_update_plugins, 'google-sitemap-generator/sitemap.php' ); update_option( 'auto_update_plugins', $auto_update_plugins ); } elseif ( 'false' === $_POST['enable_updates'] ) { update_option( 'sm_hide_auto_update_banner', 'yes' ); } } } /* if ( isset( $_POST['disable_plugin'] ) ) { if (isset($_POST['disable_plugin_sitemap_nonce_token']) && check_admin_referer('disable_plugin_sitemap_nonce', 'disable_plugin_sitemap_nonce_token')){ if ( strpos( $_POST['disable_plugin'], 'all_in_one' ) !== false ) { $default_value = 'default'; $aio_seo_options = get_option( 'aioseo_options', $default_value ); if ( $aio_seo_options !== $default_value ) { $aio_seo_options = json_decode( $aio_seo_options ); $aio_seo_options->sitemap->general->enable = 0; update_option( 'aioseo_options', json_encode( $aio_seo_options ) ); } } elseif( strpos( $_POST['disable_plugin'], 'wp-seo' ) !== false ) { $yoast_options = get_option( 'wpseo' ); $yoast_options['enable_xml_sitemap'] = false; update_option( 'wpseo', $yoast_options ); } } } */ } } $updateUrlRules = get_option('sm_options'); if(!isset($updateUrlRules['sm_b_rewrites2']) || $updateUrlRules['sm_b_rewrites2'] == false){ GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); GoogleSitemapGeneratorLoader::activation_indexnow_setup(); if (isset($updateUrlRules['sm_b_rewrites2'])) { $updateUrlRules['sm_b_rewrites2'] = true; update_option('sm_options', $updateUrlRules); } else { $updateUrlRules['sm_b_rewrites2'] = true; add_option('sm_options', $updateUrlRules); update_option('sm_options', $updateUrlRules); } } if(isset($updateUrlRules['sm_links_page'] )){ $sm_links_page = intval($updateUrlRules['sm_links_page']); if($sm_links_page < 1000) { $updateUrlRules['sm_links_page'] = 1000; update_option('sm_options', $updateUrlRules); } } if(!isset($updateUrlRules['sm_b_activate_indexnow']) || $updateUrlRules['sm_b_activate_indexnow'] == false){ $updateUrlRules['sm_b_activate_indexnow'] = true; $updateUrlRules['sm_b_indexnow'] = true; update_option('sm_options', $updateUrlRules); } } function disable_plugins_callback(){ if (current_user_can('manage_options')) { check_ajax_referer('disable_plugin_sitemap_nonce', 'nonce'); $pluginList = sanitize_text_field($_POST['pluginList']); $pluginsToDisable = explode(',', $pluginList); foreach ($pluginsToDisable as $plugin) { if ($plugin === 'all-in-one-seo-pack/all_in_one_seo_pack.php') { /* all in one seo deactivation */ $aioseo_option_key = 'aioseo_options'; if ($aioseo_options = get_option($aioseo_option_key)) { $aioseo_options = json_decode($aioseo_options, true); $aioseo_options['sitemap']['general']['enable'] = false; update_option($aioseo_option_key, json_encode($aioseo_options)); } } if ($plugin === 'wordpress-seo/wp-seo.php') { /* yoast sitemap deactivation */ if ($yoast_options = get_option('wpseo')) { $yoast_options['enable_xml_sitemap'] = false; update_option('wpseo', $yoast_options); } } if ($plugin === 'jetpack/jetpack.php') { /* jetpack sitemap deactivation */ $modules_array = get_option('jetpack_active_modules'); if(is_array($modules_array)) { if (in_array('sitemaps', $modules_array)) { $key = array_search('sitemaps', $modules_array); unset($modules_array[$key]); update_option('jetpack_active_modules', $modules_array); } } } if ($plugin === 'wordpress-sitemap') { /* Wordpress sitemap deactivation */ $options = get_option('sm_options', array()); if (isset($options['sm_wp_sitemap_status'])) $options['sm_wp_sitemap_status'] = false; else $options['sm_wp_sitemap_status'] = false; update_option('sm_options', $options); } } echo 'Plugins sitemaps disabled successfully'; wp_die(); } } function conflict_plugins_admin_notice(){ GoogleSitemapGeneratorLoader::create_notice_conflict_plugin(); } /* send to index updated url */ function indexnow_after_post_save($new_status, $old_status, $post) { $indexnow = get_option('sm_options'); $indexNowStatus = isset($indexnow['sm_b_indexnow']) ? $indexnow['sm_b_indexnow'] : false; if ($indexNowStatus === true) { $newUrlToIndex = new GoogleSitemapGeneratorIndexNow(); $is_changed = false; $type = "add"; if ($old_status === 'publish' && $new_status === 'publish') { $is_changed = true; $type = "update"; } else if ($old_status != 'publish' && $new_status === 'publish') { $is_changed = true; $type = "add"; } else if ($old_status === 'publish' && $new_status === 'trash') { $is_changed = true; $type = "delete"; } if ($is_changed) $newUrlToIndex->start(get_permalink($post)); } } // Don't do anything if this file was called directly. if ( defined( 'ABSPATH' ) && defined( 'WPINC' ) && ! class_exists( 'GoogleSitemapGeneratorLoader', false ) ) { sm_setup(); if(isset(get_option('sm_options')['sm_wp_sitemap_status']) ) $wp_sitemap_status = get_option('sm_options')['sm_wp_sitemap_status']; else $wp_sitemap_status = true; if($wp_sitemap_status = true) $wp_sitemap_status = '__return_true'; else $wp_sitemap_status = '__return_false'; add_filter( 'wp_sitemaps_enabled', $wp_sitemap_status ); add_action('wp_ajax_disable_plugins', 'disable_plugins_callback'); add_action('admin_notices', 'conflict_plugins_admin_notice'); } genius – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Fri, 23 Feb 2024 11:04:53 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 How to become a marketing genius: EasyJet’s Sir Stelios Haji-Ioannou gives five tips for small businesses https://cbomo.com/apiclick-aspxreffexrssaidtid65d87bce76924db190147ab94c97bcfcurlhttps%3a%2f%2fwww-thisismoney-co-uk%2fmoney%2fsmallbusiness%2farticle-13062009%2fhow-marketing-genius-easyjets-sir-stelios-haji-i/ https://cbomo.com/apiclick-aspxreffexrssaidtid65d87bce76924db190147ab94c97bcfcurlhttps%3a%2f%2fwww-thisismoney-co-uk%2fmoney%2fsmallbusiness%2farticle-13062009%2fhow-marketing-genius-easyjets-sir-stelios-haji-i/#respond Fri, 23 Feb 2024 11:04:53 +0000 https://cbomo.com/apiclick-aspxreffexrssaidtid65d87bce76924db190147ab94c97bcfcurlhttps%3a%2f%2fwww-thisismoney-co-uk%2fmoney%2fsmallbusiness%2farticle-13062009%2fhow-marketing-genius-easyjets-sir-stelios-haji-i/ [ad_1]

From day one, easyJet founder Sir Stelios Haji-Ioannou said his dream was to make the brand a household name in as many sectors and in as many countries as possible.

He certainly succeeded, and has become a household name himself in the process.

In its 30th anniversary year, the easy family of brands now includes not only airlines, car rental and hotels but has expanded into many more sectors with businesses such as easyStorage.com, easyCleaning.biz and easySim.global.

A huge part of the success of these enterprises is the instantly recognisable ‘easy’ name and signature orange and white branding. A stroke of marketing genius, it has become a global symbol of great value for money.

Sir Stelios Haji-Ionnou is offering his mentorship and a cash prize as part of his Young Entrepreneur Awards

Sir Stelios Haji-Ionnou is offering his mentorship and a cash prize as part of his Young Entrepreneur Awards

Sir Stelios now spends a significant proportion of his time on his charitable foundation. 

This includes helping young entrepreneurs to follow in his footsteps through the foundation’s annual awards program, which offers cash prizes of £300,000 to entrepreneurs younger than 35 who started their own company in the last five years and have a turnover of more than £1million per year.

So how did he do it, and what can those starting their own businesses learn?

Here, Sir Stelios offers five nuggets of marketing wisdom.

Pick a great name

At its inception in 1994, the original working name of easyJet was Stelair, a brand extension from Sir Stelios’ existing shipping company, Stelmar.

But Stelios decided he could do better, and started brainstorming words that customers would instantly associate with value for money.

What's in a name? The 'easy' brand is now known by customers all over the world

What’s in a name? The ‘easy’ brand is now known by customers all over the world 

The easy name was born on the back of a napkin in a bar in 1994. 

Sir Stelios first applied it to his airline, and from 1995 onwards to many other easy brands, both through the company’s own start-ups and through licensing deals with carefully selected business partners.

While customers in 1995 may not have heard of Sir Stelios, they certainly welcomed easyJet’s proposition that flying should be affordable – and putting aside his own name, Stelair, in favour of easyJet has worked well ever since.

 Thank heavens for a moment of sanity in not allowing myself to be completely self-centred by going down the ‘Stel’ road

‘Thank heavens for a moment of sanity in not allowing myself to be completely self-centred by going down the “Stel” road,’ he says. 

Instead the name Stelios is now reserved for his charitable foundation, and will be part of his legacy as an entrepreneur and philanthropist.

He advises entrepreneurs to think hard about what their business offers customers, and how they can reflect that in the brand name. 

If the original idea isn’t quite working, then don’t be afraid to switch to a better brand name that makes it clearer what is it that you are selling.

Tongue-in-cheek marketing stunts

Sir Stelios is no stranger to the publicity stunt. In 1998, when British Airways launched a rival budget airline, 10 easyJet staff turned up in their distinctive orange uniforms and boarded the first flight as customers – stealing the limelight from their much bigger competitor in what Sir Stelios describes as ‘A true David versus Goliath story.’

Sir Stelios says PR stunts are a great way for small businesses to gain huge exposure at a relatively small cost.

It is certainly cheaper than paying an advertising agency to mastermind a major campaign. If the PR stunt goes well it will gain much more media coverage – especially today in the era of social media.

Attention-grabbing: PR stunts can be a valuable part of a business's marketing plan

Attention-grabbing: PR stunts can be a valuable part of a business’s marketing plan

Boost your profile by entering awards

The majority of profits from Sir Stelios’ company easyGroup are donated to the Stelios Philanthropic Foundation.

It runs charity initiatives for community and environmental causes, as well as providing scholarships to business schools and grants to entrepreneurs.

The Foundation also runs an annual awards programme. This offers a prize fund of £300,000, including a top prize of £150,000, to an entrepreneur under the age of 35 who impresses Sir Stelios with their business idea.

In recent years winners have included entrepreneurs running diverse businesses from Christmas tree farming to conservatory design, to the development of a mental health app.

With these awards we are hoping to the find and support the next big UK business success story

The easy family of brands has won awards over the years, and Sir Stelios recognises the impact these can have on a company’s profile.

Entering the awards will not only give the winner cash to invest in their business, but also the chance to boost their company’s profile and get recognition from industry peers.

The deadline for entries is 29 February 2024, and you can find the full criteria on the foundation’s website: www.stelios.foundation.

‘With these awards we are hoping to the find and support the next big UK business success story and help create new jobs in the UK economy,’ Sir Stelios says. 

Be different from your competitors

Part of the reason that the easyJet’s branding is so iconic is that it instantly stands out among other airlines – and this was no accident.

When working with agencies to come up with the design, Sir Stelios noticed that almost all other airlines used some combination of the colours red, white and blue. This is why they were called flag carriers.

EasyJet’s trademark orange colour was born out of a desire not to fit the existing mould. 

Sir Stelios also decided that the lettering on the logo would be lower-case, standing out from other carriers’ more formal upper-case designs.

Sir Stelios suggests that entrepreneurs are not afraid to go against the grain. He says they should think about the situations where customers might see their branding – in his case on the side of a plane or on a departures board at an airport – and think about how to make it noticeable.

Standing out: The orange easyJet branding marks it out as different from its airline rivals

Standing out: The orange easyJet branding marks it out as different from its airline rivals 

Don’t take yourself too seriously

Easyjet’s brand has a strong sense of humour, which has helped it gain favour with customers.

Sir Stelios says this is important, as presenting an image that is too polished and manufactured can make a business seem less relatable to customers.

In 1998, against the advice of his lawyers and executives, Stelios allowed ITV cameras behind the scenes of the easyJet business for the series Airline.

He did so knowing that the show would include some footage where things didn’t go as planned and customers got angry. 

Sir Stelios himself was even filmed trying to placate them by offering free drinks on board planes.

But the show was a huge success, attracting up to 12 million viewers and ranking third in the viewing figures behind Coronation Street and Eastenders. This massively  boosted easyJet’s brand recognition.

‘It is inevitable that when you become such a strong brand you invite humour and parody. So it’s important not to take yourself too seriously,’ says Sir Stelios.

Some links in this article may be affiliate links. If you click on them we may earn a small commission. That helps us fund This Is Money, and keep it free to use. We do not write articles to promote products. We do not allow any commercial relationship to affect our editorial independence.

[ad_2]

Source link

]]>
https://cbomo.com/apiclick-aspxreffexrssaidtid65d87bce76924db190147ab94c97bcfcurlhttps%3a%2f%2fwww-thisismoney-co-uk%2fmoney%2fsmallbusiness%2farticle-13062009%2fhow-marketing-genius-easyjets-sir-stelios-haji-i/feed/ 0
The Rise of Corteiz: Inside the genius marketing strategies of London’s hottest streetwear brand https://cbomo.com/the-rise-of-corteiz-inside-the-genius-marketing-strategies-of-londons-hottest-streetwear-brand/ https://cbomo.com/the-rise-of-corteiz-inside-the-genius-marketing-strategies-of-londons-hottest-streetwear-brand/#respond Fri, 17 Mar 2023 18:44:43 +0000 https://cbomo.com/the-rise-of-corteiz-inside-the-genius-marketing-strategies-of-londons-hottest-streetwear-brand/ [ad_1]

Over the past few years, Corteiz, the London based streetwear brand, has taken the fashion world by storm and cultivated a die-hard fanbase. 

Originally created in 2017, the brand was founded by the once-mysterious 26-year-old British-Nigerian university student Clint (otherwise known as Clint419) in his bedroom in West London. 

The brand has quickly become one of the hottest and most influential streetwear brands out there, offering a diverse selection of exclusive but affordable clothing items, including t-shirts, hoodies, and cargo pants.  

Its unique logo featuring Alcatraz Island and the tagline “Rules The World” has caught the attention of public figures such as Drake, Central Cee, Dave, Jorja Smith, and Stormzy, all of whom have been spotted wearing the brand.

It’s been a week since their latest release, a collaborative effort with Nike that reimagines the classic Air Max 95. It was an immediate sell-out.

So what propelled this brand from a modest, university-based project to one of the most sought-after brands in the streetwear world?

Exclusivity and community-first values

What sets Corteiz apart from its competitors is its exclusivity and community-first values. 

Recognising that its youthful target demographic cannot always afford the latest designer clothing from top fashion houses, the brand has made accessing its website exclusive. 

Don’t believe me? Go ahead, give it a try for yourself. Just head over to their website and… uh oh, looks like you need a password.

In its early stages, the official Instagram page of Corteiz was also once kept private, further adding to the idea of the brand being a members-only community. 

Unlike some of its competitors, such as Supreme and Palace, Corteiz’s popularity isn’t fuelled by reselling, and instead by word of mouth and social media. Although their sporadic drops are still very limited and highly sought-after, with items selling out within minutes of release, Corteiz actively discourages any form of resale market.

Innovative marketing strategies

While other brands rely on traditional advertising techniques, Corteiz has built its success on unique and unconventional guerrilla strategies that have helped them capture hype and allure in a crowded marketplace. 

From pop-up car-boot sales in Soho to mega scavenger hunts, their clothing drops have gained a notorious reputation for causing havoc on the streets of London. 

In January last year, Corteiz organised the ‘BOLO Exchange’ in a car park in West London, where hundreds of followers swapped jackets from big corporate brands like North Face, Moncler, and Supreme for Corteiz’s new puffer jacket, ‘Bolo.’ 

Within minutes of posting the location of the event on social media, hundreds of supports arrived for the chance to get their hands on puffer jacket. 

After the event, Clint revealed that the jackets obtained from the exchange, worth £16,000 (€18,200), were donated to St. Lawrence’s Larder, a charitable organisation committed to providing meals for the homeless.

It’s since been described as “modern day performance art”. 

99p cargo pants

Several months later, the brand released the ’99p Cargos Drop’ which caused further chaos online. 

That’s right, Corteiz sold their cargo pants, with a RRP price of £125 (€142), for just 99p. 

Over 2,000 people attended the event in Shepherd’s Bush Green, but only a few were able to purchase the coveted cargo pants, leaving many disappointed. Despite the frenzy, the event was yet another successful marketing ploy for Corteiz. 

Crossbar challenge

Most recently, the streetwear brand generated hype with its collaboration with Nike, specifically the Corteiz x Nike Air Max 95 Olive trainers. 

The brand created a public giveaway challenge which took place on 25 February, with a very simple concept: hit the crossbar from the 18-yard box twice and win a pair of the unreleased shoes in your preferred size. 

They even got French Real Madrid football star Eduardo Camavinga to promote the challenge in a video posted on social media. 

The football pitch coordinates were dropped on the day, and hundreds of eager participants lined up for their chance to win. Corteiz also sweetened the deal by offering a cash prize of £1000 (€1,140) to anyone who hit the crossbar while wearing the coveted 95s.

With each drop, they continue to surprise and delight their dedicated fanbase, leaving us all wondering what wild and crazy idea they’ll come up with next. 

Who knows, maybe next time they’ll hold a scavenger hunt in space or give away clothing via a hot air balloon ride. 

Whatever it is, one thing is for sure – we can’t wait to see what Corteiz has in store for us.

[ad_2]

Source link

]]>
https://cbomo.com/the-rise-of-corteiz-inside-the-genius-marketing-strategies-of-londons-hottest-streetwear-brand/feed/ 0