I want to use Themeforest E-commerce Template design with bagisto
-
Sir i want to use themeforest e-commerce template with bagisto,How can i do it means i wants to complete replace velocity theme frontend and use my own with all functionality of velocity theme,How can i do it,What will be steps,How to show slider,Featured products,Advertisement,Category,Newsletter from admin panel to new template?
Kindly help me out
-
Hi @Mianarshan,
Well, it depends on your need? The thing is if you want to change the theme with minimal options like changing colors and all then you can refer to this link i.e. https://devdocs.bagisto.com/1.x/themes/create_theme.html.
If you completely want to change the full template then you need to create a package for that. You can refer to this link i.e. https://devdocs.bagisto.com/1.x/packages/create_package.html.
For e.g. if you check in the Bagisto, there are two themes one is default and the other one is velocity. As you see, velocity is a fully new theme that has taken reference from default. I suggest you to check the
Shop
andVelocity
package.So start with creating a package first. Then slowly take a reference from the
Shop
package. -
I want to comppletely change the package,I created package using that link but i can't add package provider in config/
app,kindly help me out -
@devansh-webkul Bro kindly help,I have to make it live on monday,Please help why admin is not receiving mails?
-
Did you add provider in
composer.json
autoload andconfig/app.php
? -
@devansh-webkul said in I want to use Themeforest E-commerce Template design with bagisto:
Did you add provider in
composer.json
autoload andconfig/app.php
?Also don't forget to run the following commands in your terminal:
composer dumpautoload php artisan config:cache php artisan route:cache
-
@Mianarshan said in I want to use Themeforest E-commerce Template design with bagisto:
Sir i want to use themeforest e-commerce template with bagisto,How can i do it means i wants to complete replace velocity theme frontend and use my own with all functionality of velocity theme,How can i do it,What will be steps,How to show slider,Featured products,Advertisement,Category,Newsletter from admin panel to new template?
Kindly help me outTo integrate a ThemeForest e-commerce template with a Bagisto and restoring would be the first thing to do if you want a new Velocity in the places of the default Velocity theme. To start the installation of your ThemeForest template, as well as making sure its architecture is compatible with Bagisto, and contains aspects of the layout such as CSS, JavaScript, and images, you will have to inspect it first. After that, you can take the frontend files from Velocity theme and load the new template's corresponding files (HTML, CSS, JS). In order to keep similar functionalities like sliders, products, advertisements, categories, and newsletters, you will have to combine Bagisto's admin panel system with the desired template. To be more precise, it is about the existing Bagisto's APIs or else it is necessary to make some custom requests to fetch data for example for the list of featured products, categories, or newsletters from the admin panel and then display those on your frontend. In some cases, template’s views (blade files) must be changed to properly call and display this dynamic content. Additionally, ensuring the new theme is capable of carrying out the necessary backend functions for Bagisto, e.g., cart, checkout, and user authentication, is a must. Thus, a developer might need to enhance the backend a little bit. Suppose you are not familiar with the customization of platforms based on Laravel like Bagisto. In that case, you will need an expert in Laravel and Bagisto specifically to update the platform according to your expectations.