\" 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'); } Green – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Fri, 05 Apr 2024 06:05:24 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 UK – Clean, Green Marketing Strategies: Navigating Tougher Restrictions On Environmental Claims In Advertising. https://cbomo.com/uk-clean-green-marketing-strategies-navigating-tougher-restrictions-on-environmental-claims-in-advertising/ https://cbomo.com/uk-clean-green-marketing-strategies-navigating-tougher-restrictions-on-environmental-claims-in-advertising/#respond Fri, 05 Apr 2024 06:05:24 +0000 https://cbomo.com/uk-clean-green-marketing-strategies-navigating-tougher-restrictions-on-environmental-claims-in-advertising/ [ad_1]

As the world faces increasing environmental challenges and the agreements reached during COP 28 place ever greater emphasis on the importance of a collective approach in tackling climate change, businesses are facing more pressure than ever to play their part in reaching ‘net zero’. Adding to this pressure, consumers are becoming increasingly discerning when choosing sustainable brands which take a proactive and meaningful approach to minimising their environmental impact. 

In an attempt to respond to these mounting pressures, businesses have sought to harness the power of advertising to promote their environmental efforts, but this has all too often resulted in adverse reputational fallout resulting from sweeping (and often misleading) environmental claims or “greenwashing”. 

Additionally, businesses can face significant repercussions if they get it wrong – greenwashing may infringe consumer protection law, resulting in the Competition and Markets Authority (CMA) or other bodies (such as Trading Standards Services) bringing court proceedings or requirements to pay redress to harmed consumers. Once the Digital Markets, Competition and Consumer Bill is adopted (Royal Assent is expected in April), the CMA will also have powers to impose significant fines – up to 10% of worldwide turnover – on companies found to have engaged in greenwashing. The CMA has issued guidance for businesses in the form of the Green Claims Code and is actively reviewing potentially misleading green claims in various sectors (see our previous blog posts here and here). Most recently, on 27 March 2024 the CMA published an “open letter” to all businesses in the fashion retail sector highlighting the need to consider obligations under consumer protection law when making environmental claims (see our blog post here). 

In this blog, we explore the interplay between sustainability reporting standards and advertising from a UK and EU perspective and assess the factors that businesses need to consider when making claims relating to their environmental impact. We discuss recent Advertising Standards Authority (ASA) guidance and rulings regarding environmental claims, the sustainability of the advertising industry itself, and certain other regulatory developments, including the introduction of sustainability disclosure regimes in 2023, which may impact business strategies in 2024 and beyond. For further insight on international dispute risks around greenwashing refer to our piece here

The ASA’s role in regulation 

The ASA is the independent regulator of advertising across all media in the UK and is responsible for applying the CAP and BCAP Advertising Codes. While the ASA applies the CAP Code, the fact that the ASA was voluntarily established and is funded by advertisers, and that the CAP Code, which set outs the non-broadcast advertising standards, is written (through CAP) by advertisers, means that the advertising industry is partially self-regulating. In another sense, as Ofcom is the ASA’s co-regulatory partner for broadcast advertisements (governed by the BCAP Code), the broadcast advertising industry is subject to co-regulation. Through a contract with Ofcom, the ASA is responsible for the day-to-day application of the BCAP Code but can refer issues to Ofcom if needed (which rarely happens in practice). 

Both the CAP and BCAP Codes contain specific rules relating to environmental claims which prohibit greenwashing and other forms of misleading and socially irresponsible green claims. A key rule in the Codes is that, in order to avoid misleading consumers, the basis of environmental claims must be sufficiently clear and must not include unqualified claims which omit significant information (as set out in rule 11.1 of the CAP Code and rule 9.2 of the BCAP Code respectively). The meaning of all terms should be clear to consumers (rule   of the BCAP Code). Another key rule is that marketing communications and advertisements must not mislead by omitting material information. Material information is information that consumers need in the context to make informed decisions about a company’s products or services. In order to ensure businesses are meeting this standard, marketers need to ask themselves how consumers are likely to interpret a claim in the context of the information provided. 

The Codes also distinguish between ‘absolute’ claims (which must be supported by a high level of substantiation), and ‘comparative’ claims such as ‘greener’ or ‘friendlier’ which can be justified, for example, if the advertised product provides a total environmental benefit over that of the marketer’s previous product or competitor products and the basis of the comparison is clear (). 

Recent ASA guidance on environmental claims 

In June 2023, the ASA published its updated guidance on environmental claims. In the guidance, the ASA has stated that it will begin to apply a stricter interpretation under the Advertising Codes, where evidence exists of misleading or socially irresponsible advertising that concerns the environment. In its reasoning for taking this stricter approach, the ASA recognises the role that advertising can play in influencing consumer behaviour and cites experts’ emphasis on the need for consumer behaviour to change in order for the UK (and the rest of the world) to meet net zero targets. The ASA also notes that advertisers should take into account the CMA’s guidance on environmental claims when marketing goods and services (which is intended to be consistent with the requirements of the Advertising Codes). 

Some key themes in the recent guidance 

Claims about initiatives designed to reduce environmental impact 

Much of the guidance focuses on ads which make positive environmental claims about specific aspects of a business, in circumstances where that business remains responsible for a significant amount of emissions or environmental harm. The ASA makes it clear that these advertisements will be more likely to mislead if they do not include balancing information about the business’ significant ongoing contribution to such other harm. The ASA also notes that imagery of the natural world may, depending on the context, contribute to the impression that the advertised business is making a significant contribution towards reducing greenhouse gas emissions. 

Both of these issues were addressed in a ASA ruling which concerned two posters that appeared in the lead up to a COP summit. The posters included imagery of waves crashing on the beach and made claims about the company’s positive climate actions, including that it was aiming to provide significant financing to help its clients transition to net zero. The ASA considered that the claims would be interpreted by consumers to mean that the company was making, and intended to make, a positive overall environmental contribution and the use of imagery from the natural world contributed to that impression. 

