\" 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'); } Survive – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Sun, 13 Aug 2023 00:05:15 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 A content creator’s greatest lesson: Adapt to survive https://cbomo.com/a-content-creators-greatest-lesson-adapt-to-survive/ https://cbomo.com/a-content-creators-greatest-lesson-adapt-to-survive/#respond Sun, 13 Aug 2023 00:05:15 +0000 https://cbomo.com/a-content-creators-greatest-lesson-adapt-to-survive/ [ad_1]

Adapting is the best way to survive. This is true of most facets of life, and especially true for an affiliate manager, but it might be frightening for a content creator to consider. The apps encourage consistency, and the workload forces you to do a lot, so to change when you find that the content just isn’t hitting the way you expect it to, is a daunting thought. Well, we’re here to tell you that if you adapt your way out of your rut as a content creator it is in fact very helpful to your brand, your growth, and your marketing opportunities. Read our guide to find out how:

It gives you more diverse content

Adapting to a new genre or format of content creation is great for a brand. It allows you to expand. You can start a second channel with a different angle, start a podcast, start streaming, or any number of options that will allow you to reach another audience. They will all have variations in demographics and have their own marketing opportunities. This means you can have multiple affiliate marketing partnerships coming from various channels, on various platforms.

It’s a method of avoiding burnout

Disclaimer: no one is saying that changing your content will entirely avoid burnout. Burnout is to be taken seriously and simply changing what you’re working on, rather than your work method and how much you are working, will not avoid burnout.

However, it could renew your interest in your content. A common comment on burnout is that many creators say they are getting bored of the thing they once loved. Often, content creators start not as a brand but as a person who simply wants to share their hobby online. If that then feels like work, you might lose the passion for the thing you once loved.

Our tip is that you might need to find something new to love, and if that scares you because you think the audience won’t be interested, read on to see that shifting gears might actually help you.

It allows the viewer to arrive for you, not for your content

The idea of changing your content to adapt might cause you to wonder if the audience will come with you on your new journey. It’s true you might need a sizeable audience before you make this shift, and it’s true a few stragglers might just decide they only watched you for what you were talking about, but you might be surprised at how many people stick around. Users consume their content not in spite of who is presenting it, but because of it. The personality is what sells most of it, and if the audience likes you enough, they will stick around to see what you do next. Remember, if you’re bored of your content, it’s likely your audience is, too.

Shift genres or shift formats?

The two most common ways to adapt your content are to switch up your genre or switch up your format. The latter is usually a matter of necessity. For example, if you were one of the famous Viners during the Vine era, you were likely a part of the “invasion” of YouTube when the short-form video app shut down. Additionally, if you get banned from Twitch, you’re likely to show up on YouTube, or vice versa.

Vine is also a lesson in adapting: six seconds was too short to do anything with, Vine refused to change, got bought out, died a death, and years later we have TikTok filling the short form video gap in the market.

The other way to go is to adapt the genre of your content. There are a lot of examples of big content creators shifting gears whether due to simply getting bored or their genre dying out, and it is treating them very well. Did you know, for example, that Mr “Jimmy Donaldson” Beast, the biggest YouTuber in the world, started out playing Minecraft? It wasn’t taking off the way the genre had led us all to believe, so he switched gears and essentially made his own genre of charitable content creation. H3H3 was once a skit and reaction channel, putting out 10-minute videos that gave the idea of trying too hard. Nowadays they are known as the H3 podcast where their more natural sense of humour and back and forth with the crew is explicit.

If you are interested in discovering more about affiliate marketing insights, and tips – sign up to our newsletter or search our blog for all the latest news and advice. Or for a more personalised approach, book a free call with a member of our agency team. If you’re looking to launch an affiliate program for your business, we can help you navigate and fast-track your program to success.

Looking to learn more about ELEVATING your affiliate performance?

