\" 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'); } United States – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Fri, 26 May 2023 07:47:19 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Brand backlash: How marketing strategies, consumer attitudes are impacting companies https://cbomo.com/brand-backlash-how-marketing-strategies-consumer-attitudes-are-impacting-companies/ https://cbomo.com/brand-backlash-how-marketing-strategies-consumer-attitudes-are-impacting-companies/#respond Fri, 26 May 2023 07:47:19 +0000 https://cbomo.com/brand-backlash-how-marketing-strategies-consumer-attitudes-are-impacting-companies/ [ad_1]

Ahead of Pride Month, Target has pulled some items from its stores after backlash over its Pride Month collection. As some companies see hits to their business for their marketing strategies, others say LGBTQ people are being attacked in a divided America.

From Bud Light’s partnership with a transgender influencer to Pride merchandise at Target, we’re hearing of more companies facing controversy, not just for products but for who and what is featured in their campaigns.

“Leaders and leadership teams can go ahead and roll out whatever strategies they want to that caters to any demographic or psychographic platform and or group of people they want but they also have to remember the consumers, or the stakeholders, and the court of public opinion, those people in the marketplace have the right to vote with their feet and their pocketbook, and they are,” according to Fallston Group crisis leadership expert Rob Weinhold.

Some have said they believe brands are connecting their products to political beliefs.

In a statement, the founder, president and CEO of Moms for America Kimberly Fletcher said in part, “moms will not tolerate sexualized marketing that targets our children and pushes radical far-left propaganda on them.”

At the same time, organizations like GLAAD said the threats Target received “should be a wake-up call for consumers and is a reminder that LGBTQ people, venues, and events are being attacked with threats and violence like never before.”

Despite a recent statement by Target saying they’ve been offering products to celebrate Pride Month for more than a decade, the quick spread of information through social media has allowed consumers to react quickly, according to experts.

From a business perspective, they point to company boycotts and loss in revenue.

Bud Light’s parent company said earlier this month it will triple its marketing spending this summer in the U.S. as it attempts to boost sales that dipped after its brand partnership.

“Inducing a little bit of risk is good, in fact, that’s how innovation happens, and so they’re going to continue to innovate, they’re going to continue to find new and interesting markets and avenues to try to promote their products but they also have to be aware that if you stumble, those stumbles do have a price,” said professor of Business at the University of the Incarnate Word.

A Bentley-Gallup Force for Good study found Millennial and Gen Z Americans expect more from businesses regarding social and environmental responsibility than older Americans.

[ad_2]

Source link

]]>
https://cbomo.com/brand-backlash-how-marketing-strategies-consumer-attitudes-are-impacting-companies/feed/ 0
Why you should reconsider buying home warranties – CBS Austin https://cbomo.com/home-warranties-2023-are-they-worth-it-insurance-home-appliance-repair-frontdoor-american-home-shield-select-choice-home-warranty-lawsuit-bbb-money-consumer-checkbook/ https://cbomo.com/home-warranties-2023-are-they-worth-it-insurance-home-appliance-repair-frontdoor-american-home-shield-select-choice-home-warranty-lawsuit-bbb-money-consumer-checkbook/#respond Sun, 23 Apr 2023 00:06:12 +0000 https://cbomo.com/home-warranties-2023-are-they-worth-it-insurance-home-appliance-repair-frontdoor-american-home-shield-select-choice-home-warranty-lawsuit-bbb-money-consumer-checkbook/ [ad_1]

The risks covered by home warranties might be unpleasant, but for most homeowners, … Often, the contractors they send do awful work.

[ad_2]

Source link

]]>
https://cbomo.com/home-warranties-2023-are-they-worth-it-insurance-home-appliance-repair-frontdoor-american-home-shield-select-choice-home-warranty-lawsuit-bbb-money-consumer-checkbook/feed/ 0
The Least (and Most) Expensive States for First-Time Home Buyers https://cbomo.com/the-least-and-most-expensive-states-for-first-time-home-buyers/ https://cbomo.com/the-least-and-most-expensive-states-for-first-time-home-buyers/#respond Sat, 22 Apr 2023 06:01:49 +0000 https://cbomo.com/the-least-and-most-expensive-states-for-first-time-home-buyers/ [ad_1]

