Add attributes Not WORKING.

Home Forums WPLMS AddOns WPLMS WooCommerce Add attributes Not WORKING.

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #109058
    immunity
    Spectator
    Hi I purchased WPLM-Woocommerce plugin yesterday. trying to add attributes as show in the video tutorial but when i am clicking on add attributes button the tab is loading and loading and lodaing...as shown in the screenshot below.. http://prntscr.com/f14qc7    Please reply soon.
    #109141
    H.K. Latiyan
    Participant
    There might be some js error on the page which is not allowing the page to load. Can you please share the site url and the admin credentials with us to check the error on your website. PS: Please mark your reply as private while sharing the credentials.
    #109475
    immunity
    Spectator
    This reply has been marked as private.
    #109586
    H.K. Latiyan
    Participant
    Thanks for sharing the credentials I checked your website, in the product page the badgeos plugin is throwing an error which is causing this issue. BadgeOs plugin is enque a script on the product page which it shouldn't. Try adding the bellow code in your functions.php file of your child theme : add_action('admin_enqueue_scripts','custom_remove_badge_os_scripts',999); function custom_remove_badge_os_scripts(){     if(in_array( 'badgeos/badgeos.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ){         global $post;         if($post->post_type == 'product' || $post->post_type == 'shop_coupon'){             wp_deregister_script('badgeos-select2');             wp_dequeue_script('badgeos-select2');             wp_dequeue_style('badgeos-select2-css');             wp_deregister_style('badgeos-select2-css');         }     } }
    #109588
    immunity
    Spectator
    Hi I added these lines to function.php but now it is even not allowing me to add anything to the product... http://prntscr.com/f268ij I think the code is not suitable with WPLMS-Woocomerce plugin? Please reply soon.
    #109776
    immunity
    Spectator
    I am still waiting for your reply...  
    #109809
    H.K. Latiyan
    Participant
    Sorry for the mistake I have corrected the code in my previous reply and also edited the code in your website, and now it works fine. Please check again .
    #116048
    rubensmorais
    Spectator
    Hello, I have the same problem with my products atributes, can you help me please? Thanks.
    #116186
    H.K. Latiyan
    Participant
    @rubensmorais: Please create your own topic for your issue and please share the website url and the admin credentials with us to check the issue on your website. Please mark your reply as private while sharing the credentials.
Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Add attributes Not WORKING.’ is closed to new replies.