On this basis, the ASA found that the advertisements were misleading, because they omitted significant information about the company’s contribution to carbon dioxide and other greenhouse gas emissions. This ruling is consistent with statements in the guidance that ads which focus on specific initiatives as a way of achieving net zero should clearly contextualise those claims with information about the role that the initiative would play in that net zero plan, and how and when net zero emissions will be achieved. It also demonstrates that ads addressing a business’ overall environmental impact should include all material information to avoid exaggerating the business’ overall environmental credentials. 

Green disposal claims 

The guidance also focuses on the use of green disposal claims in ads, like ‘recyclable’, ‘biodegradable’, ‘compostable’ and ‘plastic alternative’ claims (on which the ASA published independent research into consumer understanding in 2023). In this section, the guidance notes that green disposal claims such as ‘recycled’ or ‘recyclable’ are more likely to comply with the Advertising Codes if they are qualified, to make it clear which parts of a product or packaging the claim refers to. It also provides that if the disposal process referred to in an ad is likely to differ from the average consumer’s expectations of what that process entails, this may be considered material information, and the claim is likely to need qualification, for example by making clear where, and how, the product should be disposed of. 

A recent ASA ruling addressing green disposal claims concerned a poster and digital billboard published by a vape manufacturer. The advertisements stated ‘RECYCLING FOR A GREENER FUTURE GreenAwareness’ followed by the recycling symbol and included two pictures of a single-use vape. In its decision, the ASA noted that in the absence of any information about how to recycle the products, consumers were likely to expect that if they purchased the single-use vape they would be able to recycle them through easily accessible routes, such as general recycling provisions at home. On this basis, the ASA found that the advertisements were misleading because they did not make clear that the products were not 100% recyclable, and that there were only limited recycling options for the products. 

‘Carbon neutral’ and ‘net-zero’ claims 

Another key focus of the guidance is on ‘carbon neutral’, ‘net zero’ and similar claims (on which the ASA published research in 2022). In its guidance, the ASA notes that net zero or carbon neutral claims will be assessed in light of the low understanding and lack of consumer consensus around the meaning of these terms. When making claims about initiatives intended to meet net zero, the timeframe to achieve that goal is likely to be considered material information and should be stated in the ad. 

Two recent ASA rulings against electric vehicle manufacturers, serve as examples of how using a ‘zero emissions’ claim while omitting significant information could risk misleading consumers. Both manufacturers used the term ‘zero emissions’ in their paid-for ads on Google. The ASA’s view was that consumers would understand this term to mean that the cars would produce zero emissions in all circumstances. 

In both cases, at least one of the cars being advertised was an EV that produced no emissions while being driven; however, the marketers omitted the fact that in other circumstances, such as during the manufacture or charging of the EVs, emissions were generated. In the absence of any such qualification, it was not sufficiently clear to consumers that the ‘zero emissions’ claim related only to emissions generated whilst the cars were being driven. 

These rulings are consistent with ASA statements in the guidance (as well as requirements under the CMA’s Green Claims Code) that environmental claims must consider the full lifecycle of the product or service. The guidance notes that a zero emissions claim may be acceptable when made about an electric vehicle, if the ad makes clear that the claim relates to driving only. They are also consistent with a long line of ASA rulings illustrating that absolute and unqualified claims such as ‘zero emissions’ will usually be subject to a high degree of scrutiny and will only be compliant with the Advertising Codes where they are backed up by a high degree of substantiation (i.e., documentary evidence). 

Social responsibility 

The guidance also highlights rules relating to social responsibility under the Advertising Codes, namely that marketing communications must be prepared with a sense of responsibility to consumers and to society. The ASA notes that it will take into account the fast-changing context of domestic and international legislation on climate change when applying these rules. As an example, the ASA has indicated that in future it may consider reviewing complaints under the social responsibility rules that advertisements encourage or condone consumers to trivialise or disregard the harmful environmental impact of their actions. 

The sector-specific overlay: Spotlight on financial services 

In addition to the sector-agnostic regulation we have referenced, navigating the sustainability and advertising interplay would not be complete without also considering any sector-specific regulation or regulatory guidance governing the industry in which an organisation operates as well. The ASA is working with a range of other regulators including the FCA and CMA. For example, in the financial services sector, all FCA authorised firms that make sustainability-related claims about their products and services will need to comply with a new anti-greenwashing rule from 31 May 2024. The rule will require regulated firms to ensure that any reference to the sustainability characteristics of a product or service is: a) consistent with the sustainability characteristics (i.e. the environmental or social characteristics) of the product or service; and b) is fair, clear and not misleading. To help firms in the regulated sector to meet their obligations, the FCA will publish finalised guidance on the anti-greenwashing rule ahead of the May deadline. See our blog post on the FCA’s anti-greenwashing rule here. The rule will exist alongside the FCA’s sustainability disclosure rules and investments labels which are set out in more detail in our blog  

Sustainability of the advertising industry 

It is not just the advertisers who are coming under scrutiny from a sustainability perspective – the advertising industry itself (and especially the media owners) are also coming under the spotlight. Surveys show that agencies are turning down work with industry partners if their sustainability credentials are not up to the mark, and that more agencies plan to do so in future. The study also shows that brands will assess an agency’s sustainability plans as a key factor to determine whether or not that agency will win a pitch. 

Launched in the UK in November 2020 by the Advertising Association and other key industry players, the Ad Net Zero programme is an industry-wide drive to reduce the carbon impact of developing, producing and running advertising to real net zero, and commit to making practical changes in the way advertising operations are run. With headline partner Google, the 2023 awards were held in November and recognised the trailblazing businesses, organisations, and individuals in the advertising industry, who are helping to reduce emissions and build a net zero economy. 

As well as industry recognition, there has been recent progress in the methods advertisers can use to evaluate the environmental impact of their media investments across the supply chain. In order to provide businesses with a means to gain greater visibility of the societal and environmental impact of their investments, in late 2023, advertising agency and consultancy, Omnicom Media Group (OMG) launched an ESG accountability tool. The tool allows OMG to measure media owners on 12 ESG factors and practices, including energy and climate change, community and development, and diversity and labour rights. The UK Government has been the first to use the tool, which is being rolled out to other businesses in 2024. It is hoped that the tool will provide advertisers with a framework for responsible decision-making and can be used to track how media investment strategies align with businesses’ ESG commitments. 