Access our ELEVATE Summit ON DEMAND now – to discover the latest affiliate, performance, and partner marketing insights from across the globe and it’s all available to stream directly to your desk, no matter where you are! Available for a limited time only.

[ad_2]

Source link

]]>
https://cbomo.com/a-content-creators-greatest-lesson-adapt-to-survive/feed/ 0
Marketing During a Recession: Thrive, Don’t Just Survive https://cbomo.com/marketing-during-a-recession-thrive-dont-just-survive/ https://cbomo.com/marketing-during-a-recession-thrive-dont-just-survive/#respond Mon, 17 Jul 2023 15:15:59 +0000 https://cbomo.com/marketing-during-a-recession-thrive-dont-just-survive/ [ad_1]

TUSLA, Okla., July 17, 2023 /PRNewswire/ — A Midwest-based PR and marketing firm, Resolute, released a guide for businesses to maintain market share during an economic downturn. In response to price increases, marketing budgets tend to be the first to be cut across industries. However, Resolute CEO Nicole Morgan shares that businesses need to spend money to make money.

(PRNewsfoto/RESOLUTE PR)

(PRNewsfoto/RESOLUTE PR)

“While we’re not currently in a recession, financial experts have indicated we may be heading in that direction. It may seem counterproductive, but maintaining a marketing spend during an economic downturn leads to increased brand awareness, workforce retention, and long-term growth.”

Recessions don’t last forever. Historically, 75% of recessions end within a year and 30% only last two quarters. Instead of slashing budgets, consider optimizing strategies.

Stay Top of Mind with Brand Awareness
During a recession, consumers are more selective about spending. By investing in marketing, businesses can stay top of mind with consumers, which increases chances of being considered during purchasing decisions.

Building awareness and maintaining loyalty can help minimize business risk and project a state of stability to your customers. A creative marketing campaign can help differentiate your brand and increase appeal.

Workforce recruitment
Attracting and retaining talented employees is a critical aspect of growing any business. Marketing your competitive benefits is an investment that can lead to profitability in the long run.

On the flip side, building positive brand awareness can reduce reputation damage from layoffs or other cost-saving cuts.

Gain a competitive advantage
With less noise in the marketplace, businesses that continue to invest in marketing can gain competitive advantage to better reach their target audience.

Even if your budget remains the same, your competitors may decrease their spending, which creates less competition for ad space.

Marketing for long-term growth
While it may be tempting to reduce marketing expenses, businesses that do so risk sacrificing growth. Marketing contributes to long-term business success by building brand awareness, generating leads, and driving sales.

While reducing marketing spend may help your bottom line, this short-term strategy may hurt business down the road. Even though customers may not make certain purchases during a recession, they will remember brands that remained consistent.

Once the economy improves, customers are more likely to return to brands they remember and trust.

Adapting to the market during a recession  
During a recession, consumer behaviors and preferences may change. By investing in marketing, businesses can gather data on marketing trends and adjust strategies accordingly, ensuring they remain relevant and meet customer’s needs.

In short, investing in marketing during an economic recession can help businesses maintain their visibility, gain competitive advantage, drive long-term growth, and adapt to changes in the market. Continued marketing outreach and strategy development can help you thrive, not just survive, and outlast an economic recession or downturn.

About Resolute:
Resolute delivers bold and purposeful PR, marketing, and workforce recruitment strategies. Centered on research, innovation and brand-driven ROI, its award-winning team delivers proactive, pioneering ideas that move clients toward their goals. Learn more: www.resolutepr.com.

 

Cision

Cision

View original content to download multimedia:https://www.prnewswire.com/news-releases/marketing-during-a-recession-thrive-dont-just-survive-301877985.html

SOURCE RESOLUTE PR

[ad_2]

