Category : FAQ

  You need to goto backend of your Crowdfunding Platform Backend > Projects >Running Find Project you need to make Special / Staff Pick and Click on Yes under Special also System usages caching to enhance performance. Sometime when changes to the backend are made may not be visible, Reason is caching. To clear cache ..

Read more

Understanding How Controller Works!   index.php is main router file When parameters are passed to this file , It gets Controller and Function for it. For example index.php?ctl=user&act=register here controller is User and action(function) is register Now to edit this function register under controller You would need to goto following location app/Lib/modules/userModule.class.php You can find ..

Read more

Template is stored at /app/Tpl/cv4/ Css is at /app/Tpl/cv4/css/ You can check /app/Tpl/cv4/inc/header.html to change css files being loaded If you examine code $this->_var[‘pagecss’][] = $this->_var[‘TMPL_REAL’].”/css/*****/****.css”; $this->_var[‘pagecss’][] = $this->_var[‘TMPL_REAL’].”/css/*****/*****.css”; $this->_var[‘pagecss’][] = $this->_var[‘TMPL_REAL’].”/css/******/******.css”; $this->_var[‘pagecss’][] = $this->_var[‘TMPL_REAL’].”/css/common_css/style.css”; so sidewide css is /app/Tpl/cv4/css/common_css..

Read more