Pergunta

I'm trying to remove the trailing slash from this link:

href="<?php echo Mage::helper('supermenu')->getLinkbyItem($item); ?>"

In the module there is a field that one uses to enter the link used in the above. I enter the link such as christmas.html but the link gets a trailing slash like this: .../christmas.html/

I found this Remove Trailing Slash From String PHP using rtrimbut don't know how to use it in this context.

Foi útil?

Solução

Have you tried

echo rtrim(Mage::helper('supermenu')->getLinkbyItem($item), '/');

Outras dicas

If I understand your question correctly, you would simply wrap the entire part that is being echoed. It would look like this:

href="<?php echo rtrim(Mage::helper('supermenu')->getLinkbyItem($item)); ?>"
Licenciado em: CC-BY-SA com atribuição
Não afiliado a magento.stackexchange
scroll top