Source link

]]>
https://cbomo.com/marketing-during-a-recession-thrive-dont-just-survive/feed/ 0
3 Ways Your Business Can Survive an Economic Downturn https://cbomo.com/3-ways-your-business-can-survive-an-economic-downturn/ https://cbomo.com/3-ways-your-business-can-survive-an-economic-downturn/#respond Sat, 18 Mar 2023 15:00:37 +0000 https://cbomo.com/3-ways-your-business-can-survive-an-economic-downturn/ [ad_1]

  • It can be tempting to go straight to layoffs or cut marketing costs during an economic downturn.
  • Losing new business to less marketing and laying off experienced staff you’ll have to rehire are not the best ways to go.
  • Focus on messaging that resonates with customers, and never cut your marketing spend.

Last year, the US reached its highest rates of inflation since 1981 — 8.5% in July — shocking American consumers and bottlenecking the economy. Additionally, the US Bureau of Labor Statistics reported a 4.5% increase in labor costs last year, which helps workers keep up with inflation costs but places small businesses in a challenging position of losing out on profits and growth.

While business owners grapple with price increases on goods and services, fallback in American spending, and increased labor costs, the question of how to effectively market during a downturn becomes prominent.

Since I founded my business PostcardMania in 1998, I’ve encountered many different challenges along the way, including establishing an in-house direct mail printing facility and beating out my competitors. I’ve also survived two recessions; each one resulted in different outcomes for my company.

Today, I share the lessons I learned during those economic setbacks with anyone and everyone who wants to build a strong business that can withstand anything thrown at it. I’m relieved to say that PostcardMania grew last year despite terrible economic conditions — we had 15% growth in annual revenue and 7% growth in hiring.

I’ve narrowed these life lessons down to three key principles you should follow during an economic downturn. These principles have also been verified by extensive research on the subject, which I’ll share below as well.

1. Maintain (or even increase) your marketing

If there is anything you take away from reading this article, it’s that.

I learned this firsthand during the recession of 2008. Back then, 46% of our revenue came from clients in the mortgage and real estate industries. When the housing market plummeted, we lost thousands of clients, and our revenue dropped instantly. For the first time in the history of my company, we weren’t growing; in fact, we were contracting — fast.

By 2009, our situation was looking dire. I didn’t want to lay anyone off, so my advisors suggested cutting back on our marketing budget and mailing fewer postcards every week. So, I listened and ended up regretting it big time.

Our revenue shrunk 15% — a seven-digit loss — and we had fewer leads coming in, making it harder to bounce back. So, I took a big pay cut and fixed my mistake by increasing our marketing spend back to pre-crash totals. I also funneled more of my marketing budget into other industries (aside from real estate) that were buying from us.

Thankfully, after I corrected our marketing, our numbers recovered quickly, and 2010 became a new highest-ever year in our revenue.

When the pandemic hit in 2020, I wasn’t going to make the same mistake. I was dead set against cutting my marketing spend.

At first, our average weekly revenue fell 41% from mid-March to the end of May. We used our reserves to keep operations and payroll going. But since we held strong, July 2020 became a new highest-ever revenue month for us. Once again, the decision to keep marketing paid off.

Since 2020, my company’s revenue has grown an average of 17.5% annually. Previously, between 2009 and 2019, our annual revenue growth averaged only 4.6% — a huge difference!

I share this with everyone because continuing my marketing was one of the biggest lessons I learned as a business owner. But you don’t have to go on my word alone — there’s also extensive research to back up my experience.

McGraw-Hill research study analyzed 600 companies from 1980 to 1985 and concluded that businesses that chose to maintain or raise their level of advertising during a recession had significantly higher sales after the economy recovered. Not only did the companies that marketed during recessions perform better in the long run, but they also had 256% higher sales post-recession than the companies that didn’t maintain their marketing.

I know firsthand that spending money when you are barely surviving an economic crisis is challenging, but consider how much harder you’ll have to work to recover your losses because you stopped investing in communicating with potential customers.

The better option is to find smart ways to continue marketing your products and services rather than stop marketing completely.

