From a24a06002081ad71a78ffeff9072725ba39cf121 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 17 Feb 2026 20:05:31 +0000
Subject: [PATCH] =minor changes, particularly around the JVB_CHILD_URL pattern

---
 inc/helpers/renderFields.php |   37 +++----------------------------------
 1 files changed, 3 insertions(+), 34 deletions(-)

diff --git a/inc/helpers/renderFields.php b/inc/helpers/renderFields.php
index 6554579..87577a6 100644
--- a/inc/helpers/renderFields.php
+++ b/inc/helpers/renderFields.php
@@ -231,7 +231,7 @@
         foreach ($specialties as $specialty) {
             $out .= '<li><b>'.$specialty['specialty'].'</b>';
             if ($specialty['description'] !== '') {
-                $out .= apply_filters('the_content', $specialty['description']);
+                $out .= jvb_filter_content( $specialty['description']);
             }
             $out .= '</li>';
         }
@@ -308,7 +308,7 @@
             if ($review['review'] === '') {
                 continue;
             }
-            $out .= '<li><blockquote>'.apply_filters('the_content', $review['review']);
+            $out .= '<li><blockquote>'.jvb_filter_content( $review['review']);
             if ($review['name'] !== '' || $review['rating'] !== 'none') {
                 $date = $aOpen = $aClose = '';
                 if ($review['url']) {
@@ -423,7 +423,7 @@
 			</div>
 		</template>
 		<template class="uploadMeta">
-			<?= jvbImageMeta() ?>
+			<?= Form::renderImagePreview() ?>
 		</template>
 		<template class="imageGroup">
 			<div class="upload-group">
@@ -594,37 +594,6 @@
 	}
 }
 
-function jvbImageMeta(int|null $ID = null, string $title = '', string $alt = '', string $caption = '', array $fields = []):string
-{
-	$dataID = ($ID) ? ['image-id' => $ID] : false;
-	$addID = ($ID) ? '-'.$ID : '';
-
-	$config = [
-		'image-title'.$addID => [
-			'type'  => 'text',
-			'label' => 'Image Title',
-			'value' => $title,
-			'data'  => $dataID
-		],
-		'image-alt-text'.$addID => [
-			'type'  => 'text',
-			'label' => 'Alt Text',
-			'value' => $alt,
-			'hint'  => 'Alt text helps the visually impaired, as well as some benefits for SEO.',
-			'data'  => $dataID
-		],
-		'image-caption'.$addID => [
-			'type'  => 'textarea',
-			'value' => $caption,
-			'label' => 'Image Caption',
-			'data'  => $dataID
-		]
-	];
-
-	return Form::render('image_data', null, $config, false, true);
-}
-
-
 
 function jvbLocationLinks(array $location): string {
 	if (empty($location['address'])) {

--
Gitblit v1.10.0