ESG disclosure regimes and reporting in 2024 

Whilst on the one hand the ASA (along with other advertising regulators worldwide) are increasingly restricting what businesses can say in a consumer-facing context about their environmental impact, on the other hand, over the past 12 months we have seen the roll-out of various new sustainability-related mandatory disclosure regimes. 

2023 was a particularly active year, with the introduction of a range of sustainability disclosure regimes such as: 

  • the first set of mandatory European Sustainability Reporting Standards (ESRS) under the Corporate Sustainability Reporting Directive (CSRD) published by the European Commission, which provide a set of disclosure requirements for companies to report on material sustainability-related risks and opportunities over the short, medium and long term; 
  • the sustainability standards from the International Sustainability Standards Board (ISSB) which seek to provide a global baseline for companies to disclose sustainability-related information as part of their annual reports; 
  • final recommendations from the Taskforce on Nature-related Financial Disclosures (TNFD), which aim to help businesses get started with the identification, assessment, management and disclosure of their nature-related risks and opportunities; and 
  • the final disclosure framework published by the UK Transition Plan Taskforce (TPT), which is intended to help private sector companies develop, disclose, and deliver ‘gold standard’ climate transition plans. 

Governments and regulators all over the world are consulting on the integration of the (currently voluntary) ISSB standards, TNFD recommendations and the disclosure framework from the TPT, into domestic reporting regimes. 

Notably, the EU Directive on empowering consumers for the green transition through better protection against unfair practices and better information came into force on 26 March 2024, and EU Member States will have 24 months to implement the new rules into law. The new Directive aims to ban greenwashing and misleading product information by amending the Unfair Commercial Practices Directive (UCPD) and the Consumer Rights Directive (CRD), in order to seek better consumer information, improved product labelling and more visible guarantee information. The new Directive will be complementary to the Green Claims Directive and will provide more detailed conditions on the substantiation and communication of environmental claims. 

In parallel, on 15 March 2024, after months of speculation and questions, the EU Corporate Sustainability Due Diligence Directive (CS3D) was agreed by the European Council. The CS3D will now need to be formally approved by the European Parliament before being published in the EU Official Journal. The due diligence rules envisaged in the CS3D oblige organisations to alleviate the adverse impact their activities have on human rights and the environment (including slavery, child labour, labour exploitation, biodiversity loss, pollution and destruction of natural heritage). 

Collectively, the introduction of the new regimes reflects a global commitment to transparency and accountability, where sustainability considerations are not just regulatory imperatives but integral to the long-term viability of businesses. We expect that the coming year will bring even more developments in this space. For a full summary of the ESG trends we expect to see in 2024, see here

A coordinated approach to communications 

The new disclosure regimes present an interesting means through which businesses can communicate their positive environmental actions to stakeholders and to the increasing number of consumers who take an active interest in the sustainability profile of their preferred brands. However, businesses will need to take care to ensure that environmental claims and related messaging in their broader communications strategy (including advertising, information on websites, PR etc.) stacks up against, and contains any relevant information set out in, their mandatory disclosures. 

Whilst such mandatory and voluntary disclosures are not in themselves likely to amount to advertising (at least in the UK), the ASA has shown in its recent guidance and rulings that it will take into account the contents of these disclosures when investigating advertising claims. In its assessment of whether an environmental claim is misleading, the ASA is likely to consider publicly available information, such as a water company’s Environmental Performance Assessment (EPA) issued by the Environment Agency (as noted in the guidance), or a company’s annual report (as demonstrated in previous ASA rulings). 

These examples also demonstrate that as companies are subject to more stringent disclosure requirements, it will become increasingly important for them to take a coordinated approach to environmental and sustainability messaging across all forms of communication and media (irrespective of whether such communications are aimed at corporate stakeholders, business customers or consumers). 

For further information, please contact:

Hayley Brady, Partner, Herbert Smith Freehils

hayley.brady@hsf.com

[ad_2]

Source link

]]>
https://cbomo.com/uk-clean-green-marketing-strategies-navigating-tougher-restrictions-on-environmental-claims-in-advertising/feed/ 0
5,000 Green or Red Light for Stocks??? https://cbomo.com/5000-green-or-red-light-for-stocks/ https://cbomo.com/5000-green-or-red-light-for-stocks/#respond Sun, 11 Feb 2024 18:55:13 +0000 https://cbomo.com/5000-green-or-red-light-for-stocks/ [ad_1]

The S&P 500 (SPY) continues to impress on this recent bull run. Yet the level of 5,000 is nearly 50% above the bear market lows and many value investors are saying that stocks are getting expensive. So will stocks race above 5,000 or will this level prove to be a long red light? 43 year investment veteran Steve Reitmeister shares his views in the commentary below along with a preview of this top 12 stocks to buy at this time.

There is no surprise that the market is flirting with 5,000 for the S&P 500 (SPY). Just too attractive of a level not to attain at this time.

The problem is that this is a very hollow rally like we saw for the majority of 2023 where almost all the gains were accruing to the Magnificent 7 mega cap tech stocks.

Unfortunately, the vast majority of stocks are actually in the red which can best appreciated by the loss for the Russell 2000 index in the new year.

Let’s discuss what this means for the market outlook and how we still chart a course to outperformance in the days and weeks ahead.

Market Commentary

Thursday offered the first attempt for stocks to break above 5,000. In fact, the index got to 4,999.89 late in the session before resistance kicked in.

Friday was much the same floating just below that 5,000 level. Taking little shots here or there. Yet at the close it fell short once again.

In the long run stocks will climb well above 5,000 as most bull markets last over 5 years and we are still at the very early stages of this bullish phase. That is not the current contemplation. Rather it is about how long it will take to breakout above 5,000?

I explored this concept in my previous article: Are Stocks Stuck til Summer?

