\" 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'); } Raketech – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Thu, 17 Aug 2023 15:09:48 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Raketech ups  2023 guidance on ‘better-balanced product mix’ https://cbomo.com/apiclick-aspxreffexrssaidtid64de383a1d2042f89b28df7a8d98cec7urlhttps%3a%2f%2fsbcnews-co-uk%2feurope%2f2023%2f08%2f17%2fraketech-ups-2023-guidance%2fc14681759900219986227mkten-us/ https://cbomo.com/apiclick-aspxreffexrssaidtid64de383a1d2042f89b28df7a8d98cec7urlhttps%3a%2f%2fsbcnews-co-uk%2feurope%2f2023%2f08%2f17%2fraketech-ups-2023-guidance%2fc14681759900219986227mkten-us/#respond Thu, 17 Aug 2023 15:09:48 +0000 https://cbomo.com/apiclick-aspxreffexrssaidtid64de383a1d2042f89b28df7a8d98cec7urlhttps%3a%2f%2fsbcnews-co-uk%2feurope%2f2023%2f08%2f17%2fraketech-ups-2023-guidance%2fc14681759900219986227mkten-us/ [ad_1]

Raketech Plc cites confidence in achieving its full-year 2023 financial and corporate objectives, following record-breaking Q2 results. 

Publishing its latest trading update, Raketech sees its media network achieve all-time high quarterly revenue of €17.6m. The revenue result reflects a 56% increase on 2022 Q2 comparatives of €11.3m.

The Nordic Nasdaq media group underscored “an organic growth of 56.0%” combined with “strong development within Sub-affiliation/Network was complemented by continued stable growth within high-margin Affiliation Marketing”.

A breakdown of units saw the ‘Affiliate Marketing’ division (lead generation and performance marketing) register a 28% increase in sales to €10.3m.

However, Raketech’s Sub-Affiliate business (managed solutions) marked as the standout performer generating a 192% increase in Q2 sales of €6.3m.

Elsewhere, the firm’s new ‘Betting Tips’ unit registered a 6% decline in sales to €1m, corresponding to a seasonal sports slowdown in the US – with performance expected to recover from September onwards. 

In its ‘Growth Plans’, Raketech cited a strong outlook for its ‘Affiliation Cloud’ solution which reached the ‘+500 available operator deals’.

Detailing a ‘better-balanced product mix’, Raketech registered an underlying Q2 EBITDA of €5.5m (31% margin), up 45% on 2022 results of €4m.

H2 trading sees Raketech governance upgrade its full-year guidance forecasting revenues of EUR 65-70m and FY EBITDA of €23-€25m, and a free cash flow of €13m-€15m – driven by strong commercial projections for its Casumba media property and Sub-affiliation/Network.

Raketech CEO, Oskar Mühlbach, said: “Raketech continued to deliver strong growth during the second quarter of 2023, with total revenues of €17.6m, another all-time high for the group, corresponding to an organic growth of 56% Y/Y.

“A particularly strong development within Sub-affiliation/Network was complemented by continued stable growth within high-margin Affiliation Marketing, resulting in an EBITDA of €5.5m, we remain confident about our recently upgraded full-year guidance for 2023.”



[ad_2]

Source link

]]>
https://cbomo.com/apiclick-aspxreffexrssaidtid64de383a1d2042f89b28df7a8d98cec7urlhttps%3a%2f%2fsbcnews-co-uk%2feurope%2f2023%2f08%2f17%2fraketech-ups-2023-guidance%2fc14681759900219986227mkten-us/feed/ 0
Revenue reaches record €15.8m at Raketech in Q1 https://cbomo.com/apiclick-aspxreffexrssaidtid645d0cdff07245f481803044b889fe09urlhttps%3a%2f%2figamingbusiness-com%2ffinance%2fquarterly-results%2frevenue-reaches-record-e15-8m-at-raketech-in-q1%2fc1130263149/ https://cbomo.com/apiclick-aspxreffexrssaidtid645d0cdff07245f481803044b889fe09urlhttps%3a%2f%2figamingbusiness-com%2ffinance%2fquarterly-results%2frevenue-reaches-record-e15-8m-at-raketech-in-q1%2fc1130263149/#respond Thu, 11 May 2023 15:42:26 +0000 https://cbomo.com/apiclick-aspxreffexrssaidtid645d0cdff07245f481803044b889fe09urlhttps%3a%2f%2figamingbusiness-com%2ffinance%2fquarterly-results%2frevenue-reaches-record-e15-8m-at-raketech-in-q1%2fc1130263149/ [ad_1]

