• 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"

Zoom Meetings for WooCommerce

Zoom Meetings for WooCommerce v2.1.5

No permission to download
Hi, thanks for this module, but they ask for the key licence
 

Attachments

  • Capture d’écran 2020-05-06 à 23.27.20.png
    Capture d’écran 2020-05-06 à 23.27.20.png
    93.4 KB · Views: 38
Hi, thanks for this module, but they ask for the key licence
Open vczapi-woocommerce-addon.php in main folder
and after line 20 add this code
PHP:
update_option('_vczapi_woocommerce_addon_license', 'nulled');
update_option('_vczapi_woocommerce_addon_license_status', 'valid');

Or Remove All Codes and copy paste these codes
PHP:
<?php
/**
 * @link              http://www.deepenbajracharya.com.np
 * @since             1.0.0
 * @package           Zoom Integration for WooCommerce and Bookings
 *
 * Plugin Name:       Zoom Integration for WooCommerce
 * Plugin URI:        https://www.codemanas.com/downloads/zoom-meetings-for-woocommerce/
 * Description:       Seamless integration into WooCommerce products if enabled.
 * Version:           2.1.5
 * Author:            CodeManas
 * Author URI:        https://www.codemanas.com/
 * Text Domain:       vczapi-woocommerce-addon
 * Requires at least: 4.8
 * WC requires at least: 3.0.0
 * WC tested up to: 4.0.0
 * Domain Path:       /languages
 */

// Block direct access to the main plugin file.

update_option('_vczapi_woocommerce_addon_license', 'nulled');
update_option('_vczapi_woocommerce_addon_license_status', 'valid');
defined( 'ABSPATH' ) or die( 'No script kiddies !' );

if ( ! defined( 'VZAPI_WOOCOMMERCE_ADDON_PLUGIN' ) ) {
    define( 'VZAPI_WOOCOMMERCE_ADDON_PLUGIN', 'Zoom Integration for WooCommerce' );
}

if ( ! defined( 'VZAPI_WOOCOMMERCE_ADDON_PLUGIN_VERSION' ) ) {
    define( 'VZAPI_WOOCOMMERCE_ADDON_PLUGIN_VERSION', '2.1.5' );
}

if ( ! defined( 'VZAPI_WOOCOMMERCE_ADDON_DIR_PATH' ) ) {
    define( 'VZAPI_WOOCOMMERCE_ADDON_DIR_PATH', plugin_dir_path( __FILE__ ) );
}

if ( ! defined( 'VZAPI_WOOCOMMERCE_ADDON_DIR_URI' ) ) {
    define( 'VZAPI_WOOCOMMERCE_ADDON_DIR_URI', plugin_dir_url( __FILE__ ) );
}

function vczapi_woocommerce_addon_plugin_version_required() {
    ?>
    <div class="error">
        <p><a href="https://wordpress.org/plugins/video-conferencing-with-zoom-api/">Video Conferencing with Zoom Version plugin</a> version
            <strong>3.3.2</strong> or greater is required for <strong><?php echo VZAPI_WOOCOMMERCE_ADDON_PLUGIN; ?></strong> to function properly.
            Please update the plugin <a href="<?php echo admin_url( '/plugins.php' ); ?>">from plugins page</a> to version <strong>3.3.2</strong> or
            greater.</p>
    </div>
    <?php
}

function vczapi_woocommerce_addon_admin_error_notice() {
    $message = sprintf( esc_html__( 'This plugin requires PHP 5.6+ to run properly. Please contact your hosting company and ask them to update the PHP version of your site to at least PHP 5.6+ Your current version of PHP: %2$s%1$s%3$s', 'vczapi-woo-addon' ), phpversion() );

    printf( '<div class="notice notice-error"><p>%1$s</p></div>', wp_kses_post( $message ) );
}

function vczapi_woocommerce_addon_error() {
    ?>
    <div class="error">
        <p><strong><?php echo VZAPI_WOOCOMMERCE_ADDON_PLUGIN; ?> is inactive.</strong> <a href="http://wordpress.org/extend/plugins/woocommerce/">WooCommerce</a>
            must be active to work. Please install or activate WooCommerce first.</p>
    </div>
    <?php
}

function vczapi_woocommerce_addon_disable_this() {
    ?>
    <div class="error">
        <p>You must disable <strong><?php echo VZAPI_WOOCOMMERCE_ADDON_PLUGIN; ?></strong> plugin in order to use <strong>Zoom Integration for
                WooCommerce and Bookings</strong> ==> This plugin contains all features provided by
            <strong><?php echo VZAPI_WOOCOMMERCE_ADDON_PLUGIN; ?></strong> as well as extra booking features.</p>
    </div>
    <?php
}

function vczapi_woocommerce_addon_load_textdomain() {
    load_plugin_textdomain( 'vczapi-woocommerce-addon', false, plugin_basename( dirname( __FILE__ ) ) . '/languages/' );
}