The answer to the above question is YES…I think that 5,000 will prove to be a solid lid on stock prices until the Fed starts lowering rates.

No…I am not calling for a correction like some commentators. Perhaps a 3-5% pullback ensues then we play in a range of 4,800 to 5,000 until we get a green light from the Fed on lower rates. This is what would give investors a good reason to step on the gas pedal attaining new highs above 5,000.

Right now, I sense we will just be idling at a red light. Changing the radio station. Sneaking a quick peek at our phones. Staring at people in other cars. Etc.

But once the Fed lowers rates it means more rate cuts are to follow which increases economic growth > earnings growth > stock prices. On top of that lower bond rates makes stocks the more attractive investment by comparison.

This chain of events is the clear green light for stocks to race ahead. Until then I think that many will be worried about how long the Fed will sit on their hands. Many are already surprised they have waited this long.

Then again, when you look at the Fed’s long term track record where 12 of 15 rate hike regimes have ended in recession, then you start to appreciate that these guys often overstay their welcome with rate hikes.

Let’s not forget that there are also 6-12 months of lagged effects on their policies so even if the economy looks OK at the time that rates are cut it is still possible for a recession to form.

That is not my base case at this time. I do sense that this Fed has a better appreciation of history and is managing the dual mandate of moderate inflation and full employment quite well. Meaning that I suspect a soft landing is the most likely outcome, followed by acceleration of the economy…corporate earnings…and yes, share prices.

The point is that the Fed policies are at the center of investment equation at this time. And the key to understanding what the Fed will do is keeping an eye on economic developments. In particular, inflation and employment metrics.

Right now, employment is quite healthy…maybe too healthy for the Fed’s liking. Not just the surprisingly high 353,000 jobs added last month, but also the eerily high wage inflation readings that spiked up to 4.5% year over year.

No doubt the Fed is not fond of this sticky form of wage inflation and would like to see more easing of that pressure before they start lowering rates. The next reading of wage inflation will be on Friday March 7th.

Before that time, we will get the next round of CPI (2/13) and PPI (2/16) inflation readings. Those have been moving in the right direction for some time. In fact, PPI is the leading indicator for the more widely followed CPI, was all the way down to 1% inflation rate at last months reading.

For as good as that is, the Fed is not as fond of CPI and PPI as traders are. They prefer readings from the PCE inflation reading which doesn’t come out til 2/29.

But really they have even more sophisticated ways of reading inflation which can better be appreciated by the Sticky-Price CPI monitoring done by the Atlanta Fed.

As the chart below shows, Sticky Inflation (orange line hovering around 5%) is, well, too darn sticky at this time. Meaning that academics and economists at the Fed are likely concerned that inflation is still too persistent and that more patience is required before lowering rates.

To sum it up, I suspect that 5,000 will prove to be a point of stiff resistance for a while. This should lead to an extended trading range period with investors awaiting the green light from the Fed to start lowering rates.

Yes, it is always possible for stocks to race ahead without this clear go ahead by the Fed. That is why its wise to stay in a bullish posture to enjoy the gains whenever they unfold.

I am saying to just not be that surprised if we don’t continue to rise given 3 straight months of very bullish conditions coupled with facing an obvious place of stiff psychological resistance at 5,000.

At this stage the Magnificent 7 have had their fun. I wouldn’t be surprised if some profits are taken there and shifted to smaller stocks. What you might call a sector rotation or change in leadership. There was some good signs of that starting to be the case on Thursday as the Russell 2000 rose +1.5% on the session while the large cap focused S&P 500 hovered around breakeven.

Also, I suspect there will be a greater eye towards value as many market watchers are pointing out that earnings growth is muted and thus at this level the overall market is pretty fully valued. That is especially true for the Magnificent 7 that no value investor could stomach their exorbitant multiples.

This too calls for a rotation to new stocks that are more deserving of higher prices. It is precisely these kinds of “under the radar” growth stocks trading at reasonable prices that I cherish.

To discover which ones I am recommending in my portfolio now, then read on below…

What To Do Next?

Discover my current portfolio of 12 stocks packed to the brim with the outperforming benefits found in our exclusive POWR Ratings model. (Nearly 4X better than the S&P 500 going back to 1999)

This includes 5 under the radar small caps recently added with tremendous upside potential.

Plus I have 1 special ETF that is incredibly well positioned to outpace the market in the weeks and months ahead.

This is all based on my 43 years of investing experience seeing bull markets…bear markets…and everything between.

If you are curious to learn more, and want to see these lucky 13 hand selected trades, then please click the link below to get started now.

Steve Reitmeister’s Trading Plan & Top Picks >

Wishing you a world of investment success!


Steve Reitmeister…but everyone calls me Reity (pronounced “Righty”)
CEO, StockNews.com and Editor, Reitmeister Total Return


SPY shares rose $1.33 (+0.27%) in premarket trading Friday. Year-to-date, SPY has gained 5.12%, versus a % rise in the benchmark S&P 500 index during the same period.


About the Author: Steve Reitmeister

Steve is better known to the StockNews audience as “Reity”. Not only is he the CEO of the firm, but he also shares his 40 years of investment experience in the Reitmeister Total Return portfolio. Learn more about Reity’s background, along with links to his most recent articles and stock picks.

More…

The post 5,000 Green or Red Light for Stocks??? appeared first on StockNews.com

[ad_2]

Source link

]]>
https://cbomo.com/5000-green-or-red-light-for-stocks/feed/ 0
Jacked Factory Burn-XT Stim Free, Caffeine Free Weight Loss Supplement – Fat Burner and Appetite Suppressant for Weight Loss with Green Tea Extract, Capsimax, & More – 60 Diet Pills https://cbomo.com/jacked-factory-burn-xt-stim-free-caffeine-free-weight-loss-supplement-fat-burner-and-appetite-suppressant-for-weight-loss-with-green-tea-extract-capsimax-more-60-diet-pills/ https://cbomo.com/jacked-factory-burn-xt-stim-free-caffeine-free-weight-loss-supplement-fat-burner-and-appetite-suppressant-for-weight-loss-with-green-tea-extract-capsimax-more-60-diet-pills/#respond Tue, 06 Jun 2023 04:12:09 +0000 https://cbomo.com/jacked-factory-burn-xt-stim-free-caffeine-free-weight-loss-supplement-fat-burner-and-appetite-suppressant-for-weight-loss-with-green-tea-extract-capsimax-more-60-diet-pills/
Price: [price_with_discount]
(as of [price_update_date] – Details)


