01-29-2018, 10:58 AM
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
01-29-2018, 11:01 AM
UPDATED
WooCommerce Checkout Field Editor
WooCommerce Order Status Manager
YITH WooCommerce Order Tracking Premium
01-29-2018, 11:30 AM
Thanks for this Huge share :), Max Rep added
01-30-2018, 10:16 AM
Thanks for updates! Maybe someone know how I can disable Yith warnings? I can do it in code but I`m afraid that it will gonna disable all warnings...
Warning! You didn't set license key for the following products:
YITH Advanced Refund System for WooCommerce PremiumYITH Live Chat PremiumYITH WooCommerce Anti-Fraud PremiumYITH WooCommerce Bulk Product Editing PremiumYITH WooCommerce Email Templates PremiumYITH WooCommerce Frequently Bought Together PremiumYITH WooCommerce Order Tracking PremiumYITH WooCommerce PDF Invoice and Shipping List PremiumYITH WooCommerce Product Countdown PremiumYITH WooCommerce Quick Export PremiumYITH WooCommerce Recover Abandoned Cart PremiumYITH WooCommerce Share For Discounts PremiumYITH WooCommerce Customer History PremiumYITH Custom ThankYou Page for Woocommerce PremiumYITH Desktop Notifications for WooCommerce Premium
which means you're missing out on updates and support. Enter your license key
Warning! You didn't set license key for the following products:
YITH Advanced Refund System for WooCommerce PremiumYITH Live Chat PremiumYITH WooCommerce Anti-Fraud PremiumYITH WooCommerce Bulk Product Editing PremiumYITH WooCommerce Email Templates PremiumYITH WooCommerce Frequently Bought Together PremiumYITH WooCommerce Order Tracking PremiumYITH WooCommerce PDF Invoice and Shipping List PremiumYITH WooCommerce Product Countdown PremiumYITH WooCommerce Quick Export PremiumYITH WooCommerce Recover Abandoned Cart PremiumYITH WooCommerce Share For Discounts PremiumYITH WooCommerce Customer History PremiumYITH Custom ThankYou Page for Woocommerce PremiumYITH Desktop Notifications for WooCommerce Premium
which means you're missing out on updates and support. Enter your license key
01-30-2018, 10:51 AM
(01-30-2018 10:16 AM)musicpirate Wrote: [ -> ]Thanks for updates! Maybe someone know how I can disable Yith warnings? I can do it in code but I`m afraid that it will gonna disable all warnings...
Warning! You didn't set license key for the following products:
YITH Advanced Refund System for WooCommerce PremiumYITH Live Chat PremiumYITH WooCommerce Anti-Fraud PremiumYITH WooCommerce Bulk Product Editing PremiumYITH WooCommerce Email Templates PremiumYITH WooCommerce Frequently Bought Together PremiumYITH WooCommerce Order Tracking PremiumYITH WooCommerce PDF Invoice and Shipping List PremiumYITH WooCommerce Product Countdown PremiumYITH WooCommerce Quick Export PremiumYITH WooCommerce Recover Abandoned Cart PremiumYITH WooCommerce Share For Discounts PremiumYITH WooCommerce Customer History PremiumYITH Custom ThankYou Page for Woocommerce PremiumYITH Desktop Notifications for WooCommerce Premium
which means you're missing out on updates and support. Enter your license key
there's a 2 php file that you can disable the activation warnings.
You can Locate it @
Code:
YITH Plugin/plugin-fw/license/lib
You can Edit these files
yit-plugin-license.php and yit-theme-license.php
and comment these codes on line 65 to 71 on yit-plugin-license.php and line 67-73 for yit-theme-license.php
Code:
$this->_settings = array(
'parent_page' => 'yit_plugin_panel',
'page_title' => __( 'License Activation', 'yith-plugin-fw' ),
'menu_title' => __( 'License Activation', 'yith-plugin-fw' ),
'capability' => 'manage_options',
'page' => 'yith_plugins_activation',
);
and this notice you want to rid off on line 88 in yit-plugin-license.php
Code:
public function activate_license_notice() {
if ( apply_filters( 'yith_plugin_fw_show_activate_license_notice', !isset( $_GET[ 'page' ] ) || 'yith_plugins_activation' !== $_GET[ 'page' ] ) ) {
$products_to_activate = $this->get_to_active_products();
if ( !!$products_to_activate ) {
$product_names = array();
foreach ( $products_to_activate as $init => $product ) {
if ( !empty( $product[ 'Name' ] ) )
$product_names[] = $product[ 'Name' ];
}
if ( !!$product_names ) {
$start = '<span style="display:inline-block; padding:3px 10px; margin: 0 10px 10px 0; background: #f1f1f1; border-radius: 4px;">';
$end = '</span>';
$product_list = '<div>' . $start . implode( $end . $start, $product_names ) . $end . '</div>';
$activation_url = add_query_arg( array( 'page' => 'yith_plugins_activation' ), admin_url( 'admin.php' ) );
?>
<div class="notice notice-error">
<p><strong>Warning!</strong> You didn't set license key for the following products:
<?php echo $product_list ?>
which means you're missing out on updates and support. <a href='<?php echo $activation_url ?>'>Enter your license key</a></p>
</div>
<?php
}
}
}
}
hope it helps
01-30-2018, 12:18 PM
(01-29-2018 11:01 AM)HaselBiscuit Wrote: [ -> ]UPDATED
WooCommerce Checkout Field Editor
WooCommerce Order Status Manager
YITH WooCommerce Order Tracking Premium
WooThemes Subscriptions WooCommerce Extension v2.1.17 is out. ++++Rep...
(01-30-2018 12:18 PM)boy92 Wrote: [ -> ][quote='HaselBiscuit' pid='2343501' dateline='1517187716']
UPDATED
WooCommerce Checkout Field Editor
WooCommerce Order Status Manager
YITH WooCommerce Order Tracking Premium
WooThemes Subscriptions WooCommerce Extension v2.2.17 is out. ++++Rep...
01-31-2018, 11:32 AM
Updated
YITH WooCommerce Frontend Manager for WooCommerce Premium Extension 1.3.2
Note: Password on the Zip Comment
01-31-2018, 01:06 PM
(01-31-2018 11:32 AM)HaselBiscuit Wrote: [ -> ]Updated
YITH WooCommerce Frontend Manager for WooCommerce Premium Extension 1.3.2
Note: Password on the Zip Comment
Is this file is password protected or only password on mirror page ?
01-31-2018, 01:08 PM
Thanks for the update. +Rep added
01-31-2018, 01:53 PM
Do you have latest version of :
- YITH Multi Vendor
- YITH Composite Products
- YITH WooCommerce Product Bundles
thank you
- YITH Multi Vendor
- YITH Composite Products
- YITH WooCommerce Product Bundles
thank you