Jake Vanderwerf
2026-06-29 4089ba01e0881c89a72332e13bc3a80b6bddec2a
inc/managers/SEO/SEOAdminPage.php
@@ -27,6 +27,7 @@
        // Add to JVB dashboard
      add_action(BASE.'dashboardPage', [$this, 'addDashboardSection'], 10, 1);
        add_filter('jvbDashboardPage', [$this, 'addDashboardSection'], 20, 2);
      add_action('admin_enqueue_scripts', [$this, 'enqueueScripts']);
    }
@@ -60,14 +61,13 @@
    /**
     * Add section to JVB dashboard
     */
    public function addDashboardSection(string $content, string $page): string
    public function addDashboardSection(string $page):void
    {
      if ($page !== 'SEO') {
         return $content;
      jvbDump($page);
      if ($page !== 'seo') {
         return;
      }
        ob_start();
        $this->renderAdminPage();
        return ob_get_clean();
    }
    /**