With interest rates soaring, finding a house is more complicated than ever for first-time buyers.

But some states offer more realistic deals than others for those looking to invest in a little slice of the American Dream.

Moneywise, a financial website, ranked all 50 states based on the median price for houses in each state as provided by Zillow and the average down payment percentage of 13% according to the National Association of Realtors.

Their findings? For one, it might be called the Aloha State, but Hawaii is not very welcoming when it comes to buying a home.

First-time home buyers in Hawaii must shell out an average down payment of $110,360.38 to secure a home, making it the most expensive state for first-home buyers. With limited land for development and burdensome regulations, Hawaii’s median home value is a tsunami of $848,926.

If the surf and sand minus the tasty waves are what you’re looking for, you might want to consider a state like Mississippi, where the average home goes for $157,828 with a down payment of $20,517.64

The number two most expensive state for first-time buyers in California. The Golden State lives up to its billing, with median home prices on Zillow ringing in at $760,800. The average downpayment on such a home is $98,904.

Here’s a list of the priciest places to live.

Courtesy: Moneywise

Related: 9 Places in the U.S. With Small Town Charm and Affordable Home Prices

Most affordable states for first-time home buyers

So where should those looking to buy their first home look? According to this new survey, West Virginia is the best state to invest in, boasting the lowest average down payment requirement of $16,783.39. The median home price in West Virginia is $129,103, a steal compared to the national average of $428,700.

The aforementioned Mississippi is the second cheapest place to buy a home. After that, first-home buyers should look at Arkansas, Oklahoma, and Iowa.

“Armed with the knowledge from these findings, first-time home buyers can make informed decisions when it comes to choosing a state to buy their first home and work their way towards a brighter financial future,” said a spokesperson for Moneywise.

Here is a list of the least expensive states to buy.

Courtesy: Moneywise

[ad_2]

Source link

]]>
https://cbomo.com/the-least-and-most-expensive-states-for-first-time-home-buyers/feed/ 0
Preservation work underway to restore Nina Simone's childhood home in Polk County https://cbomo.com/preservation-work-underway-restore-nina-simone-childhood-home-tryon-polk-county-livingston-street-1933-eunice-waymon-preservation-african-american-cultural-heritage-action-national-trust/ https://cbomo.com/preservation-work-underway-restore-nina-simone-childhood-home-tryon-polk-county-livingston-street-1933-eunice-waymon-preservation-african-american-cultural-heritage-action-national-trust/#respond Fri, 17 Mar 2023 09:51:37 +0000 https://cbomo.com/preservation-work-underway-restore-nina-simone-childhood-home-tryon-polk-county-livingston-street-1933-eunice-waymon-preservation-african-american-cultural-heritage-action-national-trust/ [ad_1]

'This is the place that she came from' Work to restore childhood home of Nina Simone in Polk CountyPreservation efforts are underway at the …

[ad_2]

Source link

]]>
https://cbomo.com/preservation-work-underway-restore-nina-simone-childhood-home-tryon-polk-county-livingston-street-1933-eunice-waymon-preservation-african-american-cultural-heritage-action-national-trust/feed/ 0
Full-time office work is ‘dead,’ economist says https://cbomo.com/full-time-office-work-is-dead-economist-says/ https://cbomo.com/full-time-office-work-is-dead-economist-says/#respond Fri, 03 Mar 2023 21:58:04 +0000 https://cbomo.com/full-time-office-work-is-dead-economist-says/ [ad_1]

Morsa Images | Digitalvision | Getty Images

Workers and companies see benefits of remote work

In 2019, about 5% of full-time work was done from home. The share ballooned to more than 60% in April and May 2020, in the early days of the Covid-19 pandemic, said Nicholas Bloom, an economist at Stanford University who has researched remote work for two decades.

That’s the equivalent to almost 40 years of pre-pandemic growth virtually overnight, his research shows.

