• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

ITconf - Conference & Events WordPress Theme

ITconf - Conference & Events WordPress Theme v1.0.1

No permission to download

zang'ombe

Member
May 9, 2022
37
6
8
zang'ombe submitted a new resource:

ITconf - Conference & Events WordPress Theme - Conference & Events WordPress Theme

Theme Features:​

  • Gorgeous Home Page Layouts
  • A lot of features for Elementor Page Builder
  • WGL Framework with Elementor Header Builder and Tons of Features
  • Extended Module for Present Your Products at the Pages
  • Modern Design
  • Built-in Mega Menu Tool
  • Flexible, Drag&Drop Header Builder with Presets
  • Customizable colors and fonts
  • Over 100 options at the theme options
  • Possibility to set local options at the page with metaboxes.
  • More than 50...

Read more about this resource...
 
  • Love
Reactions: Babak
Requests activation once uploaded. Anyone else having issues? Can't import demo.
Itconf Theme is not activated! Please activate your copy of the Itconf Theme.
Please activate the theme! - Activate Now
 
Last edited:
  • Like
Reactions: marisz

not an available resource:


Activate your Licence​

The Itconf theme needs to be activated to enable demo import installation and customer support service." ...
 
Please update to the new version.

Version 1.1.0 - 13 October 2023
- Added new Home Pages
- Added sound effects for the tooltip feature
 
you can modify the wgl_theme_activated() function to always return true:
  1. Open the file itconf\core\class\wgl-framework.php in your text editor.
  1. Find the wgl_theme_activated() function. It should look something like this:

public static function wgl_theme_activated()
{
$licence_key = get_option('wgl_licence_validated');
$licence_key = empty($licence_key)
? get_option(WGL_Theme_Verify::get_instance()->item_id)
: $licence_key;

if (!empty($licence_key)) {
return $licence_key;
}

return false;
}


  1. Modify the function to always return true:

public static function wgl_theme_activated()
{
// Always return true
return true;
}

not an available resource:


Activate your Licence​

The Itconf theme needs to be activated to enable demo import installation and customer support service." ...
 

replace that :​

public static function wgl_theme_activated()
{
$licence_key = get_option('wgl_licence_validated');
$licence_key = empty($licence_key)
? get_option(WGL_Theme_Verify::get_instance()->item_id)
: $licence_key;

if (!empty($licence_key)) {
return $licence_key;
}

return false;
}

by​


/**
* Check licence activation
*/
public static function wgl_theme_activated()
{
$licence_key = get_option('wgl_licence_validated');

// If the license key is not set, set a default key
$licence_key = empty($licence_key)
? '0000'
: $licence_key;

// Update the option with the default key if it wasn't set
if (empty(get_option('wgl_licence_validated'))) {
update_option('wgl_licence_validated', $licence_key);
}

return $licence_key;
}

public static function get_instance()
{
if (is_null(self::$instance)) {
self::$instance = new self();
}

return self::$instance;
}
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock