Code: Select all
<a href="{postrow.U_ACTION}">
Code: Select all
<a href="{postrow.U_ACTION}" onclick="window.open(this.href); return false;">
Nice one, thanks.canidev wrote:Hi,
Sorry for my delay on reply. Im working hard in a new mod this days.
I will try to add the image feature in the next version.
To open the links in new page you must edit the template file.
open /styles/(your style)/template/blog/index_body.html
find:Replace with:Code: Select all
<a href="{postrow.U_ACTION}">
Code: Select all
<a href="{postrow.U_ACTION}" onclick="window.open(this.href); return false;">
Wow, thanks for your contribution.salvocortesiano wrote:Hi canidev, thanks for this great MOD! At this link the Italian translation of this mod 1.0.1
Best regards
Salvo
Maybe I will add this option in the next version.Is it possible to put smilies in comments from the default smileyset?
Ok thanks.canidev wrote:Wow, thanks for your contribution.salvocortesiano wrote:Hi canidev, thanks for this great MOD! At this link the Italian translation of this mod 1.0.1
Best regards
Salvo
Maybe I will add this option in the next version.Is it possible to put smilies in comments from the default smileyset?
+1canidev wrote:Wow, thanks for your contribution.salvocortesiano wrote:Hi canidev, thanks for this great MOD! At this link the Italian translation of this mod 1.0.1
Best regards
Salvo
Maybe I will add this option in the next version.Is it possible to put smilies in comments from the default smileyset?
Code: Select all
if(empty($config['blog_version']))
{
return false;
}
Code: Select all
if(!defined('BLOG_POSTS_TABLE'))
{
include($blog_hook->root_path . "includes/constants.$phpEx");
}
Piękny długi słoneczny dzień
the address url looks like this pikny-dugi-soneczny-dzie-p2.html
Code: Select all
$this->url_replace = array(
'ś' => 's',
'ł' => 'l',
'ą' => 'a',
'ż' => 'z',
'ź' => 'z',
'ę' => 'e',
'ć' => 'c',
'ó' => 'o',
'ń' => 'n',
'Ś' => 'S',
'Ł' => 'L',
'Ą' => 'A',
'Ż' => 'Z',
'Ź' => 'Z',
'Ę' => 'E',
'Ć' => 'C',
'Ó' => 'O',
'Ń' => 'N',
);