I'm using 'show_item_2.inc.php' for the shop, but do want 'details' to appear. Instead I want all the text to appear, but it cuts of after 30-40 chars.
I can delete 'details' from 'show_item_2.inc.php', but how do I tell phPay to show all chars?
Have a nice day
Viking-Uffe
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm using 'show_item_2.inc.php' for the shop, but do want 'details' to appear. Instead I want all the text to appear, but it cuts of after 30-40 chars.
I can delete 'details' from 'show_item_2.inc.php', but how do I tell phPay to show all chars?
Have a nice day
Viking-Uffe
Replace
echo snipstr($item_row[17],5)." ...";
with
echo $item_row[17])."...";
Function snipstr() cuts after 5 words ;-) number of characters independing. See functions.inc.php for source ...
Greetings,
Andreas.
THX. Works fine now.
Take care out there!
Viking-Uffe