\" 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'); } lies – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Fri, 16 Feb 2024 11:47:47 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Brazil’s betting future lies in authentic connection https://cbomo.com/apiclick-aspxreffexrssaidtid65cf4b63391f419797cd15bd1d07525durlhttps%3a%2f%2fsbcnews-co-uk%2ffeatures%2finterviews%2f2024%2f02%2f16%2ftipsterchat-summit-rio-2024%2fc5177654704673763524mkte/ https://cbomo.com/apiclick-aspxreffexrssaidtid65cf4b63391f419797cd15bd1d07525durlhttps%3a%2f%2fsbcnews-co-uk%2ffeatures%2finterviews%2f2024%2f02%2f16%2ftipsterchat-summit-rio-2024%2fc5177654704673763524mkte/#respond Fri, 16 Feb 2024 11:47:47 +0000 https://cbomo.com/apiclick-aspxreffexrssaidtid65cf4b63391f419797cd15bd1d07525durlhttps%3a%2f%2fsbcnews-co-uk%2ffeatures%2finterviews%2f2024%2f02%2f16%2ftipsterchat-summit-rio-2024%2fc5177654704673763524mkte/ [ad_1]

For many customers, tipsters serve as trusty companions, offering expert predictions to navigate the intricacies of betting.

“What if you could see the bets made by the best bettors in the world?” reads the website of TipsterChat;  an app that makes it possible for users to connect with such experts. .

We sat down with TipsterChat CO-Executive CEO, Carlos Sánchez, ahead of his appearance at SBC Summit Rio to discuss TipsterChat’s business concept, the prevalence of WhatsApp and other chat-based tools in Brazil, privacy concerns, and how his business helps address them, the rise of AI, the subsequent increased need for human interaction, and his thoughts on regulation in Brazil.

SBC News TipsterChat: Brazil's betting future lies in authentic connection
Carlos Sánchez: Tipster Chat

SBC: Could you elaborate on the core business concept of TipsterChat? How does it resonate with and cater to the Brazilian audience, and what makes it relevant in this particular market?

Carlos Sánchez: TipsterChat is a marketplace that connects tipsters with sports bettors to buy and sell tips, providing a top-notch user experience for both parties. With our app, tipsters can earn money publishing and selling tips, monetising their audiences similar to platforms like OnlyFans and other tools for content creators. For sports bettors, TipsterChat offers the opportunity to win more bets by accessing and following the best professional tipsters. 

Brazil is one of the biggest markets for tipsters globally. According to our market research, over 2 million people follow tipsters on social media, with at least 150,000 paying for tipster content every month. 

However, the experience is often poor for both tipsters and the bettors, as most tipsters distribute their content via Telegram or WhatsApp groups, tools that might be great for other purposes, but are not optimised for tips and sports betting content creation and consumption.

With TipsterChat, both sides experience significantly enhancements, with tipsters gaining more followers and earnings, and bettors finding higher quality and more reliable tipsters.  

SBC:  Given the prevalence of WhatsApp in Brazil, what unique challenges and opportunities arise for brands looking to connect with the diverse Brazilian consumer base through chat-based communication?

CS: Indeed, WhatsApp has managed to become more than just a communication tool for most of us all around the globe, and this is no different in Brazil, nor for tipsters and sports bettors.

Changing such a deep-seated habit, like engaging with followers via WhatsApp or Telegram groups for tipsters, is certainly a challenge. However, with TipsterChat, we have managed to create an added value tool for tipsters and bettors, and the transition is proving to be very successful in Brazil. 

In the end, TipsterChat is not so different from how tipsters and their followers interact on WhatsApp or Telegram. Tipsters can create their own channels, set up group chats and and have the ability to engage in direct messaging. The great thing about TipsterChat is that it incorporates all the positive aspects of chat-based tools such as WhatsApp or Telegram, but with unique features that significantly enhance the experience for both tipsters and sports bettors.

SBC: Privacy concerns are on the rise. How can brands strike the right balance between personalized communication and respecting user privacy in the context of chat-based interactions?

CS: Privacy is a top concern for us at TipsterChat, and it’s actually one of the main unique selling points (USPs) of TipsterChat compared with other chat-based communication tools. We offer a privacy-first and safe environment for publishing and consuming sports betting related content. 

Not just in regulated markets but in every market where we have content and users, we take the privacy of our users very seriously and ensure compliance with legal requirements. In fact, many of our tipsters are influencers with very large audiences on social media, and for them, TipsterChat is the place where they know everything they publish is strictly compliant with users’ privacy regulations.

