Change Letter to Word
-
There is one line in the xml feed: <gender></gender>
For each product has a different label, for example: W, M, U, K
I would need these letters to be automatically transcribed to words: W to form women, M to for men, U to unisex, K to for kids.
They will appear in Title ans Short description fields.
I added in Function editor this snippets, but not working. Pls help me. Thank you.<?php function gender ( $text ) { return ( $text == 'W' ) ? 'W' : 'for women'; return ( $text == 'M' ) ? 'M' : 'for men'; return ( $text == 'U' ) ? 'U' : 'unisex'; return ( $text == 'K' ) ? 'K' : 'for kids'; } ?>
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Change Letter to Word’ is closed to new replies.