From 715e26a9eb219808d5c899d418e1d596f9318f61 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Mon, 22 Jun 2026 16:59:19 +0000
Subject: [PATCH] =Debugging and implementing the Checkout.js logic. Will be uploading to test integration with square next.

---
 inc/managers/DashboardManager.php |   23 +----------------------
 1 files changed, 1 insertions(+), 22 deletions(-)

diff --git a/inc/managers/DashboardManager.php b/inc/managers/DashboardManager.php
index 152afc6..73be522 100644
--- a/inc/managers/DashboardManager.php
+++ b/inc/managers/DashboardManager.php
@@ -930,28 +930,6 @@
         jvbRenderSections($this->userLink, 'post', $type);
     }
 
-    protected function renderSettings():void
-    {
-		wp_enqueue_script('jvb-form');
-        wp_enqueue_script(
-            'jvb-bio-manager',
-            JVB_URL.'assets/js/min/bioManager.min.js',
-            array('jvb-client-queue', 'sortablejs', 'quill-js', 'jvb-taxonomy-selector'),
-            '1.0.0',
-            true
-        );
-        wp_localize_script('jvb-bio-manager', 'bioSettings', [
-            'type'   => 'user_settings',
-        ]);
-		$content = apply_filters('jvbDashboardSettings', '');
-		if ($content !== '') {
-			echo $content;
-		} else {
-			jvbRenderSections($this->user->ID, 'user', jvbUserRole());
-		}
-
-    }
-
 	protected function getIntegrationsMenu():string
 	{
 		$integrations = JVB()->getAvailableServices(false);
@@ -1225,6 +1203,7 @@
 
         echo jvbNewModal(
             'edit-modal '.$type,
+			'edit-modal',
             'Edit '.ucfirst($type),
             jvbRenderForm('admin', $fields)
         );

--
Gitblit v1.10.0