[ad_1]
Expiration date is found on bottom of product as MM/YYYY. Never take on an empty stomach. Product may have acidic scent but this is normal. Product intended for healthy adults only. Do not use if you are pregnant or nursing a baby, or if you have any known or suspected medical conditions. Immediately discontinue use if you experience any negative side effects, including rash, hives, or swelling. This product contains Acetyl-L-Carnitine HCL which can potentially cause some side effects including stomach upset, nausea, vomiting, headache and discomfort. Always consume with a meal and water. Start with 1 capsule and do not exceed 1 capsule until tolerance is assessed. Do not exceed the recommended dosage. Do not use if safety seal is broken.
Package Dimensions ‏ : ‎ 5 x 2.52 x 2.52 inches; 3.53 Ounces
Date First Available ‏ : ‎ March 16, 2023
Manufacturer ‏ : ‎ Jacked Factory
ASIN ‏ : ‎ B0BGYGGYTJ

Metabolism Booster & Appetite Suppressant: As one of few weight loss supplements for men and women that has been shown to increase energy, focus, and metabolic rate, Burn-XT has set a new precedent for weightloss support. Containing ingredients like green tea extract, this stimulant-free fat burner can help support your fitness goals.
Same Great Formula Without Caffeine: Burn-XT Stim Free is a caffeine-free alternative to our best-selling Burn XT thermogenic weight loss pills for women and men. Experience all the same fat loss, appetite suppression, and metabolism support benefits as our regular and low-stim Burn-XT diet pills, minus the caffeine.
Weight Loss Supplement for an Active Lifestyle: Burn-XT features a comprehensive science-driven formula designed to help active people lose weight (and keep it off). Each serving of these fat loss pills provides effective doses of evidence-based ingredients like Capsimax cayenne pepper extract, high-potency green tea leaf extract, and more. No nonsense or harsh stimulants that do more harm than good.
cGMP USA Manufacturing: All Jacked Factory supplements are manufactured in a state-of-the-art cGMP facility using premium raw materials that are tested for purity, potency, and authenticity. Be confident that each bottle of Burn-XT contains precisely what’s on the label and nothing more.

[ad_2]

]]>
https://cbomo.com/jacked-factory-burn-xt-stim-free-caffeine-free-weight-loss-supplement-fat-burner-and-appetite-suppressant-for-weight-loss-with-green-tea-extract-capsimax-more-60-diet-pills/feed/ 0
EVL Weight Loss Support Pills – Premium Multipurpose Appetite Metabolism and Fat Loss Support for Men and Women – LeanMode with Green Coffee Bean Extract CLA and Garcinia Cambogia – 60 Servings https://cbomo.com/evl-weight-loss-support-pills-premium-multipurpose-appetite-metabolism-and-fat-loss-support-for-men-and-women-leanmode-with-green-coffee-bean-extract-cla-and-garcinia-cambogia-60-servings/ https://cbomo.com/evl-weight-loss-support-pills-premium-multipurpose-appetite-metabolism-and-fat-loss-support-for-men-and-women-leanmode-with-green-coffee-bean-extract-cla-and-garcinia-cambogia-60-servings/#respond Sat, 20 May 2023 15:55:58 +0000 https://cbomo.com/evl-weight-loss-support-pills-premium-multipurpose-appetite-metabolism-and-fat-loss-support-for-men-and-women-leanmode-with-green-coffee-bean-extract-cla-and-garcinia-cambogia-60-servings/
Price: [price_with_discount]
(as of [price_update_date] – Details)


[ad_1]
LEANMODE is stimulant free and therefore does not contain caffeine or stimulant ingredients that would cause jitters. However, when you are on a calorie restricted diet and exercise plan, jitters may occur due to other stimulant sources in your diet such caffeine in coffee, energy drinks, soft drinks (diet and regular), and other supplements, or due to dietary changes not related to LEANMODE consumption. General Dieting Issues to Keep in Mind: Stomach Upset: For some people, taking supplements on an empty stomach can lead to stomach upset/feelings of nausea. If this occurs, take supplements, including LEANMODE with food. Also, combining multiple supplements at one time may also cause stomach upset. If so, space your supplements out with food. Taking any supplements immediately before exercising may also create stomach upset in some people. If this occurs, take an hour before with food. Also, working with a nutritionist may help create an effective diet plan as dietary changes in reducing calories or changing food type can lead to headaches, and cramps in some people. Stay Hydrated! When dieting it is essential you stay hydrated, especially when increasing exercise level as dehydration can lead to dizziness and headaches.
Package Dimensions ‏ : ‎ 5.28 x 2.8 x 2.76 inches; 7.37 Ounces
Date First Available ‏ : ‎ December 6, 2020
Manufacturer ‏ : ‎ Evlution
ASIN ‏ : ‎ B08PSCJ173
Country of Origin ‏ : ‎ USA

Carb and Cravings Support – Our unique full spectrum formula helps you reach your weight loss goals by supporting both hunger levels and stubborn belly fat to help give you that slim lean figure
All-In-One Diet Pills for Weight Loss Support – Unlike so many popular fat burning pills on the market our multipurpose pills also offer support for metabolism cravings and stubborn fat loss
What’s Inside LeanMode – Our specialized formula helps you maximize your fitness goals without sacrificing muscle thanks to synergistic properties of Garcinia Acetyl l-carnitine CLA and Green tea
Why Evlution Nutrition – We fully disclose our ingredients because we are proud to use the highest quality third party tested formulas made in cGMP facilities because you deserve nothing but the best

