getsimple – Tic & Net https://blog.datacargo.fr Le blog notes de Fred Thu, 12 Oct 2017 14:55:32 +0000 fr-FR hourly 1 https://wordpress.org/?v=6.4.8 https://blog.datacargo.fr/wp-content/uploads/2019/05/cropped-bannière-ticnet-3-32x32.png getsimple – Tic & Net https://blog.datacargo.fr 32 32 Zwii le CMS tout terrain facile https://blog.datacargo.fr/2017/10/12/zwii-le-cms-tout-terrain-facile/ https://blog.datacargo.fr/2017/10/12/zwii-le-cms-tout-terrain-facile/#comments Thu, 12 Oct 2017 14:55:32 +0000 http://tic-et-net.org/?p=5794 Adepte du CMS GetSimple, je suis tombé par hasard sur un article de présentation de ce CMS français, j’ai donc immédiatement décidé de  tester Zwii et vous savez quoi ? J’ai viré GetSimple et refait mon site datacargo.fr sous Zwii en quelques dizaines de minutes.

Pour mon activité professionnelle et moi-même, j’ai besoin d’un CMS simple, sans base de données (dont les données sont stockées dans des fichiers plats xml ou json), facile à prendre en main et à configurer, très loin de Joomla ou de WordPress.

J’anime un TD de multimédia pour des étudiants littéraires, je veux donc éviter le coté trop cambouis.

Pourquoi Zwii ?
C’est un CMS fait par un petit français, Rémi Jean, avec un support en français.

L’installation est très simple et les prérequis presque inexistants, pas de module exotique dans le php,  ça marche même chez des hébergeurs très restrictifs comme Free grâce à deux fichiers à remplacer téléchargeables sur le forum (dont htaccess).

Pas de thème à installer, la personnalisation s’effectue directement élément par élément et elle s’applique au site. Sous Getsimple, la personnalisation s’effectue grâce à des thèmes, même si les effets visuels sont parfois intéressants, la modification d’une simple couleur s’avère complexe car liée à la modification d’un fichier CSS.

L’édition des pages est particulièrement efficace, en effet, Zwii propose des modèles en plus de la page standard.

2017-10-12_16h41_05
Et oui tout ça en natif sans avoir besoin de rajouter de plugin… C’est juste excellent.
Pour en terminer, on peut ajouter que l’interface d’administration de Zwii est très complète au niveau des paramètres.
2017-10-12_16h42_37

  • Gestion native multi-utilisateurs avec 3 catégories de droit : membre, modérateur et administrateur.
  • Favicon,
  • Code Google Analytics
  • Réseaux sociaux
  • Message de consentement des cookies
  • Réécriture d’URLs

A mes yeux, c’est le meilleur CMS pour des débutants.

 
 
 
 
 

]]>
https://blog.datacargo.fr/2017/10/12/zwii-le-cms-tout-terrain-facile/feed/ 4
[GetSimple] Automatic galleries in your pages https://blog.datacargo.fr/2016/10/09/getsimple-automatic-galleries-on-your-pages/ https://blog.datacargo.fr/2016/10/09/getsimple-automatic-galleries-on-your-pages/#respond Sun, 09 Oct 2016 19:54:30 +0000 http://tic-et-net.org/?p=4492 As a web site developer, I am fan of GetSimple CMS, free and improved software for building Site, Blogs, ePortfolio.

Sadly,  there might exist some issues between themes and plugins,  for instance 118n_gallery a popular plugin with no other choice to show clean gallery. If it fails, wrong way.

For this project I needed an easy way to make galleries, the real user isn’t a power one, with no code to write editing pages. Too bad, i18n_gallery doesn’t seem to be compatible with kickstart.js so I had to find a good idea to make it work.

To solve that problem and after a lot of tries, I have installed another great plugin ExtraGallery wich is a good one to manage backend galleries but without any code to show them on a page.

The purpose of this article is to show you how it’s possible to get an automatic gallery printed at the bottom of pages and using ExtraGallery.

Stage 1 : Download and install ExtraGallery and i18n_custom_field, it will be useful to pass gallery name from page to php code in template.

Stage 2 : Setups. Under Plugins page, setup a language code for ExtraGallery. Then configure Custom Code with a text variable, change LABEL to your native language :

2016-10-09_21h23_38

Stage 3 : Copy the theme template and type this code under 


“; function output($item,$key){ GLOBAL $SITEURL;     //echo ”

“.$item[‘field-0’].”

“; //uncomment to get name of gallery echo ‘‘; echo ‘‘; echo ““;                      } ?>

Parts of this code is coming from a power user on this forum thread. It uses kickstart.js to show a clean gallery and call a Custom_Field function return_custom_field(‘name’) to get the name of the gallery to show. Html code is easy to custom, in this case, Kiskstart does a lot of work.

To get kickstart, you just have to download it and to add this code into the template header :

    
     media="all" />
    
    
    ?php%20get_theme_url();%20?/js/kickstart.js

Read more about Kickstart.js here

Stage 4 : Create the gallery using backend Extragallery

Stage 5 : Create or edit a page. Change the template to the one with the included code, and type the name of the gallery, obviously the one typed in ExtraGallery :

2016-10-09_21h49_15

For further informations, read this tread.

]]>
https://blog.datacargo.fr/2016/10/09/getsimple-automatic-galleries-on-your-pages/feed/ 0