CMS Fancybox gallery for PS 1.6

2016-09-02 cms, fancybox, gallery, tinyMCE

This guide shows how to build a fancybox gallery on a cms page in your shop based on PrestaShop engine of course. Whole guide is based on rich text editor modification or tinymce pro module (you can achieve this with both solutions). So, before you will start to apply fancybox gallery to your cms page - please extend your rich text editor because it is more than necessary.

If you're looking for tutorial for PrestaShop 1.7.x - please check dedicated step by step tutorial about adding fancybox cms gallery to prestashop 1.7.x

https://mypresta.eu/content/uploads/2016/09/1-prestashop-16-17-gallery-cms-page.png

 

Build a fancybox gallery on your cms page

Whole guide is based on two things: CMS controller modification and special code that we have to include into the cms page editor (while we will edit cms page contents). Whole guide is very easy to use so you don't have to be tech-savvy to make it work properly.

 

Cms Controller modification

First step is a modification of CMS controller. So please open a file controllers/front/CMSController.php. There is a function called "setMedia". This function includes a js / css librariers to cms page. If we want to build fancybox gallery - it is logical that we have to include fancybox plugin to this kind of page. By default this function looks like below:

    public function setMedia()
    {
        parent::setMedia();

        if ($this->assignCase == 1) {
            $this->addJS(_THEME_JS_DIR_.'cms.js');
        }

        $this->addCSS(_THEME_CSS_DIR_.'cms.css');
    }

before closing bracket please add two highlighted lines exactly as i show below

    public function setMedia()
    {
        parent::setMedia();

        if ($this->assignCase == 1) {
            $this->addJS(_THEME_JS_DIR_.'cms.js');
        }

        $this->addCSS(_THEME_CSS_DIR_.'cms.css');
        
        
        $this->addCSS(_PS_CSS_DIR_.'jquery.fancybox-1.3.4.css', 'screen');
        $this->addJqueryPlugin('fancybox');
    }

Two lines that I added include fancybox plugin to cms pages and css style file of fancybox (it is required to create nice well looking fancybox effect). Of course after you will modify the code - you can save it and go to the next step of this guide related to contents that we have to put into cms page contents to make it work as a fancybox gallery.

 

CMS page contents 

Please go to your shop back office to section Prefrences > CMS and create or edit page to which you want to include fancybox gallery. We will start with construction of the thumbnails. On example above i've got 4 pics per row. To create such kind of effect please use table tool and create 2x4 table, like i show on the screenshot:

table cms gallery

Table width property

Then click on table tool again and select option "Table properties". You will see popup with some settings related to table you created. To "width" setting please paste 100% (we want  wide table with 4 cells pe row). In the next step we will include pictures to cells.

 

Include pictures to table cells

To include picture to the cell please click on "image" tool and then go to section where you can upload pictures. You can see it on the screenshot below. Please upload own picture that you want to include to fancybox gallery and select it and insert to the editor. It is worth to define also width and height params to create nice tiny thubmbnail of picture. Copy also full url to the picture, we will use it in the next step.

tinymce img upload

 

Add fancybox effect on picture click

Now it's time to include fancybox effect that will be spawned once someone will click on the thumbnail. Just lick on thumbnail that you added to the table cell. And hit "link" feature available in tinymce toolbar. You will see popup with link options. To "Url" field please paste url to your original image (copied previously). Add title if you want and from "Class" section select "fancybox" (it is very important, otherwise fancbox will not work for this image). You can see details below:

fancybox cms page

"Class" menu available above is a part of tinymce pro module. If you applied changes to tinymce with tutorial about extending rich text editor options you will have to apply class="fancybox" manually with souce code tool. Repat process for each available cell in the table (or as many times as you need). Your image gallery will be ready then. And you will be able to go the the last step of the guide.

 

Script to turn on fancybox gallery

Now its time to turn on fancybox gallery effect fo each picture we added to the table cell. To do it, you have to use source code tool available in tinymce editor. Just hit it and you will see the popup. At the end of the contents please paste script code attached below. This javascript code adds fancybox to each image link with class="fancybox". So, after that - link will appear as a fancybox popup.

<script type="text/javascript"> 
$(document).ready(function() { $("a.fancybox").fancybox(); }); 
</script>

 

You can take a look on the picture, you will see where to click to turn on source code tool and where to paste the code - just do it at the end of contents.

fancybox script code

 

 

 

author milos myszczuk
Article by Milosz Myszczuk PrestaShop expert, official PrestaShop community moderator. PHP developer, specialist in relative and spatial databases management, GIS Analyst, CEO & founder of VEKIA interactive agency. Read more about VEKIA company
If you like my articles and want much more valuable tips, feel free to send me donation
1.4 version 1.4.11 1.6 404 addon admin advertise ahref ajax alpha animation api app application authentication back office backup badge banner basics block bootstrap button cache carrier cart catalog category certificate changelog chat class clear client clip cms code colors columns comments configuration contact container content controller cookie counter country coupon css csv currency customer dashboard database debug default delete delivery desktop developer device disable discount displayNav displayTop download dynamic editor effect empty encrypt engine error exchange exclude export facebook faceshop fade fancoupon fancybox fanpage fatal feature feed field file fix fixed font footer free friendly url front ftp full gallery generate gift global godaddy google google+ gray grid groupon header help hide highlight homefeatured homepage hook hosting hover howto htaccess html html5 ID image import include input instagram installation integration iPhone issue javascript jquery kgb knowhow languages law left likebox link list livingsocial loading log login logo loyality mail mailing maintenance manufacturer marketing marquee mcrypt menu meta mobile modification module movie moving multilanguage multiupload must have mysql news newsletter notification number open graph order override page password performance PHP phpmyadmin picture pinterest plugin popup post prestashop prestashop 1.0 prestashop 1.1 prestashop 1.2 prestashop 1.3 prestashop 1.4 prestashop 1.5 price rules problem product profile promotion proslider purifier quantity query quick tip random rates register reinsurance release reporting reset responsive restore results ribbon rich text right sales search security seo service shadow share shipping shop shopmania slider smarty social networks SQL SSL statistics stock store style subcategory superuser support switcher tab tablet tag tax template text theme tinyMCE tips and tricks tpl tracking translations tree trends trigger tumblr tutorial twitter update upgrade upload variables video visits voucher vulnerability web2print wide widget width window wishlist wysiwyg youtube zip zopim