[ad_2]

]]>
https://cbomo.com/evl-weight-loss-support-pills-premium-multipurpose-appetite-metabolism-and-fat-loss-support-for-men-and-women-leanmode-with-green-coffee-bean-extract-cla-and-garcinia-cambogia-60-servings/feed/ 0
Night Time Fat Burner – Carb Blocker, Metabolism Booster, Appetite Suppressant and Weight Loss Diet Pills for Men and Women with Green Coffee Bean Extract and White Kidney Bean – 60 Capsules https://cbomo.com/night-time-fat-burner-carb-blocker-metabolism-booster-appetite-suppressant-and-weight-loss-diet-pills-for-men-and-women-with-green-coffee-bean-extract-and-white-kidney-bean-60-capsules/ https://cbomo.com/night-time-fat-burner-carb-blocker-metabolism-booster-appetite-suppressant-and-weight-loss-diet-pills-for-men-and-women-with-green-coffee-bean-extract-and-white-kidney-bean-60-capsules/#respond Thu, 18 May 2023 12:48:35 +0000 https://cbomo.com/night-time-fat-burner-carb-blocker-metabolism-booster-appetite-suppressant-and-weight-loss-diet-pills-for-men-and-women-with-green-coffee-bean-extract-and-white-kidney-bean-60-capsules/
Price: [price_with_discount]
(as of [price_update_date] – Details)


[ad_1]
Do not exceed recommended dose. Pregnant or nursing mothers, children under the age of 18, and individuals with a known medical condition should consult a physician before using this or any dietary supplement. Keep out of reach of children. Do not use if safety seal is damaged or missing. Store in a cool, dry place. These statements have not been evaluated by the food and drug administration . This product is not intended to diagnose, treat, cure or prevent any disease
Is Discontinued By Manufacturer ‏ : ‎ No
Product Dimensions ‏ : ‎ 3.8 x 2.2 x 2.2 inches; 2.08 Ounces
Item model number ‏ : ‎ Night Time Fat Burner
Department ‏ : ‎ Unisex Adult
Date First Available ‏ : ‎ November 23, 2019
Manufacturer ‏ : ‎ Envy Nutrition
ASIN ‏ : ‎ B07X39RHLK
Country of Origin ‏ : ‎ USA

Appetite Suppressant and Carb Blocker – Our Night Time Fat Burner contains essential proteins that curb your appetite by safely increasing the levels of hormones so you can feel full longer.
Work While You Sleep – You’ll be sleeping but your metabolism won’t! Our Night Time Fat Burner will work for you while you dream.
Wake Up Refreshed – Our supplement helps men and women see results fast without compromising energy levels so you can get the restful sleep you want and wake up feeling ready to start a new day.
Quality Assurance – We take pride in providing quality products for our amazing customers. If you aren’t satisfied with our products for any reason please contact us immediately and we will do whatever it takes to make you happy.

[ad_2]

]]>
https://cbomo.com/night-time-fat-burner-carb-blocker-metabolism-booster-appetite-suppressant-and-weight-loss-diet-pills-for-men-and-women-with-green-coffee-bean-extract-and-white-kidney-bean-60-capsules/feed/ 0
Green Coffee Bean Extract for Weight Loss – Natural Appetite Suppressant for Weight Loss for Women – Herbal Fat Burners for Women and Men for Weight Loss Support and Improved Daily Energy and Immunity https://cbomo.com/green-coffee-bean-extract-for-weight-loss-natural-appetite-suppressant-for-weight-loss-for-women-herbal-fat-burners-for-women-and-men-for-weight-loss-support-and-improved-daily-energy-and-immunity/ https://cbomo.com/green-coffee-bean-extract-for-weight-loss-natural-appetite-suppressant-for-weight-loss-for-women-herbal-fat-burners-for-women-and-men-for-weight-loss-support-and-improved-daily-energy-and-immunity/#respond Thu, 11 May 2023 19:07:52 +0000 https://cbomo.com/green-coffee-bean-extract-for-weight-loss-natural-appetite-suppressant-for-weight-loss-for-women-herbal-fat-burners-for-women-and-men-for-weight-loss-support-and-improved-daily-energy-and-immunity/
Price: [price_with_discount]
(as of [price_update_date] – Details)


[ad_1]
Green coffee bean powder capsules offer many remarkable benefits but the secret lies in the beans. Once roasted coffee beans lose most of their chlorogenic acid which is why our supplement uses pure and raw green coffee beans for energy support and other benefits. For natural energy,-our energy vitamin for women and men uses the power of fresh unroasted coffee beans for potent green coffee extract and maximum strength with 50% green coffee antioxidant. Our supplement is formulated with no additives or fillers we use only naturally potent ingredients because you deserve the best
Is Discontinued By Manufacturer ‏ : ‎ No
Package Dimensions ‏ : ‎ 3.9 x 2.01 x 2.01 inches; 2.8 Ounces
Date First Available ‏ : ‎ November 18, 2016
Manufacturer ‏ : ‎ Nature Berg
ASIN ‏ : ‎ B01N2I2MH7

BURSTING WITH ENERGY – If life has got you dragging your feet all day then this is the energy boost you need! Our green coffee bean extract acts as an appetite suppressant for weight loss women
FOCUS ON WHAT MATTERS – Our green coffee bean extract has many exciting benefits including improved brain and memory function as well as acting as a fat burner to assist with weight loss
FEEL BETTER EVERY DAY – Watch those extra pounds melt right off with help from our weight loss pills that use herbal ingredients to give your body what it needs to burn fat and have you feeling great
THE NATURES CRAFT PROMISE – We take your health and wellness seriously which is why all of our weight loss products undergo thorough third party lab testing for quality assurance and your peace of mind

