golden hour
/var/www/html/wp-content/plugins/js_composer
⬆️ Go Up
Upload
File/Folder
Size
Actions
assets
-
Del
OK
changes.txt
57.67 KB
Del
OK
config
-
Del
OK
credits.txt
1.24 KB
Del
OK
include
-
Del
OK
index.php
44 B
Del
OK
js_composer.php
1.01 KB
Del
OK
license.txt
14.5 KB
Del
OK
locale
-
Del
OK
vc_classmap.json.php
9.07 KB
Del
OK
Edit: js_composer.php
<?php /** * Plugin Name: WPBakery Page Builder * Plugin URI: http://wpbakery.com * Description: Drag and drop page builder for WordPress. Take full control over your WordPress site, build any layout you can imagine – no programming knowledge required. * Version: 6.7.0 * Author: Michael M - WPBakery.com * Author URI: http://wpbakery.com * * @package WPBakery Page Builder */ // don't load directly if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * Current WPBakery Page Builder version */ if ( ! defined( 'WPB_VC_VERSION' ) ) { /** * */ define( 'WPB_VC_VERSION', '6.7.0' ); } $dir = dirname( __FILE__ ); define( 'WPB_PLUGIN_DIR', $dir ); define( 'WPB_PLUGIN_FILE', __FILE__ ); require_once $dir . '/include/classes/core/class-vc-manager.php'; /** * Main WPBakery Page Builder manager. * @var Vc_Manager $vc_manager - instance of composer management. * @since 4.2 */ global $vc_manager; if ( ! $vc_manager ) { $vc_manager = Vc_Manager::getInstance(); // Load components $vc_manager->loadComponents(); }
Save