• Hello,

    I think I’ve found a minor bug in the plugin at the wpc.php file.

    On function wpc_rename_reviews_tab() you are returning it as:

    
    return _e('Reviews', 'woocommerce') . ' (' . $this->reviews_count . ')'; 
    

    When you should be doing like this instead:

    
    return __('Reviews', 'woocommerce') . ' (' . $this->reviews_count . ')'; 
    

    Can you please take a look?

The topic ‘Minor bug on wpc.php’ is closed to new replies.