| Re: News module keywords do not appear in utf8 |
| by brutalicuss on 2014/9/8 17:32:34 Hi, I mean for SEO, not specially in your case - "special characters problem" You should set your keys custom, relevant to your title and description, the purpose you seek to find your article in internet. And the keys must be much less, i think 6-7 and less Аlthough, the keywords are not already especially value for G. in example |
| Re: News module keywords do not appear in utf8 |
| by Hadesteam on 2014/9/7 10:56:44 Now it works. Thank you very much for your help. So what do you recommend instead of keywords generated automatically? |
| Re: News module keywords do not appear in utf8 |
| by brutalicuss on 2014/8/29 14:30:51 OK man, i found a way to fix that, but i dont recommend to use auto keys in future replace this line: le="color: #000000"><?php $content=strtolower($content); in your news/include/functions.php with this: le="color: #000000"><?php $content=mb_strtolower($content); this will work :) |
| Re: News module keywords do not appear in utf8 |
| by Hadesteam on 2014/8/28 10:35:11 none of these proposals did not work. I would like to note that if I type manually metatags when adding the article, then everything is OK. But it's hard to edit more than 1000 articles, which is why I use the option Metagen, which generates 20 words, but does not display properly. |
| Re: News module keywords do not appear in utf8 |
| by brutalicuss on 2014/8/27 17:14:29 OK, i mean other but OK :) 1st: try set this: <meta charset="UTF-8"> just under your <head> in theme.html in your theme folder This is for html5 but you just try (must clear all chache) if not Try set this: must be at the top in your article.php file in your news folder if not find the line le="color: #000000"><?php $string = preg_replace('/s+?(S+)?$/', '', substr($string, 0, $length+1)); around line 650 in file function.php in your news/include folderand replace with le="color: #000000"><?php $string = preg_replace('/s+?(S+)?$/', '', mb_substr($string, 0, $length+1)); hope it will work :) |