Skip to content

Instantly share code, notes, and snippets.

View hassadee's full-sized avatar

Hassadee Pimsuwan hassadee

View GitHub Profile
@hassadee
hassadee / Tools.php
Last active September 9, 2017 02:57
[PrestaShop Tips] How to get a CMS page title, description, or content in a TPL file
/**
* Get CMS Title.
*/
public static function getCMSTitle($id_cms,$id_lang){
$cms = new CMS($id_cms, $id_lang);
return $cms->meta_title;
}
/**
* Get CMS Description.