Author Topic: how Limit showing {next_image_name} length  (Read 3803 times)

0 Members and 1 Guest are viewing this topic.

Offline wallward

  • Jr. Member
  • **
  • Posts: 54
    • View Profile
how Limit showing {next_image_name} length
« on: January 14, 2014, 02:55:40 PM »
Hi
how to Limit showing {next_image_name} length to 15 character in the details page ?

Rembrandt

  • Guest
Re: how Limit showing {next_image_name} length
« Reply #1 on: January 14, 2014, 03:18:06 PM »
Hi!

search in details.php:
$next_image_name format_text($next_prev_cache[$next_image_id]['image_name'], 2);
insert below:
$next_image_name substr($next_image_name,0,15);

optional, search:
$prev_image_name format_text($next_prev_cache[$prev_image_id]['image_name'], 2);
insert below:
$prev_image_name substr($prev_image_name,0,15);

mfg Andi

Offline wallward

  • Jr. Member
  • **
  • Posts: 54
    • View Profile
Re: how Limit showing {next_image_name} length
« Reply #2 on: January 14, 2014, 11:06:06 PM »
Rembrandt thank you man, thank you.