Answer the question
In order to leave comments, you need to log in
How to display your category title by id Opencart?
There is a task to display your title in the Open Cart category.
Brought it out like this
<?php
//print $_SERVER['REQUEST_URI'];
//print strripos($_SERVER['REQUEST_URI'], '/index.php?route=product/category&path=20');
if (strripos($_SERVER['REQUEST_URI'], '/bankovskie')>-1)
{
print "<title>Свой Тайтл</title>";
}
else
{
print "<title>$title</title>";
}
?>
Answer the question
In order to leave comments, you need to log in
$tokens = explode('/', $_SERVER['REQUEST_URI']);
if (strpos('bankovskie', end($tokens)) !== false) {
print "<title>Свой Тайтл</title>";
} else {
print "<title>$title</title>";
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question