Image Caption

Wednesday, June 20, 2012

Remove chronoform powered by [V4 Version]

Step:1

Open file "components\com_chronocontact\libraries\chronoform.php"

Step:2
Find below code [near to line: 358 or 361]

if($configs->get('licensevalid', 0)){
return '';
}else{
return str_replace('_EXTENSION_NAME_', .................C0tPg=='));

}

Step:3
Replace above code with 

if($configs->get('licensevalid', 0)){
return '';
}else{
return '';
}

Note : For Version V4_RC3.5.2

Step:1

Open file "components\com_chronocontact\libraries\chronoform.php"

Step:2
Find below code [near to line: 361]

if($configs->get('licensevalid', 0)){
return '';
}else{
return str_replace('_EXTENSION_NAME_', $extension, '<div class="chronoform"><a href="http://www.chronoengine.com">Powered By _EXTENSION_NAME_ - ChronoEngine.com</a></div>');
}


Step:3
Replace above code with 

if($configs->get('licensevalid', 0)){
return '';
}else{
return str_replace('_EXTENSION_NAME_', $extension, '');
}

Saturday, June 2, 2012

Thumbnail Image for Youtube Video

Youtube video url: http://www.youtube.com/watch?v=FI58xq9oP7g&feature=g-edu

[Note: To form image url just copy the video id and relpace it]

Thumbnail large Image url :http://img.youtube.com/vi/FI58xq9oP7g/0.jpg

Thumbnail  small Image url :http://img.youtube.com/vi/FI58xq9oP7g/1.jpg


<a href="http://www.youtube.com/watch?v=FI58xq9oP7g&feature=g-edu">

<img src="http://img.youtube.com/vi/FI58xq9oP7g/0.jpg">
</a>