From db7986cd0c325a761e8534334195cd9ec7b1961a Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 10 Feb 2026 18:22:33 +0000
Subject: [PATCH] =FAQPage schema updates

---
 templates/dashboard/sections/news.php |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/templates/dashboard/sections/news.php b/templates/dashboard/sections/news.php
index 242f4c5..29e7757 100644
--- a/templates/dashboard/sections/news.php
+++ b/templates/dashboard/sections/news.php
@@ -1,6 +1,7 @@
 <?php
 
 use JVBase\managers\Cache;
+use JVBase\meta\Form;
 
 if (!defined('ABSPATH')) {
     exit; // Exit if accessed directly
@@ -259,9 +260,9 @@
         </div>
         <?php
         $handler = JVB()->getContent('news');
-        $meta = new JVBase\meta\MetaManager();
+
         foreach ($handler->getFields() as $field_name => $field_config) {
-            $meta->render('form', $field_name, $field_config);
+            echo Form::render($field_name, null, $field_config);
         }
         ?>
 

--
Gitblit v1.10.0