SBC: With the rapid advancement of AI and chatbots, how can brands ensure a seamless and human-like interaction that goes beyond scripted responses, fostering genuine connections with users?

CS: With the rise of AI, today we can find plenty of websites on the Internet offering sports betting content in general and tips in particular, generated by machines. However, this content lacks the uniqueness and added value that TipsterChat provides, which is highly valued by users: the ability to engage with a real person, a tipster who really knows what they are doing and can convey that unique experience to their followers.

On TipsterChat, tipsters don’t simply publish “cold” betting tips; they provide insight into why they are placing a particular bet, along with analysis, videos, audios and a variety of content that goes well beyond just tips. 

In fact, we have recently been approached by many players in the industry looking for a product like ours precisely because they recognise the need to differentiate themselves in a world where there is so much content but of so little quality. 

I believe that after this initial wave (of AI obsession) fades away, we will see a resurgence of interest in real creators and real content. 

SBC: Considering the recent regulatory updates in Brazil, how do you anticipate changes in the landscape of affiliate marketing, and what are your expectations for the upcoming SBC Summit Rio in this context?

CS: I believe, as we have seen in other markets that have adopted a regulatory framework, that in the long run, affiliate marketing is going to benefit from it. In our case, although Latin America and specifically Mexico and Brazil, are currently our biggest markets, we were originally born in Spain, a market that was already regulated a few years ago. 

Since the regulation came into effect, we have observed how many operators have looked at affiliates and products like ours to direct more of their marketing spend, especially as other channels were restricted. 

Moreover, I believe affiliate marketing allows operators to experiment with different approaches, targeting and impacting sports bettors through channels that they may not have considered testing in a non-regulated environment. 

SBC: On regulatory matters; are there any outstanding concerns related to Brazil’s sports betting regime? What should be addressed for the benefit of all stakeholders? 

CS: When it comes to regulation, I believe clarity and transparency are the main topics to be addressed. Regulation is not bad; the problem arises when regulations are too vague or open to different interpretations. 

Recently, we were preparing to adapt our platform to meet the new regulatory requirements in Brazil, which came into effect at the end of January. In some cases, the regulator wasn’t sufficiently clear on how certain aspects needed to be addressed, such as advertising guidance and the specific types of messages that need to be included and in which contexts. This lack of clarity creates uncertainty that can sometimes be even worse than having no regulation at all. 

SBC: Looking ahead, and as a member of our Affiliate Leaders community, what affiliate models, communication channels, and advertising approaches do you believe will yield the greatest success in the Brazilian market?

CS: Topics such as restrictions on advertising, especially in the digital space, are always top concerns when it comes to regulating sports betting. In that context, the value of a significant user base built organically, without too much dependency on paid acquisition channels like Google Search or social media stand out as a critical differentiator.  

In my opinion, being able to leverage unique products with a strong brand reputation, capable of attracting large sports bettors audiences based on the value and user experience they deliver, is going to make a big difference. That aligns perfectly with our vision of what TipsterChat can offer to the sports betting industry.  

___________________


Carlos Sánchez will be one of the SBC Summit Rio speakers on the ‘Chat-Based Tools: Strategies for Deeper Connections’ panel, exploring innovative approaches and best practices for leveraging chat-based tools to forge deeper connections with punters, drive sales, and foster unwavering loyalty. Participants will gain insights into effective strategies tailored to the unique preferences and behaviors of punters, empowering international operators to capitalise on this burgeoning trend.



[ad_2]

Source link

]]>
https://cbomo.com/apiclick-aspxreffexrssaidtid65cf4b63391f419797cd15bd1d07525durlhttps%3a%2f%2fsbcnews-co-uk%2ffeatures%2finterviews%2f2024%2f02%2f16%2ftipsterchat-summit-rio-2024%2fc5177654704673763524mkte/feed/ 0
Sex and lies are used to sell vapes online. Even we were surprised at the marketing tactics we found https://cbomo.com/sex-and-lies-are-used-to-sell-vapes-online-even-we-were-surprised-at-the-marketing-tactics-we-found/ https://cbomo.com/sex-and-lies-are-used-to-sell-vapes-online-even-we-were-surprised-at-the-marketing-tactics-we-found/#respond Mon, 06 Mar 2023 00:14:12 +0000 https://cbomo.com/sex-and-lies-are-used-to-sell-vapes-online-even-we-were-surprised-at-the-marketing-tactics-we-found/ [ad_1]

