cubecart / v6

CubeCart Version 6
https://cubecart.com
73 stars 57 forks source link

Hook Request: More Work on Breadcrumbs #3455

Closed bhsmither closed 10 months ago

bhsmither commented 10 months ago

In GUI->addBreadCrumb(), find:

        if (!empty($name)) {
            $this->_breadcrumb[] = array(
                'url' => $GLOBALS['seo']->SEOable($href),
                'title' => ucfirst(strip_tags(str_replace('_', ' ', $name)))
            );
        }

Request a hook placed just after. Suggested name: class.gui.add_breadcrumb_post.

I have a project that will make the breadcrumbs do more work.