Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. General Discussion
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • Most Views
    • V

      how to create new migration table in bagisto
      • vinay2430

      3
      0
      Votes
      3
      Posts
      866
      Views

      ghermans

      Create your migration file as you always do in laravel php artisan make:migration create_my_table inside the /src folder from your package create a new folder Database. Go to the Database folder and create a new folder Migrations. Copy your generated migration file to packages/My/Package/src/Database Open your package service provider and add your migrations folder to the boot method class MyPackageServiceProvider extends ServiceProvider { /** * Perform post-registration booting of services.. * * @return void */ public function boot() { $this->loadMigrationsFrom(__DIR__.'/../Database/Migrations'); }
    • R

      How to Change the Bliss logo in the top left
      • randy_johnson

      6
      0
      Votes
      6
      Posts
      662
      Views

      R

      Hi @leni

      Please run following commands -

      php artisan view:clear
      php artisan cache:clear
      composer dump-autoload

      & follow the given article - https://forums.bagisto.com/topic/188/broken-image-logo-in-bagisto-with-causes-and-solutions

      Thanks

    • T

      Price range instead of "As low as" message?
      • trane294

      2
      0
      Votes
      2
      Posts
      119
      Views

      R

      Hi @trane294

      Right now this option not available but if you want then you can customise it.

      Thanks

    • L

      UI css
      • latifiyll

      2
      0
      Votes
      2
      Posts
      150
      Views

      ghermans

      packages/Webkul/package-name/Resources/assets/scss

    • A

      JWT token based Authentication
      • aditya banerjee

      2
      0
      Votes
      2
      Posts
      464
      Views

      R

      Hi @aditya-banerjee

      Please follow this link - https://forums.bagisto.com/topic/149/i-need-to-deliver-the-api-token-from-the-json-response-not-the-header

      Thanks

    • L

      how to connect bagisto with payement gateway?
      • leni

      3
      0
      Votes
      3
      Posts
      203
      Views

      R

      Hi @leni

      Follow the above link to integrate payment gateway in your system & write here if you face any difficulty to implement it.

      Thanks

    • D

      Getting issue in progress bar
      • dsharma

      2
      0
      Votes
      2
      Posts
      152
      Views

      R

      Hi @dsharma

      Kindly create ticket here - https://bagisto.uvdesk.com/en/customer/create-ticket/

      Thanks

    • G

      Social Login
      • gayanpriyankara

      3
      0
      Votes
      3
      Posts
      361
      Views

      G

      @rahul thanks i will look into this

    • L

      Adding new views
      • latifiyll

      2
      0
      Votes
      2
      Posts
      162
      Views

      R

      Hi @latifiyll

      Please follow below link -

      https://devdocs.bagisto.com/create_package.html

      https://bagisto.com/en/step-by-step-guide-for-bagisto-module-development/

      Thanks

    • D

      got an issue
      • dsharma

      2
      0
      Votes
      2
      Posts
      112
      Views

      R

      Hi @dsharma

      Kindly take pull from - https://github.com/bagisto/bagisto

      Thanks

    • L

      CSS changes
      • latifiyll

      4
      0
      Votes
      4
      Posts
      241
      Views

      R

      Hi @latifiyll

      There are two way of doing design changes in bagisto.
      First way is - Create a theme for front.
      go through with this link - https://bagisto.com/en/create-custom-theme-in-bagisto/ and https://devdocs.bagisto.com/create_theme.html.

      Second way is to override all view files and use your css.
      Please follow this one - https://forums.bagisto.com/topic/221/how-to-override-view-file-in-bagisto and https://forums.bagisto.com/topic/111/how-to-override-the-admin-layout

      Thanks

    • S

      Show Variation Images on Product Page
      • SiCo

      2
      1
      Votes
      2
      Posts
      566
      Views

      R

      Hi @SiCo

      As you can see, we have a created ProductImage Helper to get product images in Product package.
      In this helper there is a method called getGalleryImages which is returning images of product.

      To show all variant images on product view page, first off all you need to override 'gallery.blade.php'.
      Then create a helper function in your package and called your helper using your overrided view file.

      Paste given code in your helpers getGalleryImages method.

      /** * Retrieve collection of gallery images * * @param Product $product * @return array */ public function getGalleryImages($product) { if (! $product) return []; $images = []; if ($product->product->type == 'configurable') { foreach ($product->variants as $variant) { foreach ($variant->images as $image) { if (! Storage::has($image->path)) continue; $images[] = [ 'small_image_url' => url('cache/small/' . $image->path), 'medium_image_url' => url('cache/medium/' . $image->path), 'large_image_url' => url('cache/large/' . $image->path), 'original_image_url' => url('cache/original/' . $image->path), ]; } } } foreach ($product->images as $image) { if (! Storage::has($image->path)) continue; $images[] = [ 'small_image_url' => url('cache/small/' . $image->path), 'medium_image_url' => url('cache/medium/' . $image->path), 'large_image_url' => url('cache/large/' . $image->path), 'original_image_url' => url('cache/original/' . $image->path), ]; } if (! $product->parent_id && ! count($images)) { $images[] = [ 'small_image_url' => asset('vendor/webkul/ui/assets/images/product/small-product-placeholder.png'), 'medium_image_url' => asset('vendor/webkul/ui/assets/images/product/meduim-product-placeholder.png'), 'large_image_url' => asset('vendor/webkul/ui/assets/images/product/large-product-placeholder.png'), 'original_image_url' => asset('vendor/webkul/ui/assets/images/product/large-product-placeholder.png') ]; } return $images; }

      Follow this link to override view file - https://forums.bagisto.com/topic/221/how-to-override-view-file-in-bagisto

      Thanks

    • A

      CSS customization
      • aroobaarooj499

      4
      0
      Votes
      4
      Posts
      232
      Views

      R

      You don't need to define new routes.

    • T

      Promotion: free shipping over $100?
      • trane294

      1
      0
      Votes
      1
      Posts
      101
      Views

      No one has replied

    • T

      API: how to get categories with children count and children ID's
      • trane294

      3
      0
      Votes
      3
      Posts
      277
      Views

      T

      Thank you!

    • K

      Onepage checkout in single flow.
      • karkiswapnil

      2
      0
      Votes
      2
      Posts
      354
      Views

      R

      Hi @karkiswapnil

      Basically you want to change complete chceckout process so you can try in this way-

      According to your requirement, you need to customise it completely.
      As you want all Address, Shipping and Payment method are at first page. If you check our process then you will find that we are rendering each view after completing one process and like this.
      So you need to render all view together.
      In our these form, we have used form-scope so when user hits continue after filling all his above details then according to form request different function will be called as we are calling step by step.
      You need to call them together, After that summary page will display.

      Please try in this way or if you have better way than you can try using that that but we can sure you that if you stuck at any stage we will definitely help you.

      Thanks

    • A

      customize
      • Ashish

      4
      0
      Votes
      4
      Posts
      110
      Views

      R

      Hi @Ashish

      Can you tell me, where did you find difficulty to implement this so that we can give you solution related to problem.

      Thanks

    • V

      how to import bulk product for simple ecommerce
      • Vivek

      2
      0
      Votes
      2
      Posts
      136
      Views

      R

      Hi @Vivek

      Right Now this feature is not available but we will soon implement this.

      Thanks

    • R

      How to change the title of the home page
      • Ramos444

      2
      0
      Votes
      2
      Posts
      329
      Views

      R

      Hi @Ramos444

      When you edit the channels in its SEO section meta title field will replace Bagisto - Home when you provide any value inside it.

      Thanks

    • R

      Include blade file in description field
      • Ramos444

      2
      0
      Votes
      2
      Posts
      176
      Views

      R

      Hi @Ramos444

      You need to use render function to show this data of data, so first of all override this view file & use this one to show it.

      {!! DbView::make($category)->field('description')->render() !!}

      Please see this one to override view file - https://forums.bagisto.com/topic/221/how-to-override-view-file-in-bagisto

      Thanks