Themekraft / wc4bp

WooCommerce BuddyPress Integration
GNU General Public License v2.0
18 stars 8 forks source link

HTTP Response 404 when click on BP purchased activity with WC 3+ #163

Closed denisleclerc closed 6 years ago

denisleclerc commented 6 years ago

With wc4bp-premium WC4BP: 3.0.15, BuddyPress: 2.9.1, Woocommerce: 3.2.1 HTTP response is 404 when click on BP Purchased activity

Following modification fixes the bug: in file : \WWW\wp-content\plugins\wc4bp-premium\class\core\wc4bp-helpers.php, line 214

- line causing the bug: $names[] = '<a href="' . get_permalink( $product['item_meta']['_product_id'][0] ) . '">' .$product['name'] . '</a>';

- replaced by this line fixes the bug $names[] = '<a href="' . $product->get_product()->get_permalink() . '">' . $product->get_product()->get_name() . '</a>';

Denis

gfirem commented 6 years ago

@denisleclerc Thanks, i will test your solution and release a fix. I not understand where you face the issue, click on BP Purchased activity can you share an screenshoot with me or and example of the url. I want to go more deep in this issue

denisleclerc commented 6 years ago

Hello, In BP of a user profile, you have an activity item when the user has an order complete. A new activity line is displayed with link to the purchased products... [image: Images intégrées 1]

2017-12-18 23:24 GMT+01:00 Guillermo Figueroa Mesa <notifications@github.com

:

@denisleclerc https://github.com/denisleclerc Thanks, i will test your solution and release a fix. I not understand where you face the issue, click on BP Purchased activity can you share an screenshoot with me or and example of the url. I want to go more deep in this issue

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/Themekraft/wc4bp/issues/163#issuecomment-352577433, or mute the thread https://github.com/notifications/unsubscribe-auth/AhDr7UFCFPj5KNpPUi50jhG61hSharDNks5tBuYQgaJpZM4RGISp .

gfirem commented 6 years ago

@denisleclerc the image is not working. But thanks i will take a look

denisleclerc commented 6 years ago

image with jpeg format and as attached not in the mail body

2017-12-19 0:24 GMT+01:00 Guillermo Figueroa Mesa notifications@github.com :

@denisleclerc https://github.com/denisleclerc the image is not working.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/Themekraft/wc4bp/issues/163#issuecomment-352590109, or mute the thread https://github.com/notifications/unsubscribe-auth/AhDr7QA1kzEZHffVpDz-SBdJSMIH5jy6ks5tBvQYgaJpZM4RGISp .

gfirem commented 6 years ago

Sorry the image is not in the attachment. Don't worry, i get the idea with your explanation.