Osclass forums
Support forums => General help => Topic started by: door on April 08, 2019, 10:49:40 pm
-
When viewing an item for sale page, the breadcrumb navigation is missing the sub category link.
Currently it looks like:
My Site (http://My Site) > Main Category (http://Main Category) > Item that is for sale
This item is posted in a sub category, under the Main Category, but it does not show in the breadcrumb menu.
I want it to be:
My Site (http://My Site) > Main Category (http://Main Category) > Sub Category (http://Sub Category) > Item that is for sale
-
Hi, you can try Full Breadcrumbs plugin on Market:
https://market.osclass.org/plugins/seo/full-breadcrumbs_149
-
This should be a simple fix in breadcrumb.php, don't want to get a whole plugin for it
-
Hi, you can try Full Breadcrumbs plugin on Market:
https://market.osclass.org/plugins/seo/full-breadcrumbs_149
Since you seem to be knowledgeable on how this works, can you share the one line of code needed to be adjusted in order to accomplish this?
-
Can anyone help get this code in breadcrumb.php to display the Main category on the item page:
switch($this->getLocation()) {
case('item'):
if( $this->getSection() == 'item_add' ) {
$l = array('title' => $this->title['item_add' ]);
$this->addLevel($l);
break;
}
$aCategory = osc_get_category('id', osc_item_category_id());
// remove
View::newInstance()->_erase('categories');
View::newInstance()->_erase('subcategories');
View::newInstance()->_exportVariableToView('category', $aCategory);
$l = array(
'url' => osc_search_category_url(),
'title' => osc_category_name()
);
$this->addLevel($l);
-
sorry for the long wait
Find this
$aCategory = osc_get_category('id', osc_item_category_id());
// remove
View::newInstance()->_erase('categories');
View::newInstance()->_erase('subcategories');
View::newInstance()->_exportVariableToView('category', $aCategory);
$l = array(
'url' => osc_search_category_url(),
'title' => osc_category_name()
);
$this->addLevel($l);
and Replace
$aCategory = osc_get_category('id', osc_item_category_id());
$parentCategory = osc_get_category('id', $aCategory['fk_i_parent_id']);
// remove
View::newInstance()->_erase('categories');
View::newInstance()->_erase('subcategories');
View::newInstance()->_exportVariableToView('category', $parentCategory);
$l = array(
'url' => osc_search_category_url(),
'title' => osc_category_name() );
$this->addLevel($l);
View::newInstance()->_exportVariableToView('category', $aCategory);
$l = array(
'url' => osc_search_category_url(),
'title' => osc_category_name()
);
$this->addLevel($l);
If this helps mark this as Solved
-
Thank you, this works.
The code is in this file: yourdomain.com/oc-includes/osclass/classes/Breadcrumb.php
-
ok good to hear from you that it works
so mark this thread as solved
-
This is why we dont help others
After getting solution People forget to mark thread as solved
Thread mark as solved help people to find real answer
Do it now mr door
-
hope the admin can do it..