Tags

CMS - Tags

Software

It's not just Software. It's the heart of your Business! Keep Reading Quick Tour Taste the sweetness of your Software. We don't ...

Read more

Content Management System CMS Bootstrap 3

CMS: Bootstrap - Opensource HTML/CSS/PHP and MySQL Content Management System Modern, fast and ...

Read more

Try before you Buy

Cloud Desk 3 Website Front End Demo Operator Demo Front End Demo Operator Demo SignUp Page ...

Read more

Pricing

Pricing “The price of greatness is responsibility.” ― Winston S. Churchill ...

Read more

Cloud Desk 3

Cloud Desk 3 - Fully SaaS Start your own professional HelpDesk Business Run your own HelpDesk ...

Read more

HelpDesk 3

HelpDesk 3 The complete Support Solution Live Chat, Tickets, FAQ, Client Management & much more ...

Read more

Bootstrap CMS

Create beautiful websites with CMS. The best content management system based on the latest Bootstrap 3. Latest Version 2.3.3

Read more

HelpDesk 3

The next generation support solution is now available. Modern, fast and clean design fully mobile optimised runs on all devices. Latest Version 4.1.1

Read more

CMS 1.1 on his way

Get ready for the first update for CMS. We have been working hard to give you the best experience with the new CMS 1.1, actually we should call it 2.0 because there are so many new things with this ...

Read more

CMS 1.2 - Style Manager

The brand new style manager for CMS is finally available. Build awesome websites with just a few clicks, unlimited possibilities, fully responsive and mobile optimised.Checkout the video how easy it is to ...

Read more

Updates CMS / Live Chat

Now available in our shop and download area the latest version for CMS 1.3 and Live Chat Business 1.2. That is probably the best update for you because for future updates you don't need to download and install ...

Read more

Welcome

Welcome to our new website.We have combined all our products to one strong platform. All accounts from all platforms (Live Support Rhino, CrocDesk, Gecko CMS) have been merged to JAKWEB, just login with your ...

Read more

CMS 1.4

We are happy to announce that CMS 1.4 is on his way.Two new features have been implemented, the brand new Slider plugin and the brand new category manager. As always we run a few live tests first, then update ...

Read more

CMS 1.5

CMS 1.5 is now available, major improvements and a lot of bug fixes. As we grow quick, support questions, suggestions and feedback coming in on a daily base and of course we want to give you the best ...

Read more

CMS 2.0

29.02.2016You will remember that date because it changed the way how we build and manage websites in the future.CMS 2.0We are pleased to announce the availability of CMS 2.0. The best and easiest way to build ...

Read more

CMS 2.1

Happy 4th of April! We are proud to release CMS 2.1 with a brand new template called Mosaic, CMS now offers 2 templates within the package with almost unlimited options. We have not just added a new template ...

Read more

CMS 2.2

We're pleased to announce the release of the latest version of our product, CMS 2.2. This release includes a number of valuable improvements. We have included a new plugin and we addressed over 40 bugs and ...

Read more

HelpDesk 3 - PreSales

HelpDesk 3 is around the corner and we now offer for a limited time 50% presale discount. Order before the clock hits Zero and you will receive a HelpDesk 3 copyright free license for 50% cheaper.HelpDesk 3 ...

Read more

What do I need to run CMS?

You need a web server to run CMS.The web server must have PHP and MySQL with one available database.If your web server is running on Apache you can use the build in URL optimizer and get a slightly better ...

Read more

How big is CMS?

CMS is very lightweight and super fast! It is straight forward and does not contain any unnecessary files or blown up functions. In fact CMS packed as a ZIP file is only around 4MB, have you every seen a ...

Read more

What can I do with CMS?

CMS is a software to build modern websites based on HTML5 and CSS3 and Bootstrap 3.You can do almost anything with CMS, because it is not blown up with any unnecessary functions it is a perfect platform for ...

Read more

Hook: php_search