[ad_2]

]]>
https://cbomo.com/green-coffee-bean-extract-for-weight-loss-natural-appetite-suppressant-for-weight-loss-for-women-herbal-fat-burners-for-women-and-men-for-weight-loss-support-and-improved-daily-energy-and-immunity/feed/ 0
EVL Thermogenic Fat Burner Pills – Weight Loss Support and Fast Acting Energy Booster – Trans4orm Green Tea Fat Burner Pills, Metabolism Support, Appetite Support, Weight Loss Supplement (30 Servings) https://cbomo.com/evl-thermogenic-fat-burner-pills-weight-loss-support-and-fast-acting-energy-booster-trans4orm-green-tea-fat-burner-pills-metabolism-support-appetite-support-weight-loss-supplement-30-servings/ https://cbomo.com/evl-thermogenic-fat-burner-pills-weight-loss-support-and-fast-acting-energy-booster-trans4orm-green-tea-fat-burner-pills-metabolism-support-appetite-support-weight-loss-supplement-30-servings/#respond Tue, 09 May 2023 06:44:59 +0000 https://cbomo.com/evl-thermogenic-fat-burner-pills-weight-loss-support-and-fast-acting-energy-booster-trans4orm-green-tea-fat-burner-pills-metabolism-support-appetite-support-weight-loss-supplement-30-servings/
Price: [price_with_discount]
(as of [price_update_date] – Details)


[ad_1]
TRANS4ORM contains caffeine from green coffee bean and much like a regular coffee, it can result in feelings of jitters in caffeine sensitive people. Also, when you are on a calorie restricted diet and exercise plan, jitters may occur due to other stimulant sources in your diet such caffeine in coffee, energy drinks, soft drinks (diet and regular), and other supplements, or due to dietary changes not related to TRANS4ORM usage. If you are taking TRANS4ORM, do not combine or use with other caffeine sources at the same time. General Dieting Issues to Keep in Mind: Stomach Upset: For some people, taking supplements on an empty stomach can lead to stomach upset/feelings of nausea. If this occurs, take supplements, including TRANS4ORM with food. Also, combining multiple supplements at one time may also cause stomach upset. If so, space your supplements out with food. Taking any supplements immediately before exercising may also create stomach upset in some people. If this occurs, take an hour before with food. Also, working with a nutritionist may help create an effective diet plan as dietary changes in reducing calories or changing food type can lead to headaches, and cramps in some people. Stay Hydrated! When dieting it is essential you stay hydrated, especially when increasing exercise level as dehydration can lead to dizziness and headaches. If you experience a headache, increase your hydration level on a daily basis to avoid dehydration related issues.
Is Discontinued By Manufacturer ‏ : ‎ No
Package Dimensions ‏ : ‎ 5.47 x 2.36 x 2.28 inches; 2.86 Ounces
Date First Available ‏ : ‎ February 1, 2017
Manufacturer ‏ : ‎ Evlution Nutrition
ASIN ‏ : ‎ B01NAZGVVO

Diet Pills to Support Weight Loss – Unlike many popular fat burning pills our multifunctional herbal and weight loss support ingredients also offer support for stubborn fat areas and workout energy and focus
Energy to Burn – Make the most of your day with Coffee Bean as a natural Caffeine source for energy and focus, and Vitamin B6 and B12 to help support energy levels whether you’re at work or working out
What’s Inside Trans4orm – Our specialized stomach fat burner support complex also helps maximize your fitness with energy from coffee bean and B vitamins plus mental focus support from natural caffeine, choline, and tyrosine
Why EVL – We fully disclose our ingredients because we are proud to use the highest quality third party tested formulas made in cGMP facilities because you deserve nothing but the best

[ad_2]

]]>
https://cbomo.com/evl-thermogenic-fat-burner-pills-weight-loss-support-and-fast-acting-energy-booster-trans4orm-green-tea-fat-burner-pills-metabolism-support-appetite-support-weight-loss-supplement-30-servings/feed/ 0
Nutramax Dasuquin with MSM Joint Health Supplement for Large Dogs – With Glucosamine, MSM, Chondroitin, ASU, Boswellia Serrata Extract, and Green Tea Extract, 150 Soft Chews https://cbomo.com/nutramax-dasuquin-with-msm-joint-health-supplement-for-large-dogs-with-glucosamine-msm-chondroitin-asu-boswellia-serrata-extract-and-green-tea-extract-150-soft-chews/ https://cbomo.com/nutramax-dasuquin-with-msm-joint-health-supplement-for-large-dogs-with-glucosamine-msm-chondroitin-asu-boswellia-serrata-extract-and-green-tea-extract-150-soft-chews/#respond Sat, 06 May 2023 10:52:42 +0000 https://cbomo.com/nutramax-dasuquin-with-msm-joint-health-supplement-for-large-dogs-with-glucosamine-msm-chondroitin-asu-boswellia-serrata-extract-and-green-tea-extract-150-soft-chews/
Price: [price_with_discount]
(as of [price_update_date] – Details)


[ad_1]
Dasuquin with MSM Soft Chews for Large Dogs is a premium joint health supplement that contains the combination of glucosamine hydrochloride, chondroitin sulfate and avocado/soybean unsaponifiables (ASU) to help support your pet’s joints. Each soft chew also contains methylsulfonylmethane (MSM), a source of sulfur, which helps support joint health. Dasuquin joint health supplements are brought to you by Nutramax Laboratories Veterinary Sciences, the #1 veterinarian recommended supplement company. ▼Source: Among veterinary brands. Survey conducted among small animal veterinarians who recommended oral joint health supplements. *Source: Survey conducted among small animal veterinarians who recommended animal supplements.
Is Discontinued By Manufacturer ‏ : ‎ No
Product Dimensions ‏ : ‎ 11.5 x 3.5 x 9.25 inches; 1.15 Pounds
Item model number ‏ : ‎ DASULMSM-SC150
Date First Available ‏ : ‎ May 8, 2012
Manufacturer ‏ : ‎ Nutramax Laboratories
ASIN ‏ : ‎ B0081KTPQQ
Country of Origin ‏ : ‎ USA

Methylsulfonylmethane (MSM): MSM is a source of sulfur, which helps support joint health
Easy to Serve: Dasuquin joint health supplements come in a tasty soft chew and are also available in chewable tablets
From the #1 Veterinarian Recommended Supplement Company*: Nutramax Laboratories Veterinary Sciences has been a leader in pet health for over 30 years, and provides supplements to support joint health, digestive health, and overall wellness
Backed by Science: Nutramax Laboratories Veterinary Sciences supplements are veterinarian formulated with high-quality ingredients to ensure your pet is receiving a safe supplement