Affiliate group Raketech said growth in its core affiliation marketing segment helped drive revenue up 24.4% to a record €15.8m (£13.7m/$17.3m) in the first quarter of 2023.

During the three months to 31 March, Raketech said it continued to pursue its strategy for profitable growth across affiliation marketing, as well as its sub-affiliation, and betting tips and subscriptions segments.

While the latter experienced a decline in revenue, growth across the two other segments meant revenue for the whole group was up year-on-year, with the business on track to achieve its full-year guidance.

Excluding acquisitions, revenue is expected to reach between €60.0m and €65.0m, while earnings before interest, tax, depreciation and amortisation (EBITDA) is forecast to be in a range of €20.0m to €24.0m.

“The strong result was mainly generated within our core, high margin segment, affiliation marketing,” Raketech chief executive Oskar Mühlbach said. “Based on the successful start of the year, we remain confident around our full year guidance.

“Considering the strong start of the year, we are confident reiterating our previously communicated revenue guidance for the full year.”

Results

Breaking down segmental performance in Q1, affiliation marketing revenue was 31.9% up year-on-year to €10.8m, representing 68.1% of all revenue. Raketech noted “exceptional” results from the Rest of World market, driven by Casumba and OnlineCricketbetting, while its flagship assets in the Nordics also delivered in line with expectations.

Sub-affiliation revenue also increased 46.3% to a record €2.6m, with the majority of growth attributed to strong results from network sub-affiliation in South America. This area of the business accounted for 22.7% of total revenue in Q1.

Revenue from betting tips and subscriptions declined 30.9% to €1.4m, representing 9.2% of overall quarterly revenue. Raketech said this was due to lower results from its win-share component, which is based on its sport betting predictions.

Upfront payment accounted for 41.4% of all Q1 revenue, while revenue share agreements contributed 34.7%, flat fee 14.8% and betting tips and subscriptions 9.1%. Splitting revenue by gambling type, casino revenue was €12.0m and sports betting €3.8m.

In terms of geographical performance, the Rest of World segment generated €7.5m, a rise of 79.9% on the previous year. Nordics revenue increased 6.9% to €5.8m, but Rest of Europe revenue fell 15.0% to €568,000 and US revenue was down 21.7% to €1.9m.

Raketech also noted a 54.4% increase in the number of new depositing customers to 54,846.

Net profit growth

Looking at spending during Q1, total operating expenses were 26.3% higher at €12.0m, with costs up in all areas. After also including €809,000 in finance-related costs, this left a pre-tax profit of €3.0m, up 20.0% year-on-year.

Raketech paid €119,000 in tax for the quarter and also accounted for €87,000 in deferred tax, meaning it ended Q1 with a net profit of €2.8m, a 27.3% rise from €2.2m last year. In addition, reported EBITDA was 20.1% higher at €6.1m.

[ad_2]

Source link

]]>
https://cbomo.com/apiclick-aspxreffexrssaidtid645d0cdff07245f481803044b889fe09urlhttps%3a%2f%2figamingbusiness-com%2ffinance%2fquarterly-results%2frevenue-reaches-record-e15-8m-at-raketech-in-q1%2fc1130263149/feed/ 0
Raketech to reduce consumer products to support growth strategy https://cbomo.com/apiclick-aspxreffexrssaidtid63f72d8f24214de8af51401237cc6ef4urlhttps%3a%2f%2figamingbusiness-com%2ffinance%2ffull-year-results%2fraketech-to-reduce-consumer-products-to-support-future-growth-s/ https://cbomo.com/apiclick-aspxreffexrssaidtid63f72d8f24214de8af51401237cc6ef4urlhttps%3a%2f%2figamingbusiness-com%2ffinance%2ffull-year-results%2fraketech-to-reduce-consumer-products-to-support-future-growth-s/#respond Thu, 23 Feb 2023 09:10:43 +0000 https://cbomo.com/apiclick-aspxreffexrssaidtid63f72d8f24214de8af51401237cc6ef4urlhttps%3a%2f%2figamingbusiness-com%2ffinance%2ffull-year-results%2fraketech-to-reduce-consumer-products-to-support-future-growth-s/ [ad_1]

Affiliate group Raketech has forecast further revenue and earnings growth for 2023 after it posted year-on-year increases across almost all core operating segments during its 2022 financial year.

