Osclass forums
Support forums => Tips, tricks, and tutorials => Topic started by: mrtsoftware on January 26, 2018, 12:25:07 pm
-
Into which file functions for meta description and Keyword on Osclass...
Osclass is inserting / pulling auto description, keywords into META area of HEADER when an item listed...from which file Osclass is getting this function? Theme function file or Osclass core files...etc...
I need to know name and path of file...
-
Osclass functions.php
function meta_title()
-
oc-includes/osclass/functions.php
is that one?
-
Yes.
-
I have done some replaments ( just changed place of codes ) , no affecting.... nothing changing in META description and keywords...
-
I have done some replaments ( just changed place of codes ) , no affecting.... nothing changing in META description and keywords...
For meta description just before this line 182 in functions.php
return (osc_apply_filter('meta_description_filter', $text));
add following one according to your requirement
//incase you want to extend description
$text .= "Your description";
//incase you want to replace the description
$text = "Your text";