if you need the same field for this, can use a custom plugin with php str_replace function
for example
public function replacedata(){
$this->buscartxt = (ee()->TMPL->fetch_param('buscartxt'))?ee()->TMPL->fetch_param('buscartxt'):0;
$this->reemplazatxt = (ee()->TMPL->fetch_param('reemplazatxt'))?ee()->TMPL->fetch_param('reemplazatxt'):0;
$formtag = str_replace($this->buscartxt, $this->reemplazatxt, ee()->TMPL->tagdata);
return $formtag;
}
and use in your template
<title>{exp:tcdcl_utilities:replacedata buscartxt="<cite>" reemplazatxt="" }{title}{/exp:tcdcl_utilities:getGridValues}</title>
tcdcl_utilities are the name of yur custom Plugin and replacedata the name of function
this replace only open tag cite , but you can custmize the function its only a simple example.
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.