Fixes SEMRush "internal links are broken" caused by the Ultimate Elementor Business Reviews widget.
UAE builds each review's Read More » href as explode('/reviews', $author_url)[0] . '/place/' . $place_id. A Google review with no author attribution URL (anonymous reviewer) makes that collapse to the root-relative /place/<place_id>, which resolves against the client domain and 404s on every page the widget renders. Because the displayed reviews rotate as UAE refreshes its cached feed, the broken link appears and disappears with no site change.
FIX #7 hooks UAE's own uael_business_reviews_read_more filter and rewrites only non-absolute values to the canonical Google Maps place URL. Absolute URLs pass through byte-for-byte; link text, classes and markup are untouched, so nothing renders differently.
Per-site off-switch: add_filter( 'cbxsf_fix_uael_review_read_more', '__return_false' );