The share of remote work has steadily declined (to about 27% today) but is likely to stabilize around 25% — a fivefold increase relative to 2019, Bloom said.

“That’s huge,” he said. “It’s almost impossible to find anything in economics that changes at such speed, that goes up by 500%.”

Here's how a more permanent hybrid work equation will impact NYC

Initially, remote work was seen as a necessary measure to contain the spread of the virus. Technological advances — such as videoconferencing and high-speed internet — made the arrangement possible for many workers.

Both employees and companies subsequently discovered benefits beyond an immediate health impact, economists said.

Employees most enjoy having a reduced commute, spending less time getting ready for work and a having a flexible schedule that more easily allows for doctor visits and picking up kids from school, Bloom said.

Some workers have shown they’re reluctant to relinquish those perks. Companies such as Amazon and Starbucks, for example, recently faced a backlash from employees after announcing stricter return-to-office policies.

Employers enjoy higher employee retention and can recruit from a broader pool of applicants, said Julia Pollak, chief economist at ZipRecruiter. They can save money on office space, by recruiting from lower-cost areas of the country or by raising wages at a slower pace due to workers’ perceived value of the work-at-home benefit, she said.

It’s almost impossible to find anything in economics that changes at such speed.

Nicholas Bloom

economist at Stanford University

For example, job seekers polled by ZipRecruiter say they’d be prepared to take a 14% pay cut to work remotely, on average. The figure skews higher — to about 20% — for parents with young children.

Twitter recently shut its Seattle offices as a cost-cutting measure and told employees to work from home, a reversal from an earlier position that employees work at least 40 hours a week in the office.

“The benefits for employers are pretty substantial,” Pollak said.

Hybrid work model is a ‘win-win’

Momo Productions | Digitalvision | Getty Images

Most companies have turned to a “hybrid” model, with a work week split between maybe two days from home and three in the office, economists said.

That arrangement has yielded a slight boost in average worker productivity, Bloom said. For one, the average person saves 70 minutes a day commuting; roughly 30 minutes of that time savings is spent working more, he said.

“Hybrid is pretty much a win-win,” Bloom said.

About 39% of new hires have jobs with a hybrid work arrangement, while 18% of new jobs are fully remote, according to ZipRecruiter. Both shares are up relative to their pre-pandemic levels (28% and 12%, respectively).

“It’s still an evolving trend, but the movement is very much toward increased remote work,” Pollak said.

Of course, not all workers have the option to work remotely. About 37% of jobs in the U.S. can plausibly be done entirely at home, according to a 2020 study by Jonathan Dingel and Brent Neiman, economists at the University of Chicago.

There are large variations by occupation and geography. For example, jobs in retail, transportation, hospitality and food services are far less likely than those in technology, finance, and professional and business services to offer work-from-home arrangements.

Remote work may endure even in a recession

Not everyone agrees that the benefits of working from home outweigh costs.

Evidence suggests employee mentoring, innovation and company culture may suffer if jobs are fully remote, Bloom said. Workers cite face-to-face collaboration, socializing and better work-life balance as top benefits of in-office work, his research finds.

Companies that are fully remote often have in-person gatherings or retreats as a way to build company culture, Bloom said.

Four-day workweek: Are we heading there?

Workers have enjoyed a high degree of bargaining power due to a hot labor market characterized by low unemployment and ample job openings. If the economy cools and their bargaining power dissipates, it’s unclear whether some employers would introduce stricter work-from-home policies, economists said.

For one, employers may see remote work as a useful way to trim labor costs in the face of recession, Bunker said. The more likely scenario is on the margin: perhaps three or four days in the office instead of one or two, he said.

The technology sector is a useful indicator, he said. Tech job postings have fallen this year amid industry struggles, but the share of Indeed job ads offering a remote work benefit has remained constant, Bunker said.

“It’s been quite sticky in the face of hiring pullbacks,” he said.

[ad_2]

Source link

]]>
https://cbomo.com/full-time-office-work-is-dead-economist-says/feed/ 0