Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter GrooveBakery

    (@nekfurn)

    Ok found my problem but I’ve another one. Add product stuck adding but no product is add. It keep loading.

    Thread Starter GrooveBakery

    (@nekfurn)

    Ok, I saw on a forum this code:

    register_post_status( ‘custom-hide-product’, array(
    ‘label’ => _x( ‘Approved’, ‘post’ ),
    ‘public’ => false,
    ‘exclude_from_search’ => true,
    ‘show_in_admin_all_list’ => true,
    ‘show_in_admin_status_list’ => true,
    ‘label_count’ => _n_noop( ‘Approved <span class=”count”>(%s)</span>’, ‘Approved <span class=”count”>(%s)</span>’ ),
    ) );
    add_action( ‘admin_footer’, ‘display_hide_status_option’ );
    
    function display_hide_status_option() {
    global $post;
    $complete = ”;
    $label = ”;
    if ( $post->post_type === ‘product’ ) {
    if ( $post->post_status === ‘custom-hide-product’ ) {
    $selected = ‘selected’;
    }
    echo ‘<script>
    jQuery(document).ready(function($){
    $(“select#post_status”).append(“<option value=\”custom-hide-product\” ‘ . $complete . ‘>Approved </option>”);
    $(“.misc-pub-section label”).append(“‘ . $label . ‘”);
    });
    </script>
    ‘;
    }
    }

    And WCFM answer to this code to be able to see it in vendor dashboard is this code:

    add_filter( ‘wcfmu_products_menus’, function( $wcfmu_products_menus ) {
    $wcfmu_products_menus[‘custom-hide-product’] = __( ‘Approved’, ‘wc-frontend-manager’);
    return $wcfmu_products_menus;
    }, 50);

    What is in your code ( in the code of WCFM ) the equivalent ( the register post status )?

    I put the link to the forum: https://www.ads-software.com/support/topic/show-custom-product-status/

    I’m trying to making work the code of WCFM with your plugin.

    Thread Starter GrooveBakery

    (@nekfurn)

    I’ve found this code but it doesn’t work:

    add_filter( ‘wcfmu_products_menus’, function( $wcfmu_products_menus ) {
    $wcfmu_products_menus[‘Extended Post Status’] = __( ‘Approved’, ‘wc-frontend-manager’);
    return $wcfmu_products_menus;
    }, 50);

    It’s me who change the Extend Post Status inside bracket. With this code I’m able to see Approved in the menu of WCFM but not the file.

    Thread Starter GrooveBakery

    (@nekfurn)

    Hi Felix, WC Lovers is WCFM here’s the link: https://wclovers.com/ref/238/
    But what I understand is your plugin work’s on the admin side.But I’m using WCFM for my multivendor’s. So when they submit products from the frontend, I want to put Approved status or Declined status. But right now, when I’m using my new status, inside the client product, it appears “No data in the Table” and the product disappear! I want a know if we can make the status available for the vendor’s? Thank’s!

    • This reply was modified 3 years, 2 months ago by GrooveBakery.
    • This reply was modified 3 years, 2 months ago by GrooveBakery.
    Thread Starter GrooveBakery

    (@nekfurn)

    Wow, thank you so much, it work’s perfctly. You’re a king!

    Thank you!

    • This reply was modified 4 years, 11 months ago by GrooveBakery.
    Thread Starter GrooveBakery

    (@nekfurn)

    
    ### WordPress Environment ###
    
    WordPress address (URL): https://groovebakery.com
    Site address (URL): https://groovebakery.com
    WC Version: 4.0.1
    REST API Version: ? 1.0.7
    WC Blocks Version: ? 2.5.14
    Action Scheduler Version: ? 3.1.4
    WC Admin Version: ? 1.0.3
    Log Directory Writable: ?
    WP Version: 5.3.2
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    WP Cron: ?
    Language: en_US
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: Apache
    PHP Version: 7.2.28
    PHP Post Max Size: 128 MB
    PHP Time Limit: 300
    PHP Max Input Vars: 10000
    cURL Version: 7.68.0
    OpenSSL/1.1.1d
    
    SUHOSIN Installed: –
    MySQL Version: 5.5.5-10.2.31-MariaDB
    Max Upload Size: 128 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?
    
    ### Database ###
    
    WC Database Version: 4.0.1
    WC Database Prefix: wp_
    Total Database Size: 76.26MB
    Database Data Size: 70.96MB
    Database Index Size: 5.30MB
    wp_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_order_itemmeta: Data: 0.06MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_actionscheduler_actions: Data: 0.55MB + Index: 0.15MB + Engine MyISAM
    wp_actionscheduler_claims: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_actionscheduler_groups: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_actionscheduler_logs: Data: 0.40MB + Index: 0.25MB + Engine MyISAM
    wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    wp_css_js_manager: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_dokan_announcement: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_dokan_orders: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_dokan_refund: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_dokan_vendor_balance: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_dokan_withdraw: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_dzsap_activity: Data: 0.09MB + Index: 0.00MB + Engine InnoDB
    wp_failed_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_litespeed_img_optm: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_litespeed_optimizer: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_mailchimp_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_newsletter: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_newsletter_emails: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_newsletter_sent: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_newsletter_stats: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_newsletter_user_logs: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_nf3_actions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_action_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_chunks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_fields: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_field_meta: Data: 0.14MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_form_meta: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_objects: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_object_meta: Data: 0.41MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_relationships: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_nf3_upgrades: Data: 0.08MB + Index: 0.00MB + Engine InnoDB
    wp_ninja_forms_uploads: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_oih_lists: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_oih_opt_ins: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_oih_subscribers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_options: Data: 5.31MB + Index: 1.22MB + Engine InnoDB
    wp_postmeta: Data: 2.38MB + Index: 1.67MB + Engine InnoDB
    wp_posts: Data: 53.45MB + Index: 0.44MB + Engine InnoDB
    wp_queue: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_rank_math_404_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_rank_math_internal_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_rank_math_internal_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_rank_math_redirections: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_rank_math_redirections_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_rank_math_sc_analytics: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_redirects: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_rednao_wc_invoice: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_rednao_wc_invoices_created: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
    wp_rednao_wc_invoices_custom_field: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_smush_dir_images: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_socialsnap_stats: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_term_relationships: Data: 0.06MB + Index: 0.05MB + Engine InnoDB
    wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_usermeta: Data: 0.13MB + Index: 0.11MB + Engine InnoDB
    wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_vtprd_purchase_log: Data: 0.02MB + Index: 0.00MB + Engine MyISAM
    wp_vtprd_purchase_log_product: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_vtprd_purchase_log_product_rule: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wcfm_daily_analysis: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcfm_detailed_analysis: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_enquiries: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_enquiries_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_enquiries_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_following_followers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_affiliate_orders: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcfm_marketplace_affiliate_orders_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_orders: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcfm_marketplace_orders_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_product_multivendor: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcfm_marketplace_refund_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_reverse_withdrawal: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_reviews: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_reviews_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_review_rating_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_shipping_zone_locations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_store_taxonomies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_vendor_ledger: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_withdraw_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_marketplace_withdraw_request_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_membership_subscription: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wcfm_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_messages_modifier: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_messages_stat: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_support: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_support_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcfm_support_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcmp_cust_answers: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wcmp_cust_questions: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wcmp_products_map: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wcmp_shipping_zone_locations: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wcmp_shipping_zone_methods: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wcmp_vendor_ledger: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wcmp_vendor_orders: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wcmp_visitors_stats: Data: 0.00MB + Index: 0.02MB + Engine MyISAM
    wp_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcpv_commissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wcpv_per_product_shipping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_admin_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_category_lookup: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    wp_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_wc_product_meta_lookup: Data: 0.05MB + Index: 0.09MB + Engine InnoDB
    wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_weforms_entries: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_weforms_entrymeta: Data: 0.00MB + Index: 0.01MB + Engine MyISAM
    wp_wfpklist_template_data: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    wp_woobe_history: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_woobe_history_bulk: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wpcp_links: Data: 2.83MB + Index: 0.00MB + Engine MyISAM
    wp_wpcp_logs: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
    wp_wpf_filters: Data: 0.01MB + Index: 0.00MB + Engine MyISAM
    wp_wpuf_subscribers: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_wpuf_transaction: Data: 0.00MB + Index: 0.00MB + Engine MyISAM
    wp_yith_wcwl: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    wp_yith_wcwl_lists: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    wp_yoast_seo_links: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
    wp_yoast_seo_meta: Data: 1.48MB + Index: 0.00MB + Engine InnoDB
    
    ### Post Type Counts ###
    
    advgb_profiles: 1
    attachment: 247
    custom_css: 5
    customize_changeset: 90
    dzswtl_list_layout: 3
    elementor_library: 3
    hbupro_banner: 1
    jetpack_migration: 2
    jp_img_sitemap: 1
    jp_sitemap: 1
    jp_sitemap_master: 1
    nav_menu_item: 30
    nf_sub: 24
    oembed_cache: 2
    page: 23
    popup: 2
    popup_theme: 6
    post: 7
    product: 47
    product_variation: 135
    revision: 1899
    shop_coupon: 4
    shop_order: 30
    sidebar_instance: 2
    somdn_tracked: 37
    vtprd-rule: 1
    wc_membership_plan: 1
    wc_user_membership: 1
    wp_content_pilot: 1
    wphb_minify_group: 10
    wpuf_contact_form: 1
    wpuf_input: 3
    
    ### Security ###
    
    Secure connection (HTTPS): ?
    Hide errors from visitors: ?
    
    ### Active Plugins (27) ###
    
    Akismet Anti-Spam: by Automattic – 4.1.4
    Astra Pro: by Brainstorm Force – 2.3.3
    Cloudflare: by John Wineman
    Furkan Yilmaz
    Junade Ali (Cloudflare Team) – 3.4.1
    
    Cookie Notice: by dFactory – 1.2.51
    Dokan: by weDevs – 3.0.2
    Dokan Menu Hider: by Nayem – 2.5
    Duplicate Page: by mndpsingh287 – 4.2
    DZS ZoomSounds: by Digital Zoom Studio – 5.77
    Elementor Pro: by Elementor.com – 2.9.1
    Elementor: by Elementor.com – 2.9.7
    Export emails: by Joe's Web Tools – 1.3.1
    GA Google Analytics: by Jeff Starr – 20200325
    Hide Admin Bar From Non-admins: by Stranger Studios – 1.0
    If Menu - Visibility control for menu items: by Layered – 0.15
    Jetpack by WordPress.com: by Automattic – 8.3
    Newsletter: by Stefano Lissa & The Newsletter Team – 6.5.7
    Free Downloads WooCommerce Pro: by Square One Media – 3.1.8 – Not tested with the active version of WooCommerce
    WooCommerce Bulk Editor: by realmag777 – 1.0.5.1 – Not tested with the active version of WooCommerce
    WooCommerce PDF Invoice Builder: by RedNao – 1.2.12 – Not tested with the active version of WooCommerce
    WPC Smart Quick View for WooCommerce: by WPClever.net – 2.0.1
    WOOCS - WooCommerce Currency Switcher: by realmag777 – 1.3.1
    WooCommerce Memberships: by SkyVerge – 1.11.3 – Not tested with the active version of WooCommerce
    WooCommerce: by Automattic – 4.0.1
    Yoast SEO: by Team Yoast – 13.3
    WP Rocket: by WP Media – 3.5.1
    WP Rollback: by Impress.org – 1.7.0
    WPC Variations Radio Buttons for WooCommerce: by WPClever.net – 1.1.6 – Not tested with the active version of WooCommerce
    
    ### Inactive Plugins (2) ###
    
    Async JavaScript: by Frank Goossens (futtta) – 2.20.03.01
    Autoptimize: by Frank Goossens (futtta) – 2.6.2
    
    ### Dropin Plugins (1) ###
    
    advanced-cache.php: advanced-cache.php
    
    ### Must Use Plugins (1) ###
    
    rms_unique_wp_mu_pl_fl_nm.php: by  –
    
    ### Settings ###
    
    API Enabled: –
    Force SSL: –
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    subscription (subscription)
    variable (variable)
    variable subscription (variable-subscription)
    
    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-4 (rated-4)
    rated-5 (rated-5)
    
    Connected to WooCommerce.com: –
    
    ### WC Pages ###
    
    Shop base: #8 - /
    Cart: #9 - /cart/
    Checkout: #10 - /checkout/
    My account: #11 - /my-account/
    Terms and conditions: #3 - /privacy-policy/
    
    ### Theme ###
    
    Name: Astra Child
    Version: 1.0.0
    Author URL: https://wpastra.com/about/
    Child Theme: ?
    Parent Theme Name: Astra
    Parent Theme Version: 2.3.4
    Parent Theme Author URL: https://wpastra.com/about/
    WooCommerce Support: ?
    
    ### Templates ###
    
    Overrides: –
    
    ### Action Scheduler ###
    
    Canceled: 1
    Oldest: 2020-03-27 16:36:41 -0400
    Newest: 2020-03-27 16:36:41 -0400
    
    Complete: 1,364
    Oldest: 2020-02-25 15:45:37 -0500
    Newest: 2020-03-27 16:36:42 -0400
    
    Pending: 2
    Oldest: 2020-03-27 17:26:27 -0400
    Newest: 2020-03-30 11:15:42 -0400
    
    
    Thread Starter GrooveBakery

    (@nekfurn)

    I already did it, look at the picture https://drive.google.com/open?id=1euAHVebyKTNRKFawS7VVBLpgUPXQ-A1r nothing work but I’ve just updated this morning before that everything works perfectly!

    Thread Starter GrooveBakery

    (@nekfurn)

    That’s right! I deactivate the widget kit and it works fine. So, what I understand it’s I cannot use Cue with the widgetkit V 1.5.2 but I’ll try with the new version 1.5.5.

    Thank’s a lot!

    Thread Starter GrooveBakery

    (@nekfurn)

Viewing 9 replies - 1 through 9 (of 9 total)