Use this hook to execute PHP code in the search.php file.For example:if ($SearchInput) { echo Your search term: .$SearchInput; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_tags

Use this hook to execute PHP code in the tags.php file.For example:if ($cleanTag) { echo Your tag: .$cleanTag; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_sitemap

Use this hook to execute PHP code in the sitemap.php file.For example:if ($cat) { echo Categories: .$cat; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_index_top

Use this hook to execute PHP code in the index.php file before anything else.For example:define('MY_VAR', cool);if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_index_bottom

Use this hook to execute PHP code at the very end in the index.php file.For example:if (isset($page3)) { echo CMS is ready...; } else { echo CMS is always ready...; }if you like to include a ...

Read more

Hook: php_rss

Use this hook to execute PHP code in the rss.php file.For example:if ($displayRSS) { echo My RSS: .$displayRSS; }if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_lang

Use this hook to execute PHP language code in the index.php file.For example:if (file_exists(APP_PATH.'plugins/yourplugin/lang/'.$jkv[lang].'.ini')) { $tlt = ...

Read more

Hook: php_pages_news

Use this hook to execute PHP code in the index.php and news.php file.This hook is used in pages and news, the same php code will be executed.For example:if (!empty($PAGE_ACTIVE)) { $myplugin = 1; }if you like ...

Read more

Hook: php_admin_usergroup

Use this hook to execute PHP code in the admin/usergroup.php file.For example:if (isset($defaults['jak_download'])) { $insert .= 'download = '.$defaults['jak_download'].', downloadpost = ...

Read more

Hook: php_admin_user_rename

Use this hook to execute PHP code in the admin/user.php file.For example:$jakdb->query('UPDATE '.DB_PREFIX.'faqcomments SET username = '.smartsql($defaults['jak_username']).' WHERE userid = ...

Read more

Hook: php_admin_user_delete

Use this hook to execute PHP code in the admin/user.php file.For example:$jakdb->query('UPDATE '.DB_PREFIX.'faqcomments SET userid = 0 WHERE userid = '.$page2.'');if you like to include a ...

Read more

Hook: php_admin_user_delete_mass

Use this hook to execute PHP code in the admin/user.php file.For example:$jakdb->query('UPDATE '.DB_PREFIX.'faqcomments SET userid = 0 WHERE userid = '.$page2.'');if you like to include a ...

Read more

Hook: php_admin_lang

Use this hook to execute PHP language code in the admin/index.php file.For example:if (file_exists(APP_PATH.'plugins/yourplugin/admin/lang/'.$jkv[lang].'.ini')) { $tld = ...

Read more

Hook: php_admin_setting

Use this hook to execute PHP code in the admin/setting.php file.For example:$plugin_setting = working...;if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_admin_setting_post

Use this hook to execute PHP code in the admin/setting.php file.For example:if ($defaults['jak_lang'] == '') { $errors['e6'] = $tl['error']['e29']; }

Read more

Hook: php_admin_user

Use this hook to execute PHP code in the admin/user.php file.For example:$plugin_user = Display stuff when showing user in admin;if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_admin_user_edit

Use this hook to execute PHP code in the admin/user.php file.For example:$plugin_user_edit = Display stuff when edit user;if you like to include a file:APP_PATH.'plugins/yourplugin/file_to_include.php';

Read more

Hook: php_admin_index

Use this hook to execute PHP code in the admin/index.php file.This hook is located when you open the administration panel.For example:$JAK_CMS_VERSION = $jaknewversion;$JAK_CMS_NEWS = $jaknewnews;if you like ...

Read more

Hook: php_admin_fulltext_add

Use this hook to execute PHP code in the admin/setting.php file.For example:$jakdb->query('ALTER TABLE '.DB_PREFIX.'pages ADD FULLTEXT(`title`, `content`)');

Read more

Hook: php_admin_fulltext_remove

Use this hook to execute PHP code in the admin/setting.php file.For example:$jakdb->query('ALTER TABLE '.DB_PREFIX.'pages DROP INDEX `title`');

Read more

Hook: php_admin_pages_sql

Use this hook to execute PHP code in the admin/page.php file on two locations. This hook is located when edit or create a new page.For example:if (empty($news) && !empty($defaults['jak_shownewsmany'])) ...

Read more

Hook: php_admin_news_sql

Use this hook to execute PHP code in the admin/news.php file on two locations. This hook is located when edit or create a new news.For example:if (empty($news) && !empty($defaults['jak_shownewsmany'])) ...

Read more

Hook: php_admin_pages_news_info

Use this hook to execute PHP code in the admin/page.php and admin/news.php file.For example:$JAK_GET_TICKETING = jak_get_page_info(DB_PREFIX.'tickets', '');if you like to include a ...

Read more

Hook: tpl_body_top

Template Hook: tpl_body_topYou can include a file on the very top in the template. This hook is located between theand the very firstYou can include a file, for example:plugins/yourplugin/template/body_top.php

Read more

Hook: tpl_between_head

This hook is located between thetag.You can include a file, for example:plugins/yourplugin/template/css.php

Read more

Hook: tpl_header

This hook is located in between the header, display advertising, buttons or whatever you like next to the logo.You can include a file, for example:plugins/yourplugin/template/css.php

Read more

Hook: tpl_below_header

This hook is located below the header, display advertising, buttons or whatever you like below the navigation and logo.You can include a file, for example:plugins/yourplugin/template/advert.php

Read more

Hook: tpl_sidebar

This hook is in the sidebar and does work together with the grid/widget system, display advertising, buttons or whatever you like in the sidebar.You can include a file, for ...

Read more

Hook: tpl_page

This hook is located in template/yourtemplate/page.php and will be executed between title and content.You can include a file, for example:plugins/yourplugin/template/page.php

Read more

Hook: tpl_footer

This hook is located in template/yourtemplate/footer.php and will be executed at the very beginning in the footer template.You can include a file, for example:plugins/yourplugin/template/footer.php

Read more

Hook: tpl_footer_end

This hook is located in template/yourtemplate/footer.php and will be executed at the very end just before the tag.You can include a file, for example:plugins/yourplugin/template/end.php

Read more

Hook: tpl_tags

This hook is located in template/yourtemplate/tags.php and will be executed to display your plugin tags.You can include a file, for example:plugins/yourplugin/template/tags.php

Read more

Hook: tpl_sitemap

This hook is located in template/yourtemplate/sitemap.php and will be executed to display your plugin sitemap list.You can include a file, for example:plugins/yourplugin/template/sitemap.php

Read more

Hook: tpl_search

This hook is located in template/yourtemplate/search.php and will be executed to display your plugin search result.You can include a file, for example:plugins/yourplugin/template/mysearchresult.php

Read more

Hook: tpl_page_news_grid

This hook is located in template/yourtemplate/page.php / template/yourtemplate/newsart.php and will be executed to display your plugin grid result.You can include a file, for example:if ($pg['pluginid'] == ...

Read more

Hook: tpl_admin_usergroup_edit

This hook is located in admin/template/editusergroup.php and will be executed to display your plugin user-group permission.You can include a file, for example:plugins/yourplugin/template/usergroup_edit.php

Read more

Hook: tpl_admin_usergroup

This hook is located in admin/template/editusergroup.php and will be executed to display your plugin user-group permission.You can include a file, for example:plugins/yourplugin/template/usergroup_new.php

Read more

Hook: tpl_admin_setting

This hook is located in admin/template/setting.php and will be executed to display your plugin settings.You can include a file, for example:plugins/yourplugin/template/my_setting.php

Read more

Hook: tpl_admin_head

This hook is located in admin/template/header.php and will be executed for your css or javascript files needed for your plugin.You can include a file, for ...

Read more

Hook: tpl_admin_footer

This hook is located in admin/template/footer.php and will be executed at the very end just before the tag.You can include a file, for example:plugins/yourplugin/template/my_copyright.php

Read more

Hook: tpl_admin_page_news

This hook is located in admin/template/footer.php and will work together with the grid system, you can use PHP and HTML code.You can include a file, for example:if ($pg['pluginid'] == JAK_PLUGIN_FAQ) ...

Read more

Hook: tpl_admin_page_news_new

This hook is located in admin/template/footer.php and will be executed to display new plugin stuff in the grid system.You can include a file, for example:plugins/faq/admin/template/connect_new.php

Read more

Hook: tpl_admin_user

This hook is located in admin/template/newuser.php.You can include a file, for example:plugins/yourplugin/template/more_user_information.php

Read more

Hook: tpl_admin_user_edit

This hook is located in admin/template/edituser.php.You can include a file, for example:plugins/yourplugin/template/more_user_information_edit.php

Read more

Hook: tpl_admin_index

This hook is located in admin/template/index.php and is made for displaying news about your plugin.You can include a file, for example:plugins/yourplugin/template/news_on_index.php

Read more

Specifications

CMS is build on PHP widely used on web servers. MySQL for storing all the necessary data and HTML5/CSS3.CMS is using a few third party products like:jQueryBootstraptinyMCE - EditorShadowboxjQuery Tags - ...

Read more

Installation - First Step

When you install CMS the first time, please read the installation manual very carefully! Installing CMS is very simple and the installation wizard will guide you thru in only two steps.Important information ...

Read more

CMS and htaccess (Seo)

If you server is running on Apache you can use the build in optimisation for short url's. This gives you the possibilities to have shorter and cleaner URL's and a better search engine performance.To use the ...

Read more

Hook: php_index_page

Use this hook to execute PHP code in the index.php file between the page.For example:// Confirm user if ($page == 'rf_ual') { if (is_numeric($page1) && is_numeric($page2) && ...

Read more

Install your first plugin

To extend your CMS, you can extend it with plugins.Plugins are easy to install and bring great features into your website.To install a plugin follow this steps:Go to your administration panel -> ...

Read more

My First Plugin

It is very easy to create your own plugin, with a little bit knowledge of PHP, MySQL and HTML/CSS it is fairly easy to create your own plugin!Let's have a look into the very simple plugin Open external URL in ...

Read more

Plugin install.php

Let's explain how to build the install.php for a plugin.Header:// Include the config file...if (!file_exists('../../config.php')) die('[install.php] config.php not found');require_once '../../config.php';// If ...

Read more

MySQL Plugins Table

When creating a plugin you need to store anything about your plugin in the the plugins table, the structure of this table looks like this:Should be easy to understand if you know MySQL a little bit. However ...

Read more

Create your own Template

Any content management system is only as good as your own template/mydesign. I'm sure you want your own design associated with your business or brand.The easiest way to start is to duplicate the existing file ...

Read more

Add more Super Administrators

Adding another super administrator is fairly easy! However you need to know that every super administrator created in the administration panel is protected as well in the db.php file.Please follow this steps ...

Read more

Protect _files Directory

Protect all your folders with read, write and execute permission if you can! You should protect your _files directory best way would be if your server can handle directory with permission lower than 0777. This ...

Read more

CMS Page

How to create a page in CMS?Create a page is fairly simple, however you have to know that it works slightly different to other content management system. In CMS the menu and pages are separate, that means you ...

Read more

Hook: php_admin_widgets_sql

This hook enables to fire some sql in the admin widgets section.$getpoll = $JAK_GET_POLL = jak_get_page_info(DB_PREFIX.'polls', '');

Read more

Hook: tpl_below_content

This is the brother from the below_header hook. You can close some divs or add some extra stuff that doesn't fit in the main section.

Read more

Hook: tpl_footer_widgets

Place some widgets dynamically in the footer. This is an example how igrid used this hook:<?php if (is_numeric(JAK_BCONTENT1_IGRID_TPL)) {   <br ...

Read more

Add your Sidebar Widget

Step by Step guide to add your own sidebar widget.First you need to create the sidebar widget file within the template you use:In our case we created a file with Google Adsense as content. After you created ...

Read more

CMS - Style Manager

The brand new style manager for cms is available since version 1.2. Customise your website design is now done with a few clicks.Please note: for some changes you need to save, refresh the page and then ...

Read more

Contact Form Builder

CMS has a build in contact form builder, create as many contact forms you like and link one to any page. The form builder can have unlimited fields even file upload is possible.You can create input, radio, ...

Read more

Translate

All our softwares are language file based, that means it is very easy for you to translate it into your own language (if not already exists).Most of our software is already available in several languages but ...

Read more

Menu Builder Function

In case you building a new template for CMS this is how you use the new menu builder invented in CMS 1.4.All modern menus are based on lists, classes and sub classes. With CMS 1.4 it is super easy to use the ...

Read more

Block IP Range

With the new release of version 1.6 you can not only block a single IP address you can block a whole range.Before the version 1.6 you could only block a single IP address, since version 1.6 you can block a ...

Read more

Advanced Editor Ace

With the new release of 1.6 a new option for creating content will be available. Should you be familiar with HTML and CSS why using the build in editor tinyMCE and life with the limits it comes with. Since 1.6 ...

Read more

Copyrights and Backlinks

We get often asked if backlinks and copyrights can be removed with our license and YES you can remove it when you have purchased a copyright free license.All our code is not encrypted and can be modified, but ...

Read more

Change Text/Layout in HelpDesk

HelpDesk has a build in content management system, it allows you to change the text and layout via operator console, your web browser.Please login into your operator panel and go to Settings - Front Text. ...

Read more

Lightbox / Modal

CMS has a built in lightbox feature, that means you can open images, content or videos in a modal window.Simple use following class on your link tag.class=lightboxYour link tag would look like this.<a ...

Read more

URL Mapping

With the new release of CMS 2.2 we have included a new plugin called: URL MappingOne of our customers suggested this tool to redirect a changed url within the CMS the professional way.This plugin will simply ...

Read more

Self Installation

Only for Live Chat 3 and HelpDesk 3Here we have an easy to follow installation guide for our stand alone products. Just follow the guide from top to bottom and you should be online within minutes.

Read more

Auto Update Errors

Our build in Auto Updater gives you the possibility to update your JAKWEB Software with a click. What do you need to know about Auto Updater.Auto Updater needs to have at least: cUrl file_get_contents ...

Read more

Translate HelpDesk 3

Before HelpDesk 3 - Version 3.6HelpDesk 3 is fully multilanguage capable. The translation is easy and can be done right on the client side.As an operator with access to Answers/Text or as a super operator you ...

Read more

Pages and CMS

The build in CMS in HelpDesk 3 is the place to manage your pages, translations, contact, login, signup and other forms.By clicking on of the pages on the right you can edit the content easily you have also ...

Read more

Front End CMS - Edit Content

We have made a short video how to edit the front end content with the build in Content Management System (CMS).After a fresh installation the system has created two users, one super operator and one client ...

Read more

AI created FAQ or Blog articles

Since HD3 - Version 4.2, we have integrated even more AI capabilities into our comprehensive support and client management solution. Now, AI can assist in writing your blog and FAQ articles, as well as ...

Read more

CMS updated

We have just updated CMS. Added a easier way to edit comments and fixed a few bugs, no database changes just file changes. Download the package and replace the new files. Hint sort it after date modified with ...

Read more

User manual for CMS

Because I saw the 3 videos that you post on youtube and non of they worked for me. If you want to try on my site please tell me and I tell you the credentials.

Read more

Add user to post on blog

I have another question. Firs of all thank you for the support.How can I add a user that can post articles on blog and only can do that, nothing else?

Read more

User manual please!

I have no coding knowledge and need too much help because there is no user manual of the software, how to use each of the plugins and modifications. Example, I dont know how to set the blog as the home ...

Read more

Change favicon and logo

Coud you please tell me how to change favicon and logo?I know in the frontend can change logo but I have tried that and no succes.Thanks.

Read more

Custom Template

Hi Jerome,I need creating custom template. I have website www.bluesat.cz and I want to implement your CMS.CUSTOM TEMPLATE without STYLESHEET (I don't want styleswitcher)1. Step - Creating new template from ...

Read more

CMS 1.4 - new category manager

Hi Jerome.I tested your new version CMS 1.4 and I found maybe small bug. New category manage not work in Firefox 42.0. Works perfect in Chrom 43.0.xxxxThanks

Read more

Can't figure out how to use it like in your demo

Hello bro, I have purchase your scripts and paid $180... I did it just for your CMS product. But sadly, I couldn't use it at all... it's not well documented. I can't figure out those admin options to make it ...

Read more

Slider display on custom page

Hi I would like to know how to manually invoke a slider on my page? I already created my slider and would like to call or get that slider to be displayed on my custom template

Read more

Invoke added slider on custom page template

Hi, How can I manually invoke the display of slider on my custom page? I already added a slider but how can I display it on the home page or on a specific location on the home page

Read more

Problem with installation

I have installed cms and its pushing me to https but i still have not setup an ssl when i login i cannot see all information What i can do please ?

Read more

Add button on other websites

Hi I would like to add chat feature on other domains / websites Is this possibile ?Thanks

Read more

Ticket import from inbox

Can i import tickets from inbox every 5 minutes ?Thanks

Read more

Regarding Contact Form

Hi,I want to know i have created a contact form at backend so how could i integrate the same at the frontend.ThanksGaurav

Read more

Megamenu support

Hi,I need help with menu system for cms. I wants to extend menu functionality in order to have mega menus created from the cms.May I know if there is some custom code available or anything you can help ...

Read more

Page editor

Hi, i have just installed CMS, all works good, when i try to edit a page the edittor doesnt get all the functios, all i get is the page coding, ckeditor doesnd load or is not exist, Couuld you help my out ...

Read more

I am very interested in your cms

Hi, how are youI am very interested in your cmscould you please create a plugin customer reviews testimonials and integrated into cmsthank you

Read more

CMS 2.3 Release date?

Hi J, when the CMS 2.3 will be ready? I am checking every day the progress of it, but it doesn't change. Any update will be appreciated. Thanks

Read more

CMS - Pagination

Hi Jerome,I have small question.How to works settings for paginator, Page Mid Range?I thinks, that pagination works this:Page Mid Range value = 1 and 2 (works as same 2 and 2 means 1 number left in paginator ...

Read more

CMS - sidebar in Plugins template

Hi Jerome,I want to find a solution for using sidebar.php in plugins template.For example:Now we have only one blogsidebar.php for plugin Blog. I think that is better use sidebar.php in plugin template e.g. ...

Read more

to create plugins for the integres on your cms

Hello,I am very interested, but before any questions.Have you planned to create plugins for the integres on your cms?Example like wordpressHave you planned to create templates?Do you have ready-made ...

Read more

CMS + Feedback

Hello,CMS + FeedbackI'm still interested in this cms.Before buying this cms, I would like to have a demo on the customization we have asked you, for feedback, adding the new page?It means to extract the data ...

Read more

Database Optimization, Backup and Restore

Hello,On the page: Database Optimization, Backup and RestoreMissing function?Empty the cacheExport to XML Backup DatabaseImport from XMLThank you

Read more

Dating and social

Hello,Would it be possible to create a new pluginDating and socialTo create a dating site with the cmsMakes an announcement to customers, you are going to have requests onThank you

Read more

Phrases that remains in English after translation

Hello,Chain that remains in English despite translation into French.Image attached http://img11.hostingpics.net/pics/427921912.pngHere how to add the image on the chat?Image attached ...

Read more

Compress HTML, CSS and JS files ?

Hello,Would it be possible to have a plugin to reduce the weight of HTML, CSS and JS filesCompatible with your software: CMS and HelpDesk, FeedbackThank you

Read more

support please cms

Me puede ayudar estoy trabajando en local, no puedo subir su script a producción en remoto si este no funciona correctamente, le pido por favor que me ayude y si no le ruego me devuelva mi dinero gracias. ...

Read more

After Install, can't access admin page

After install, click on admin and login then it goes to home page and can't access admin page. just redirects to homepage.

Read more

plugin bridge cms and other software

Hi happy new yearOne question: looks for a plugin that communicates with the cms and another site off cms?PossibleFor example: for members registered on toto.fr will have access with their account on ...

Read more

Contact form

Hello,How to add a link in the contact formNew field with a check box and optionI read it and accepted the terms of use It does not workThank you

Read more

Plugin forum

Hello,Do you plan to create a forum plugin?For the new version?Thank you

Read more

jump to a section in html5

Hi,The button on the slidercode removed, please use our code button to paste examples: It works, but small problemWhen you click on the button, it does not arrive at the section titleImage attachedIt happens ...

Read more

bootstrap iframe modal

Hello,Need help please?We added a button in Content Block 2We added a button in section is it correct?How to open a modal popup iframeremoved codeWe added a button in section is it correct?thank you very much

Read more

CMS Plugins

When i activate plugin on admin panel, when i acces it on frontend for example: https://hatrix.ml/blog i get error 404. But i installed plugin.

Read more

Plugins CMS

When activate plugin on admin panel, example blog, after visiting domain.com/blog, get error 404.

Read more

CMS installation guide

Hi Jérome,How are you ?I come to you to know if you can give me a pdf or link to have a documentation for the CMS Script to work correctlyI have see the script is verry good, i think if i have documentation i ...

Read more

link exchange plugin?

Hello,QuestionWhy not add a link exchange plugin?Thank you

Read more

Find a code to see who is logged in ?

Hi,A question, how to display the person's nickname? Which is connectedNext to the word Welcome,  For example Welcome, KingoodealThank you

Read more

Bug, On the content-section

Hello,Bug? sur la section-content  dans le footer, none is displayed apart from the text section that is displayedWhere does the problem come from ?Thank you

Read more

Bug with plugin Feedback-Owl ?

Hello,Since, some days the date is no longer posted on the comments?Bug with plugin Feedback-Owl image jointeThank you

Read more

portfolio

Hello,A question on my homepage, we have a portfolioHow to have an effect on photosUntil then everything is fine, it works, the text does not appear when the mouse passes on the image?I'm talking about the ...

Read more

Problem with the permalien

Hello,Problem with the permalien of the plugin blog with the plugin registerWhen you are on the blog and you click on register, the link does not ...

Read more
141 result(s) were found.