This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Latest Reviews,news etc...


avatar
Nameless 0
From: -
Latest Reviews,news etc...

how would i go about minimising the character limit?

www.xtremecomputing.co.uk

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Latest Reviews,news etc...
avatar
Administrator
1340
From: Vienna, Austria
Latest Reviews,news etc...

Here a complete example to increase that limit to 99 characters

Find:

                    if ($blocks[website_blockmode1] == 3)

{
$thisblock .= GetBlock($var, $var2, $var3, 35, 32, $website);
}
else
{
$thisblock .= GetBlock($var, $var2, $var3, 52, 49, $website);
}


and replace with:

                    if ($blocks[website_blockmode1] == 3)

{
$thisblock .= GetBlock($var, $var2, $var3, 99, 96, $website);
}
else
{
$thisblock .= GetBlock($var, $var2, $var3, 52, 49, $website);
}


Find:

                    if ($blocks[website_blockmode4] == 3)

{
$thisblock .= GetBlock($var, $var2, $var3, 35, 32, $website);
}
else
{
$thisblock .= GetBlock($var, $var2, $var3, 52, 49, $website);
}


and replace with:

                    if ($blocks[website_blockmode4] == 3)

{
$thisblock .= GetBlock($var, $var2, $var3, 99, 96, $website);
}
else
{
$thisblock .= GetBlock($var, $var2, $var3, 52, 49, $website);
}


A few notes:
- Don't forget to clear the cache
- The second $thisblock .= GetBlock($var, $var2, $var3, 52, 49, $website); call is for the two rows mode.

Working?
1 Re: Latest Reviews,news etc...
avatar
OP 0
From: -
Latest Reviews,news etc...

Thanks but doesnt seemed to have changed it Slightly Frowning Face

 http://www.xtremecomputing.co.uk/
1 Re: Latest Reviews,news etc...
avatar
Administrator
1340
From: Vienna, Austria
Latest Reviews,news etc...

In the headlines?

Open core.php in an editor and look for the following lines (this line is actually 4 times in this script):

$thisblock .= GetBlock($var, $var2, $var3, 35, 32, $website);

35 and 32 are the two values that you like to change Smiling Face

35 = maximum chracter length before the script will cut the title
32 = titel cut length

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.