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

      CSS customization
      • aroobaarooj499

      4
      0
      Votes
      4
      Posts
      1562
      Views

      R

      You don't need to define new routes.

    • T

      Promotion: free shipping over $100?
      • trane294

      1
      0
      Votes
      1
      Posts
      614
      Views

      No one has replied

    • T

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

      3
      0
      Votes
      3
      Posts
      1254
      Views

      T

      Thank you!

    • K

      Onepage checkout in single flow.
      • karkiswapnil

      2
      0
      Votes
      2
      Posts
      1220
      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
      1195
      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
      842
      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
      1347
      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
      871
      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
      2349
      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
      879
      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
      837
      Views

      admin

      @ghermans We will update it by today.

    • ghermans

      Hacktoberfest
      • ghermans

      5
      0
      Votes
      5
      Posts
      1629
      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

    • D

      Mail Notification in order placement
      • dsharma

      2
      0
      Votes
      2
      Posts
      1023
      Views

      R

      Hi @dsharma

      When you place an order, first request goes to onepagecontroller's saveOrder method, from where we are calling order repository's create method in sales package , when order successfully created then we fired this event there with order data like -

      Event::fire('checkout.order.save.after', $order);

      then listing this event using above mentioned way and calling a function to send message of order place.

      Thanks

    • D

      Mail Notification in order placement
      • dsharma

      4
      0
      Votes
      4
      Posts
      1388
      Views

      R

      Hi @dsharma

      Please refer this one - https://forums.bagisto.com/topic/460/mail-notification-in-order-placement/2

      Thanks

    • S

      Datagrid Action Into Add Condition
      • Shambhu

      4
      0
      Votes
      4
      Posts
      2084
      Views

      R

      Hi @Shambhu

      Can add condition like this -

      $this->addColumn([ 'index' => 'status', 'label' => trans('admin::app.status'), 'type' => 'boolean', 'searchable' => true, 'sortable' => true, 'filterable' => true, 'wrapper' => function($value) { if ($value->status == 1) return '<a href="' . route('admin.customer.edit', $row->customer_id) . '">' . $row->customer_name . '</a>'; else return 'In Active'; } ]);

      You can add status condition here and can add route from here.

      Thanks

    • M

      Clear sales history
      • Mr.full

      4
      0
      Votes
      4
      Posts
      1435
      Views

      R

      Hi @Mr-full

      Can you explain more ?

      Thanks

    • S

      How to set email title?
      • sanjana singh

      2
      0
      Votes
      2
      Posts
      830
      Views

      P

      Hello,
      You have to change the subject translation from app.php file of the particular mail type like,

      ->subject(trans('shop::app.mail.order.cancel.subject'))

      1 - here you have to change the translation from the app.php for the shop::app.mail.order.cancel.subject of that particular mail type.

    • R

      How to set individual SESSION_LIFETIME for admin panel & customer panel?
      • RK REZA

      3
      0
      Votes
      3
      Posts
      1090
      Views

      R

      Thanks @ghermans
      But this will change for all. I want different session lifetime for different auth type.
      [Like, for admin SESSION_LIFETIME=20 & for customer SESSION_LIFETIME=10]

    • R

      CMS
      • rabol

      2
      0
      Votes
      2
      Posts
      816
      Views

      R

      Found it at the blog..

      Small note: when copying, make sure to modify as the ' (single quotes) does not come over as single quotes 🙂