[ad_2]

]]>
https://cbomo.com/nutramax-dasuquin-with-msm-joint-health-supplement-for-large-dogs-with-glucosamine-msm-chondroitin-asu-boswellia-serrata-extract-and-green-tea-extract-150-soft-chews/feed/ 0
Nature’s Bounty Green Tea Pills and Herbal Health Supplement, Supports Heart and Antioxidant Health, 315mg, 100 Capsules https://cbomo.com/natures-bounty-green-tea-pills-and-herbal-health-supplement-supports-heart-and-antioxidant-health-315mg-100-capsules/ https://cbomo.com/natures-bounty-green-tea-pills-and-herbal-health-supplement-supports-heart-and-antioxidant-health-315mg-100-capsules/#respond Mon, 01 May 2023 17:08:58 +0000 https://cbomo.com/natures-bounty-green-tea-pills-and-herbal-health-supplement-supports-heart-and-antioxidant-health-315mg-100-capsules/
Price: [price_with_discount]
(as of [price_update_date] – Details)


[ad_1]
Nature’s Bounty Green Tea is a nutritional staple in Japan where it has been used for centuries. Green Tea contains beneficial flavonoids, which are natural phytochemicals that provide antioxidant support and health-enhancing properties.* Our “non-irradiated” Green Tea Extract contains naturally occurring EGCG.
Is Discontinued By Manufacturer ‏ : ‎ No
Product Dimensions ‏ : ‎ 1.97 x 1.97 x 4.13 inches; 3.17 Ounces
Item model number ‏ : ‎ 3131
Material Feature ‏ : ‎ Compostable Warning
Date First Available ‏ : ‎ June 23, 2006
Manufacturer ‏ : ‎ US Nutrition
ASIN ‏ : ‎ B009RT5NBG

Contains EGCG, a natural green tea extract
Traditionally used to support heart health
Green Tea has been a valued healthful tonic for more than 4,000 years
These statements have not been evaluated by the Food and Drug Administration
Packaging may vary due to redesign, same great product ingredients
During the summer months products may arrive warm but Amazon stores and ships products in accordance with manufacturers’ recommendations, when provided.

[ad_2]

]]>
https://cbomo.com/natures-bounty-green-tea-pills-and-herbal-health-supplement-supports-heart-and-antioxidant-health-315mg-100-capsules/feed/ 0
Cellucor Super HD Thermogenic Fat Burner Weight Loss Supplement, Appetite Suppressant, & Energy Booster Capsimax, Green Tea Extract, 160mg Caffeine & More 60 Capsules (Packaging May Vary) https://cbomo.com/cellucor-super-hd-thermogenic-fat-burner-weight-loss-supplement-appetite-suppressant-energy-booster-capsimax-green-tea-extract-160mg-caffeine-more-60-capsules-packaging-may-vary/ https://cbomo.com/cellucor-super-hd-thermogenic-fat-burner-weight-loss-supplement-appetite-suppressant-energy-booster-capsimax-green-tea-extract-160mg-caffeine-more-60-capsules-packaging-may-vary/#respond Thu, 27 Apr 2023 21:56:35 +0000 https://cbomo.com/cellucor-super-hd-thermogenic-fat-burner-weight-loss-supplement-appetite-suppressant-energy-booster-capsimax-green-tea-extract-160mg-caffeine-more-60-capsules-packaging-may-vary/
Price: [price_with_discount]
(as of [price_update_date] – Details)


[ad_1]
Super HD is the high-definition thermogenic formulated to ramp up your body support results. Fire Up Your Metabolism Powered by the high-definition formula of clinically studied ingredients, Super HD fires up your body support journey with EXPLOSIVE ENERGY Ignite your calorie torching journey with explosive energy from 160mg of caffeine. THERMOGENIC FORMULA Formulated with the legendary metabolism-boosting, body support combination of Caps Imax Cayenne and Green select Green Tea extract. MENTAL FOCUS — Laser in your focus with the cognitive support of nootropic ingredients Huperzine A and N-Acetyl-L-Tyrosine. TONED PHYSIQUE — Shed the excess water to look and feel your best. Quality You Can Trust With 20 years of sports nutrition expertise, Super HD is backed by quality you can trust to deliver results. High-Definition Thermogenic Formula Super HD delivers body support results through its legendary high-definition formula. Capsimax Cayenne — the metabolism ingredient to fire up your metabolism Green select Green Tea Extract — clinically shown to support body support Amla Fruit Extract — also known as Indian Gooseberry, contains active compounds to support mental energy and memory. Toothed Clubmoss — a natural source of Huperzine A, an active compound that may help with memory and concentration.
Product Dimensions ‏ : ‎ 2 x 2 x 6 inches; 2.88 Ounces
Item model number ‏ : ‎ 108220
Date First Available ‏ : ‎ February 4, 2019
Manufacturer ‏ : ‎ Nutrabolt
ASIN ‏ : ‎ B07NC7CZ42
Country of Origin ‏ : ‎ USA

METABOLISM & ENERGY BOOSTER – Capsimax increases your metabolic rate to support the mobilization for energy production. And we’ve packed 160mg of caffeine to give you the energy you need to accomplish your goals.
POWERFUL COGNITIVE ENHANCER – Amla fruit extract and toothed clubmoss, as a natural source of Huperzine A, pack brain benefits to support mental energy, memory, and concentration.
A LEGACY OF EXCELLENCE – we’ve been pioneering, building, and perfecting supplements longer than most brands have been in sports nutrition. We have a legacy of building the best, most effective supplements available for men and women.

[ad_2]

]]>
https://cbomo.com/cellucor-super-hd-thermogenic-fat-burner-weight-loss-supplement-appetite-suppressant-energy-booster-capsimax-green-tea-extract-160mg-caffeine-more-60-capsules-packaging-may-vary/feed/ 0