To remove the “Review” button in affiliate table style 4, the easiest way is CSS.
Go to Appearance → Customize → Additional CSS and add:
/* Affiliate table (style 4) – hide Review button */
.affiliates_table.style_4 .review_btn,
.affiliates_table.style_4 .btn-review,
.affiliates_table.style_4 a[href*=”review”]{
display: none !important;
}
If it doesn’t hide it (class names can vary by version), use Inspect on that button, copy its exact class, and replace the selectors above.
If you want, email support your page URL (or the HTML snippet from Inspect) and we’ll give you the exact selector for your setup.