Is there a way that does not leave "/es" is because I use a single language, and to translate these characters
http://www.mainada.es/demo_bebe/es/el-ba-o-c-9
Printable View
Is there a way that does not leave "/es" is because I use a single language, and to translate these characters
http://www.mainada.es/demo_bebe/es/el-ba-o-c-9
Then you dont have to set multiple languages = on
i can't find the mistake...
Now ,I put this
http://www.mainada.es/demo_bebe/categories_name-c-15
PHP Code:
<?php
// note: we can later move part of this function into sub-functions, which we can store in the base class.
class SSULanguageEs extends SSULanguage{
static $registry;
static function parseName($name){
$cyrillic = array("ñ", "á", "é", "í", "ó", "ú");
$translit = array("n", "a", "e", "i", "o", "u");
$name = str_replace($cyrillic, $translit, $name);
$name = strtolower($name);
// we replace any non alpha numeric characters by the name delimiter
$name = self::removeNonAlphaNumeric($name, SSUConfig::registry('delimiters', 'name'));
// Remove short words first
$name = self::removeShortWords($name, SSUConfig::registry('configs', 'minimum_word_length'), SSUConfig::registry('delimiters', 'name'));
// trim the sentence
$name = self::trimLongName($name);
// remove excess SSUConfig::registry('delimiters', 'name')
$name = self::removeDelimiter($name);
// remove identifiers
$name = self::removeIdentifiers($name);
// remove trailing _
$name = trim($name, SSUConfig::registry('delimiters', 'name'));
}
}
ThanksPHP Code:
<?php $ssuLocalConfig = array(
'plugins' => array('parsers' => array('manufacturers')),
'identifiers' => array('mf' => 'manufacturers'),
'languages' => array( 'es' => 'es'))
?>
There are 2 possible causes:
1. The name could not be queried for some reason.
2. The parser did not work correctly.
If you want, pm me the ftp info for the test site you are working on, I can have a look
Your error was that you did not return the name after it is parsed. You are missing the last line in es.php
return urlencode($name);
Me too.
Just installed SSU 3.5.1
I have attributes on all products and adding to basket gives:
"Redirection limit for this URL exceeded. Unable to load the requested page. This may be caused by cookies that are blocked."
Emptied cache/ removed cookies about 20 times but still no joy.
Hi Yellow, I am running into a problem with my secure pages, often they will come up over the http connection rather than the https, when I reset the cache this seems to clear up, but it doesn't 'stick' very long, I have to keep resetting the cache and then I get a secure page, then next page comes up http again....I don't know if it is related to the seo mod, just that resetting the cache seems to fix it even if only for a limited time lol and I would appreciate any thoughts on this if you have them or if you could suggest a way that I could force those pages to display via https only :)
@bigbadboy:You are using an older version, get the new one from my sig
@christon26: Can you send me a sample link on the site which should have the problem?