The group said it had identified three significant growth initiatives that it intends to focus investments into over the next year, which will in turn lead to further growth across the business.

First, Raketech intends to reduce the total number – but improve the quality – of consumer products over time, with the group to focus its efforts on flagship products and popular, established brands.

Secondly, Raketech said it had identified a large and growing market for AffiliationCloud, leveraging the increasing demand for smart infrastructure in affiliation services. In addition, the group intends to add affiliation to its US pickster assets describing this as an “untapped” growth opportunity.

Adopting this approach, group chief executive Oskar Mühlbach said, would help the group to achieve its growth targets in 2023 and also support expansion plans in the longer term. 

“These three growth initiatives, in combination with the ongoing global shift from offline to online gambling, puts us in a good position for continued expansion of our business,” Mühlbach said.

“We expect the core affiliation marketing segment to continue to deliver growth and EBITDA margins in line with, or above, the group’s previous financial targets. Further, in line with the strategic decision to expand the SaaS product AffiliationCloud and the US Tipster services, the composition of the group’s revenue and profit streams has changed.”

Q4 results

Looking at Raketech’s performance in 2022 and focusing on the fourth quarter first, revenue for the three months to 31 December was €15.7m, up 32.5% on the previous year. This, the group said, was driven primarily by an increase in sub-affiliation and affiliation marketing, and also helped by recent acquisitions focusing on US sports. 

Affiliation marketing revenue increased by 16.2% to €10.3m, while sub-affiliation revenue was 53.7% higher at €3.5m and betting tips and subscription revenue hiked 175.1% to €1.9m. New depositing customers also increased by 27.7% year-on-year across the group.

Casino revenue climbed 24.6% to €11.5m, sports betting revenue increased 60.2% to €4.2m, and other revenue was 100.0% higher at €10,000.

In terms of geographical performance, Nordic revenue was €6.5m, accounting for 41.3% of all revenue in the quarter. Rest of Europe revenue was €644,000 (4.1%), US €2.4m (15.6%) and rest of world €6.1m (39.0%).

Looking at spend, total operating expenses were 38.5% higher at €11.1m and net financial cost hit €6.3m, leaving a pre-tax profit of €3.6m, up 16.9% year-on-year.

Raketech paid €128,000 in tax and also noted €828,000 in deferred tax, meaning it ended the year with a net profit of €2.7m, down 7.1% on the previous year. However, Raketech said adjusted EBITDA was 15.9% higher at €6.3m.

Full year

Looking at the full year, revenue increased by 36.7% to €52.6m. This included €35.2m from affiliation marketing, up 18.4% year-on-year, while sub-affiliation revenue jumped 25.9% to €11.2m and betting tips and subscription revenue rocketed 709.0% to €6.3m.

Casino revenue was 18.4% higher at €37.3mm while sports betting revenue also increased by 121.3% to €15.3m. However, other revenue was 14.5% lower at €112,000.

Turning to geographical performance, Nordic revenue hit €23.4m and accounted for 44.5% of all revenue. Rest of Europe revenue was €2.6m (5.0%), US €7.7m (14.7%) and rest of world €18.8m (35.8%).

Operating expenses increased by 38.0% to €40.3m and net financial costs reached €2.3m, resulting in a pre-tax profit of €10.0m, up 31.0% on 2021.

Raketech paid €487,000 in tax and noted €1.2m worth of deferred tax, leaving a net profit of €8.3m, up 16.8% on the previous year. In addition, adjusted EBITDA was 22.4% higher at €20.2m.

Based on this performance and its forward plans, Raketech said revenue in 2023 is likely to amount to between €60.0m and €65.0m, both of which would be an improvement on the 2022 results.

In addition, EBITDA is expected to amount to between €20.0m and €24.0m, including operational costs of approximately €2.0m for the year as an effect of Raketech taking over Casinofeber and Infinileads, following the end of the earnout period.

“With our diversified portfolio within affiliation marketing, sub-affiliation and betting tips & subscriptions, we believe we are well-positioned to capture the many opportunities presented by the rapidly growing global digital gambling market,” Mühlbach said.

“And I look forward to leveraging on our position as the preferred igaming performance marketing partner for our customers.”

[ad_2]

Source link

]]>
https://cbomo.com/apiclick-aspxreffexrssaidtid63f72d8f24214de8af51401237cc6ef4urlhttps%3a%2f%2figamingbusiness-com%2ffinance%2ffull-year-results%2fraketech-to-reduce-consumer-products-to-support-future-growth-s/feed/ 0