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
    • L

      how to connect bagisto with payement gateway?
      • leni

      3
      0
      Votes
      3
      Posts
      390
      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
      257
      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
      467
      Views

      G

      @rahul thanks i will look into this

    • L

      Adding new views
      • latifiyll

      2
      0
      Votes
      2
      Posts
      251
      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
      220
      Views

      R

      Hi @dsharma

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

      Thanks

    • L

      CSS changes
      • latifiyll

      4
      0
      Votes
      4
      Posts
      507
      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
      731
      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
      440
      Views

      R

      You don't need to define new routes.

    • T

      Promotion: free shipping over $100?
      • trane294

      1
      0
      Votes
      1
      Posts
      175
      Views

      No one has replied

    • T

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

      3
      0
      Votes
      3
      Posts
      410
      Views

      T

      Thank you!

    • K

      Onepage checkout in single flow.
      • karkiswapnil

      2
      0
      Votes
      2
      Posts
      474
      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
      249
      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
      242
      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
      562
      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
      273
      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

    • H

      Error "Trying to get property 'role' of non-object"?
      • hChamran

      6
      0
      Votes
      6
      Posts
      839
      Views

      R

      Hi @darkuser123

      How did you added permission, can you tell us please ?

      Thanks

    • T

      API: how to get parent url_key?
      • trane294

      2
      0
      Votes
      2
      Posts
      201
      Views

      R

      Hi @trane294

      You need to create you method for this where you need to return url_key of parent configurable item.

      Thanks

    • ghermans

      Roadmap out-of-date
      • ghermans

      2
      0
      Votes
      2
      Posts
      252
      Views

      admin

      @ghermans We will update it by today.

    • ghermans

      Hacktoberfest
      • ghermans

      5
      0
      Votes
      5
      Posts
      467
      Views

      admin

      @ghermans Finally we are also going to organize our first hacktoberfest edition on 19th Oct. Check this our for more details: https://bit.ly/2AT0u45

    • D

      This topic is deleted!
      • dsharma

      1
      0
      Votes
      1
      Posts
      10
      Views

      No one has replied