Premium WordPress Themes, Templates & Plugins › Support › CodeIgniter › Grocery CRUD › Grocery CRUD help
Tagged: bootstrap, Codeigniter, grocery crud, meterialize
- This topic has 3 replies, 2 voices, and was last updated 6 years, 11 months ago by ThemeofWP.
- AuthorPosts
-
- January 27, 2018 at 9:18 am #9109ThemeofWPKeymaster
- January 26, 2018 at 9:16 pm #9105zumerParticipant
Hi, I just installed your crud platform. However, the theme is not like the one it should look like. I have checked the css file, they seemd to be loading properly.
Note: all functionalities seems to be ok. and I have installed it to subdirectory.
thanks in advance
- January 26, 2018 at 9:22 pm #9106zumerParticipant
Just have discovered that theme for those part loads properly: products,customers, orders, films, multigrids. However, for the rest it doesnt.
- January 27, 2018 at 9:43 am #9111ThemeofWPKeymaster
Hey there you need to use sample code :
public function employees_management()
{
$this->config->load(‘grocery_crud’);
$this->config->set_item(‘grocery_crud_dialog_forms’,true);
$this->config->set_item(‘grocery_crud_dialog_color’,’unique-color’);
$this->config->set_item(‘grocery_crud_dialog_text_color’,’white’);$crud = new grocery_CRUD();
$crud->set_theme(‘mdb’); // magic code
$crud->set_table(’employees’)
->set_subject(‘Employee’)
->columns(’employeeNumber’,’firstName’,’lastName’,’email’,’officeCode’,’jobTitle’)
->set_relation(‘officeCode’,’offices’,’city’);$crud->display_as(’email’,’E-Mail’)
->display_as(’employeeNumber’,’ID’)
->display_as(‘firstName’,’Name’)
->display_as(‘lastName’,’Last Name’);$crud->required_fields(‘firstName’,’lastName’);
$crud->add_fields(‘firstName’,’lastName’,’email’,’jobTitle’, ‘officeCode’);
$crud->unset_bootstrap();
$output = $crud->render();
$this->_example_output($output);
}and implement in to your Grocery CRUD. Also if you can sent your platform info such as FTP info, we can help better to you. here is the our contact form https://themeofwp.com/contact/
Thanks
Kevin J.
-
- AuthorPosts
- You must be logged in to reply to this topic.