- May 24, 2018
- 75,060
- 111,714
- 120
The new versions of oceanwp addons are not working. it is asking for license key via freemius.hey bro update for what ?
ask @freenulledThe new versions of oceanwp addons are not working. it is asking for license key via freemius.
Hi.hi Tomz,
I meet the problem too with the oceanwp/freemius licences.
Have you get news to nulled the oceanwp plugins since the migration to freemius ?
Thanks ;-)
With the Elementor Widgets plugin rolling it back to v1.1.8 works, even with the latest version of Extra, in fact the only change in v1.1.9 was the addition of the Freemius stuff.
Hi @p.majax popup login is deleted, can you please upload again and let me know , thankshere owp popup login 1.0.6
I don't have "owp fullscreen" & "owp cookie notice".
If you find, you can join it ;-)
Bye !
No, i didn't.what about they asking for oceanwp/freemius licences. any one solve this isssue??
hey guys here my gift
all oceanwp addons latest
Ocean Cookie Notice v1.0.5
Ocean Elementor Widgets v1.1.98
Ocean Footer Callout v1.0.14
Ocean Full Screen v1.0.7
Ocean Hooks v1.1.3
Ocean Instagram v1.0.5
Ocean Popup Login v1.0.7
Ocean Portfolio v1.1.10
Ocean Pro Demos v1.1.0
Ocean Side Panel v1.0.12
Ocean Sticky Footer v1.0.10
Ocean Sticky Header v1.1.12
Ocean White Label v1.0.6
Ocean Woo Popup v1.0.7
Hi, all.what about they asking for oceanwp/freemius licences. any one solve this isssue??
register_activation_hook( __FILE__, array( $this, 'install' ) );
add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
add_action( 'init', array( $this, 'setup' ) );
add_action( 'init', array( $this, 'updater' ), 1 );
// Old output
add_action( 'template_redirect', array( $this, 'output' ) );
// New output
add_action( 'template_redirect', array( $this, 'cpt_output' ) );
// If is no in admin
if ( ! is_admin() ) {
add_action( 'admin_bar_menu', array( $this, 'admin_bar_button' ), 99 );
add_action( 'plugins_loaded', array( $this, 'show_hide_hooks' ) );
add_action( 'plugins_loaded', array( $this, 'front_end_hooks' ) );
}
add_action( 'wp_head', array( $this, 'head_css' ) );
}
/**
* Initialize License Updater.
* Load Updater initialize.
* @return void
*/
public function updater() {
// Plugin Updater Code
if( class_exists( 'OceanWP_Plugin_Updater' ) ) {
$license = new OceanWP_Plugin_Updater( __FILE__, 'Ocean Hooks', $this->version, 'OceanWP' );
}
}
/**
#--------------------------------------------------------------------------------
#region Freemius
#--------------------------------------------------------------------------------
if ( ! function_exists( 'oh_fs' ) ) {
// Create a helper function for easy SDK access.
function oh_fs() {
global $oh_fs;
if ( ! isset( $oh_fs ) ) {
$oh_fs = OceanWP_EDD_Addon_Migration::instance( 'oh_fs' )->init_sdk( array(
'id' => '3758',
'slug' => 'ocean-hooks',
'public_key' => 'pk_bf5672ee85c0032b2b4d7c0a3d244',
) );
if ( $oh_fs->can_use_premium_code__premium_only() ) {
Ocean_Hooks::instance()->init();
}
}
return $oh_fs;
}
function oh_fs_addon_init() {
if ( class_exists( 'Ocean_Extra' ) ) {
OceanWP_EDD_Addon_Migration::instance( 'oh_fs' )->init();
}
}
if ( 0 == did_action( 'owp_fs_loaded' ) ) {
// Init add-on only after parent theme was loaded.
add_action( 'owp_fs_loaded', 'oh_fs_addon_init', 15 );
} else {
if ( class_exists( 'Ocean_Extra' ) ) {
/**
* This makes sure that if the theme was already loaded
* before the plugin, it will run Freemius right away.
*
* This is crucial for the plugin's activation hook.
*/
oh_fs_addon_init();
}
}
function oh_fs_try_migrate() {
OceanWP_EDD_Addon_Migration::instance( 'oh_fs' )->try_migrate_addon(
'1946',
'Ocean_Hooks',
'Ocean Hooks'
);
}
}
#endregion
hi tomz,hey guys here my gift
all oceanwp addons latest
Ocean Cookie Notice v1.0.5
Ocean Elementor Widgets v1.1.98
Ocean Footer Callout v1.0.14
Ocean Full Screen v1.0.7
Ocean Hooks v1.1.3
Ocean Instagram v1.0.5
Ocean Popup Login v1.0.7
Ocean Portfolio v1.1.10
Ocean Pro Demos v1.1.0
Ocean Side Panel v1.0.12
Ocean Sticky Footer v1.0.10
Ocean Sticky Header v1.1.12
Ocean White Label v1.0.6
Ocean Woo Popup v1.0.7
Hi. It's fremius code. Follow my procedure above.hi tomz,
it is asking for Activation Key
Hello! The things you did really helped me. Thank you very much.Hi, all.
It seems that I found a solution how to get rid of Freemius from OceanWP plugin.
First you need to have an app installed named UltraCompare
https://www.ultraedit.com/downloads/ultracompare-download/
Then in the case of, for instance Ocean Hooks, you need to open old ocean-hooks.php version 1.1.2 in UltraCompare and lastest ocean-hooks.php version 1.1.3 with Freemius code inside:
![]()
Then in reddish color you see what compared as difference. So, in case of Ocean Hooks I copied from version 1.1.2:
into version 1.1.3Code:register_activation_hook( __FILE__, array( $this, 'install' ) ); add_action( 'init', array( $this, 'load_plugin_textdomain' ) ); add_action( 'init', array( $this, 'setup' ) ); add_action( 'init', array( $this, 'updater' ), 1 ); // Old output add_action( 'template_redirect', array( $this, 'output' ) ); // New output add_action( 'template_redirect', array( $this, 'cpt_output' ) ); // If is no in admin if ( ! is_admin() ) { add_action( 'admin_bar_menu', array( $this, 'admin_bar_button' ), 99 ); add_action( 'plugins_loaded', array( $this, 'show_hide_hooks' ) ); add_action( 'plugins_loaded', array( $this, 'front_end_hooks' ) ); } add_action( 'wp_head', array( $this, 'head_css' ) ); } /** * Initialize License Updater. * Load Updater initialize. * @return void */ public function updater() { // Plugin Updater Code if( class_exists( 'OceanWP_Plugin_Updater' ) ) { $license = new OceanWP_Plugin_Updater( __FILE__, 'Ocean Hooks', $this->version, 'OceanWP' ); } } /**
I also removed:
from the of ocean-hooks.php version 1.1.3. And finally I get fully workable Ocean Hooks version 1.1.3 without Freemius in my dashboard and in library item settings;Code:#-------------------------------------------------------------------------------- #region Freemius #-------------------------------------------------------------------------------- if ( ! function_exists( 'oh_fs' ) ) { // Create a helper function for easy SDK access. function oh_fs() { global $oh_fs; if ( ! isset( $oh_fs ) ) { $oh_fs = OceanWP_EDD_Addon_Migration::instance( 'oh_fs' )->init_sdk( array( 'id' => '3758', 'slug' => 'ocean-hooks', 'public_key' => 'pk_bf5672ee85c0032b2b4d7c0a3d244', ) ); if ( $oh_fs->can_use_premium_code__premium_only() ) { Ocean_Hooks::instance()->init(); } } return $oh_fs; } function oh_fs_addon_init() { if ( class_exists( 'Ocean_Extra' ) ) { OceanWP_EDD_Addon_Migration::instance( 'oh_fs' )->init(); } } if ( 0 == did_action( 'owp_fs_loaded' ) ) { // Init add-on only after parent theme was loaded. add_action( 'owp_fs_loaded', 'oh_fs_addon_init', 15 ); } else { if ( class_exists( 'Ocean_Extra' ) ) { /** * This makes sure that if the theme was already loaded * before the plugin, it will run Freemius right away. * * This is crucial for the plugin's activation hook. */ oh_fs_addon_init(); } } function oh_fs_try_migrate() { OceanWP_EDD_Addon_Migration::instance( 'oh_fs' )->try_migrate_addon( '1946', 'Ocean_Hooks', 'Ocean Hooks' ); } } #endregion
Dashboard:
![]()
Library item:
![]()
You could try the same with others OceanWP plugins a swell.
Hi! Not at all.Hello! The things you did really helped me. Thank you very much.
I am very grateful if you can send me via mail: [email protected]Hi! Not at all.
Just remember to take OceanWP plugin just before the Freemius came in. And open two versions of OceanWP plugin simultaneously using UltraCompare, then compare. I could share a Pro version of UltraCompare, but it is violates Babiato rules.