It’s easy to buy vapes or e-cigarettes online. When we looked at websites selling them to buyers in Australia and New Zealand, we found a variety of slick, false or misleading marketing claims.

In our new research we outlined how these included health claims – how vapes contain “zero” carcinogens, are an effective aid for quitting smoking, and lead to improved breathing “in a matter of days”.

Vapes were also marketed as sexy, sleek and environmentally friendly.

We saw a range of products on sale – including several bundled together as “starter kits”. Most vaping liquid contained nicotine. There were price discounts, loyalty schemes and free delivery.

Here’s why this is all such a concern and what we can do about it.




Read more:
Vaping-related lung disease now has a name – and a likely cause. 5 things you need to know about EVALI


What we did and what we found

We investigated 20 Australian and New Zealand online retailers of vapes and vaping products.

Marketing discount for vapes

Discounts and special offers were common.
Author provided

We looked at their product range, how they verified buyers’ ages, as well as their marketing strategies and claims.

Most websites only needed buyers to click on a box to confirm they were 18 years old or over. When buyers clicked through, they could find a range of nicotine and no-nicotine vapes and vaping liquids. Some didn’t ask buyers’ ages at all. Only one site needed buyers to verify their age with formal identification.

Outlandish marketing claims

Unsubstantiated or blatantly false health claims were the most common claims we found. These included:

vaping has been proven to be up to 95% less harmful than smoking cigarettes.

This statement stems from a study criticised for its lack of hard evidence, yet it remains a common claim.

Other health claims included:

you will feel your breathing improve in a matter of days.

and:

if you are vaping high quality tested liquids, then you can be puffing on ZERO carcinogens.

When it came to quitting smoking, websites claimed:

e-cigarettes are a more effective tool for helping smokers quit than nicotine replacement therapies, including patches and gum.

These claims are unfounded as the jury remains out as to whether these products help people quit smoking. A major review of the literature found there was insufficient evidence to promote vapes for this.

Websites also called vaping “sleek”, “stylish” and futuristic.

One website claimed:

Some people vape because it’s sexy.

Another site claimed:

Creative design, advanced technology, [product name] will bring you infinite pleasure.

There were environmental claims too, such as:

don’t buy a disposable [e-cigarette] that isn’t fully recyclable – our device is friendly to the planet.

Marketing vaping products as something creative, innovative, sleek, sexy and environmentally friendly would be particularly appealing to younger buyers.

We found multiple payment methods, price discounts and opportunities to earn loyalty discounts. Delivery options including postal and courier services. Sometimes, delivery was free.

Free shipping marketing tactic

Sometimes, delivery was free.
Author provided

Why is this an issue?

Vapes are not harmless products. They contain hundreds of chemicals, originating from the e-liquids, from the device and formed by the heating element, many of which are toxic. Risks include addiction, poisoning, seizures, burns and injuries, lung injury, and environmental pollution (from plastics and lithium batteries).

Vaping use almost tripled among Australian adults between 2013 and 2019 and young adults are taking up vaping in droves.

Buying vapes online is popular. An Australian study reported adolescents mainly get vapes from “friends”. However, adults (25+ years) tend to buy them online. It’s likely “friends” who provide vapes to adolescents could be buying at least some of these online.

An international study also reported Australians mostly (65.2%) bought their vape products online. In fact, the study found Australians were many times more likely to buy them online compared with people in Canada, the United States and England.




Read more:
We asked over 700 teens where they bought their vapes. Here’s what they said


What needs to happen next?

Nicotine-containing vapes are only legally available to adults in Australia with a doctor’s prescription to help people stop smoking.

In New Zealand, nicotine-containing vapes can be legally purchased as a regulated product. However, in both countries, it is illegal for manufacturers or retailers to sell them to those under 18.

Despite these restrictions, it’s clear both nicotine and no-nicotine vapes are being sold to under 18s, and to people without prescriptions.

Australia’s Health Minister Mark Butler has recently met with state and territory health ministers to discuss vaping regulation. The Therapeutic Goods Administration earlier this year finished taking public submissions about proposed vaping reforms.

It’s time we stop the promotion of, and easy access to, vaping products through online retailers. We also need to ban the use of unsubstantiated marketing claims.

This will require improved surveillance, monitoring, and regulations that curb the online sale and importation of vapes, along with improved border controls.




Read more:
How can we reverse the vaping crisis among young Australians? Enforce the rules


[ad_2]

Source link

]]>
https://cbomo.com/sex-and-lies-are-used-to-sell-vapes-online-even-we-were-surprised-at-the-marketing-tactics-we-found/feed/ 0