• The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked!
Offers for WooCommerce

Offers for WooCommerce 3.0.2

raz0r

owner
Staff member
Administrator
Moderator
Messages
21,203
Files
6062
Reactions
82,132
raz0r submitted a new resource:

Offers for WooCommerce - Accept offers for products on your website.

View attachment 27601

Add the power negotiation to your store with WooCommerce Offers! Our “Make an Offer” plugin allows potential buyers to submit offers for products on your web site. You may accept, decline, or counter the offer, and counter-offers may go back and forth until there is an agreed price. Offers are a great way to establish communication with potential buyers!

Allowing potential buyers to make an offer for products in a WooCommerce store can be a very...

Read more about this resource...
 
raz0r 's signature
Reacted by:
Hello @raz0r

Is there any update on this? I like the plugin but when I try it, it turns off the comments in the admin area.

If no update, no worries, I will revise the code then to see if I can patch it.

Thank you in advance :)

Regards
 
Reacted by:
Nevermind. I found the problem code.

For those with the same problem, in the following file:

offers-for-woocommerce / admin / class-offers-for-woocommerce-admin.php

In line #895, there is the public function:

angelleye_ofwc_exclude_cpt_from_comments_clauses

To avoid the problem, just bypass the function by returning the clauses like this:

From this:
public function angelleye_ofwc_exclude_cpt_from_comments_clauses($clauses) {

To this:
public function angelleye_ofwc_exclude_cpt_from_comments_clauses($clauses) { return $clauses;

I could be wrong about the purpose of the function as I only dedicated a few minutes to this, but apparently, this was supposed to separate comments in the plugin from the normal comments in WP. But for me they were not mixing up and the function was giving the described issue.
 
Reacted by:
Top