2. Find ways to reduce expenses and maximize efficiency

You’ll have to get clever to weather an economic storm and come out strong. Review all areas of your business, and find ways to cut expenses, maximize efficiency, and keep marketing consistently.

The key is to achieve the right balance in cutting costs, making smart investments, and marketing to gain market share and increase profit margins. The Harvard Business Review did a study on effective business strategies during three different global recessions and grouped all 4,700 businesses they studied into four distinct categories: prevention-focused companies, promotion-focused companies, pragmatic companies, and progressive companies.

Prevention-focused companies prioritize making defensive moves and are more concerned with avoiding losses and minimizing risks. Examples would be conducting mass layoffs, cutting expenses, and reducing marketing and expansion. Promotion-focused companies do the complete opposite and spend a lot more on advertising and expansion to try to beat their competition. The pragmatic and progressive companies, on the other hand, do a combination of both offense and defense.

Researchers discovered that the progressive companies found a sweet spot and made some reductions in spending but continued their marketing. As a result, they had a 32% higher chance of outperforming their competition by 10% or more following a recession. Progressive companies also surpassed pragmatic companies by 4% in sales and more than 3% in earnings and did twice as well as the entire group.

You’ll have to take some time to analyze your business to find areas of change, but here are some to get you started:

  • Remove unnecessary expenses
  • Renegotiate repayment terms or prices with vendors
  • Consider going remote to save on office expenses
  • Examine your product or service to see if you can offer a lower-priced entry point
  • Save energy by reducing usage or changing work environments
  • Reduce business travel
  • Automate certain operations to save staff time on specific tasks

I mentioned that during the pandemic, I refused to stop marketing because I had learned my lesson years before. But the other hill I was ready to die on was not doing any layoffs, which is a common first move many companies make to save money.

I’m not saying “don’t ever do any layoffs,” because only you can determine what makes sense for your business. What I am saying is that you can look into other avenues to save money first before you eliminate team members already trained and experienced in your industry.

Since I didn’t lay off any staff in 2020, we didn’t have to re-hire and train new talent once businesses re-opened. PostcardMania was ready to rock ‘n roll and bring in leads while other companies were busy trying to get staff back up to speed. Avoid that setback by trying your hardest to keep your employees first.

3. Assess your messaging and adjust if needed

My final recommendation on how to market effectively when the market is down is to take more time crafting the right messaging to your audience. During a crisis, many families are forced to go into survival mode because the cost of basic necessities like eggs and milk has gone up, and they have to cut back in other areas to compensate. The worst thing you can do is say something alienating to them, so keep your messaging relevant to their needs.

For example, LG Electronics’ slogan is “Life’s Good,” but they didn’t use it in their marketing during the 2008 recession because they did not want to seem out of touch with members of their audience who could be struggling.

Most people spend less during an economic downturn, but they will spend whether it’s out of necessity or desire to escape from the stressful conditions. It may mean your customers will act choosier in their purchases and will also need the right motivation to make a move.

For example, a gym membership may seem like a luxury when times are tough, but reframing your message to say that exercise helps families cope with stress and maintain health and happiness will sit with them more comfortably.

With that in mind, not everyone is broke when the economy is crashing. There will still be people who can afford your products or services, so don’t forget about their needs either. The key is to know your audience well and speak to them as if you were walking in their shoes. The more relatable you can be in your marketing, the more they will trust you and remain faithful customers, whether their wallets are skinny or fat.

Applying these three principles has sustained my business through the most difficult setbacks over two decades. With that said, the best way to learn is to do — and over the years, I’ve tried many different approaches to business and received different results. Don’t be afraid to try different strategies during an economic crisis. The experience you gain is priceless.

Joy Gendusa is the founder and CEO of PostcardMania.

[ad_2]

Source link

]]>
https://cbomo.com/3-ways-your-business-can-survive-an-economic-downturn/feed/ 0