From 346ef5097bea915ca96d2799d56efc5812ea4fd5 Mon Sep 17 00:00:00 2001 From: Viktor Miller Date: Wed, 4 Feb 2026 13:09:28 +0900 Subject: [PATCH] fix: read logo from provider user meta instead of job post meta The logo is stored as `ddhh_provider_logo` on the post author (provider), not as `job_logo` on the job post. This matches the existing logic in class-template.php. Co-Authored-By: Claude Opus 4.5 --- includes/elementor-tags/class-tag-job-logo.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/includes/elementor-tags/class-tag-job-logo.php b/includes/elementor-tags/class-tag-job-logo.php index a780f75..698f869 100644 --- a/includes/elementor-tags/class-tag-job-logo.php +++ b/includes/elementor-tags/class-tag-job-logo.php @@ -1,10 +1,13 @@ post_author, 'ddhh_provider_logo', true ) : ''; if ( $image_id ) { $url = wp_get_attachment_image_url( $image_id, 'full' );