add_action( 'plugins_loaded', 'vczapi_woocommerce_addon_load_textdomain' );

if ( ! in_array( 'video-conferencing-with-zoom-api/video-conferencing-with-zoom-api.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
    add_action( 'admin_notices', 'vczapi_woocommerce_addon_notice' );
    function vczapi_woocommerce_addon_notice() {
        ?>
        <div class="error">
            <p>Free version of <strong>Video Conferencing with Zoom</strong> is required for
                <strong><?php echo VZAPI_WOOCOMMERCE_ADDON_PLUGIN; ?></strong> plugin to function. Please Activate or Download from
                <a href="https://wordpress.org/plugins/video-conferencing-with-zoom-api/">WordPress repository</a> or search <strong>"Video
                    Conferencing with Zoom API"</strong> in <a href="<?php echo admin_url( 'plugin-install.php' ) ?>">plugin page</a>.</p>
        </div>
        <?php
    }
} else {
    $plugin_data = false;
    if ( is_admin() && ! function_exists( 'get_plugin_data' ) ) {
        require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
        $plugin_data = get_plugin_data( plugin_dir_path( __DIR__ ) . 'video-conferencing-with-zoom-api/video-conferencing-with-zoom-api.php' );
    }

    // Check for presence of core dependencies
    if ( version_compare( phpversion(), '5.6', '<' ) ) {
        add_action( 'admin_notices', array( $this, 'vczapi_woocommerce_addon_admin_error_notice' ) );
    } else if ( ! empty( $plugin_data ) && version_compare( $plugin_data['Version'], '3.3.2', '<' ) ) {
        add_action( 'admin_notices', 'vczapi_woocommerce_addon_plugin_version_required' );
    } else if ( in_array( 'vczapi-woo-addon/vczapi-woo-addon.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
        add_action( 'admin_notices', 'vczapi_woocommerce_addon_disable_this' );
    } else {
        require_once VZAPI_WOOCOMMERCE_ADDON_DIR_PATH . 'woo-dependencies.php';
        if ( ! vczapi_woocommerce_addon_active() ) {
            add_action( 'admin_notices', 'vczapi_woocommerce_addon_error' );

            return;
        }

        require_once VZAPI_WOOCOMMERCE_ADDON_DIR_PATH . 'vendor/autoload.php';
        add_action( 'plugins_loaded', 'Codemanas\ZoomWooCommerceAddon\Bootstrap::get_instance', 100 );
    }

    register_activation_hook( __FILE__, 'Codemanas\ZoomWooCommerceAddon\Bootstrap::activate' );
    register_activation_hook( __FILE__, 'Codemanas\ZoomWooCommerceAddon\CronHandlers::activate_cron' );
    register_deactivation_hook( __FILE__, 'Codemanas\ZoomWooCommerceAddon\CronHandlers::deactivate_cron' );
}
 
It works ! Thanks @Babak
You rock !
 

Attachments

  • Capture d’écran 2020-05-06 à 23.58.03.png
    Capture d’écran 2020-05-06 à 23.58.03.png
    90.8 KB · Views: 54
  • Love
Reactions: Babak
hey, do you have the Zoom Integration for WooCommerce Bookings addon as well?

Eu tenho ele aqui, infelizmente não sei ainda como fazer para rodar ele NULLED, mas se vcs quiserem podem tentar
 

Attachments

  • vczapi-woo-addon-v2.1.8.zip
    221.3 KB · Views: 38
here is u[updated version

*** Zoom Integration for WooCommerce Change-logs ***

2020.08.13 – version 2.3.0

* Feature: Added compatibility for Video Conferencing with Zoom PRO

2020.08.04 – version 2.2.4
* Update: Add join via browser link in reminder e-mails

2020.07.31 – version 2.2.3
* Dev: Add filter `vczapi_woocommerce_join_via_app_text` to allow change of Join via App text for oder details and order emaila

2020.07.29 – version 2.2.2
* Feature: Added sorting for meeting lists on my account page
* Dev: Added filter vczapi_woocommerce_meeting_order_posts_per_page to determine number of meetings to show per page on /my-account/

2020.07.20 – version 2.2.1
* Update: Correction for purchasable meetings and category – code was not working.

2020.07.20 – version 2.2.0
* Update: Better upcoming purchasable meetings query update – requires meetings to be saved on the backend once again.

2020.05.25 – version 2.1.9
* Fix: missing translations update

2020.05.24 – version 2.1.8
* Feature: Reminder email templates made translateable: note if you have overwritten email templates – please change templates from .html to .php

2020.05.22 – version 2.1.7
* Added: Compatiblity fix for PRO version requirements.

2020.05.06 – version 2.1.6
* Fixed: JS issue due to registrants table.

2020.04.27 – version 2.1.5
* Added: Meeting Registrants list inside product and meeting post type individual edit page.
 
Here is new version best ever forum team
 

Attachments

  • vczapi-woocommerce-addon-v2.3.7.zip
    204.1 KB · Views: 44
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