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

      PayU CORS error while integrating PayU Money Bolt Kit
      • farhan-saifi

      6
      0
      Votes
      6
      Posts
      1611
      Views

      W

      bolt is now disabled in payu. you can use this version https://forums.bagisto.com/topic/1586/payu-cors-error-while-integrating-payu-money-bolt-kit

    • K

      Giving the customer a UUID - are there any plugins/packages that can do this? If not, how best to manually implement it?
      • KiwiNFLFan

      2
      0
      Votes
      2
      Posts
      1462
      Views

      devansh-webkul

      Hi @KiwiNFLFan,

      Never change the primary key, just try to add one more column and place your custom uuid there.

    • T

      Xdebug set up
      • Thanos

      2
      0
      Votes
      2
      Posts
      231
      Views

      devansh-webkul

      Hi @Thanos,

      You need to install the debug dependencies to properly configure this.

    • P

      Api to switch currency.
      • prof.jagpreet

      2
      0
      Votes
      2
      Posts
      343
      Views

      devansh-webkul

      Hi @prof-jagpreet,

      Currently, there is no such API, you need to make your own.

    • S

      online card payment
      • sanjana singh

      3
      0
      Votes
      3
      Posts
      803
      Views

      betvisionvn

      Thanks for this.

    • T

      Web Api to delete Customers Specific Address
      • tabish152

      2
      0
      Votes
      2
      Posts
      345
      Views

      devansh-webkul

      Hi @tabish152,

      Yes, you can delete it.You just need to pass the address id with DELETE method to this route,

      Route::delete('addresses/{id}', 'ResourceController@destroy')->defaults('_config', [ 'repository' => 'Webkul\Customer\Repositories\CustomerAddressRepository', 'resource' => 'Webkul\API\Http\Resources\Customer\CustomerAddress', 'authorization_required' => true ]);
    • J

      Bulkupload composer autoload issue
      • jignesh

      2
      0
      Votes
      2
      Posts
      435
      Views

      P

      Hello @jignesh ,

      These are just the deprecation notice, you can successfully proceed for the next steps. If you are getting any error then you can write us. Also, specify your bagisto and bulk-upload version.

      Thanks

    • A

      This topic is deleted!
      • Apillzonline

      1
      0
      Votes
      1
      Posts
      8
      Views

      No one has replied

    • A

      This topic is deleted!
      • Apillzonline

      1
      0
      Votes
      1
      Posts
      10
      Views

      No one has replied

    • A

      This topic is deleted!
      • Apillzonline

      1
      0
      Votes
      1
      Posts
      7
      Views

      No one has replied

    • I

      Login with fb and gmail
      • intrudo

      3
      0
      Votes
      3
      Posts
      356
      Views

      I

      Hi,

      Thanks for your reply. I hope that it will be finish soon 😄

    • Z

      Should I modify Velocity view or javascript code directly ?
      • zh1lu0

      2
      0
      Votes
      2
      Posts
      304
      Views

      devansh-webkul

      Hi @zh1lu0,

      It is always recommended that never done any changes in the the package folder but if you are familiar with Laravel codes and upgrade then you can feel free to do this.

      Take an example of the vendor folder, we never do any changes in the vendor folder instead we override this and publish our files.

      So I recommend you to publish all the Bagisto content in one shot and then customize your theme in the resources/ folder. Always take a backup of the resources/ folder.

    • L

      The promotion for the customer group is deactivated
      • LilD

      4
      0
      Votes
      4
      Posts
      725
      Views

      devansh-webkul

      Did you add any expiry dates?

      Because this is very strange behavior by your application.

    • U

      why when we change APP_URL inside the env the images for slider not appears??
      • userbagisto

      2
      0
      Votes
      2
      Posts
      1524
      Views

      devansh-webkul

      Hi @userbagisto,

      Image is shown on the basis of asset path. So APP_URL should be correct.

    • R

      Can we integrate Ship rocket shipping method with bagisto
      • Rohit

      3
      0
      Votes
      3
      Posts
      1315
      Views

      devansh-webkul

      Hi there,

      In recent new docs, we have updated some URLs and following conventions. So, some URL which are camel casing converted into kebab case, below is the latest URL,
      https://devdocs.bagisto.com/1.x/advanced/create-shipping-method.html

    • S

      adding a vue component using from a custom module
      • samparker

      2
      0
      Votes
      2
      Posts
      727
      Views

      devansh-webkul

      Hi @samparker,

      First, set up all your Vue dependencies in a custom module. Second, adjust your webpack in your custom module. Third, start developing your component. Fourth, once done compile your package. Fifth, publish your changes where you want. If you want to override the theme file then publish as per the theme path.
    • S

      How to listen Event on order confirmation?
      • selvaraj

      3
      0
      Votes
      3
      Posts
      615
      Views

      P

      Thanks for the answer! You helped solve the problem

    • A

      How to override ChannelTableSeeder?
      • AN-Varit

      4
      0
      Votes
      4
      Posts
      618
      Views

      devansh-webkul

      Every time when you have done any changes in the config, then run,
      php artisan optimize

      It can be easily done from the config as the default. But if you want like at the time of installation default then your approach is right.

    • T

      How to add hot category?
      • tluanga

      9
      0
      Votes
      9
      Posts
      1597
      Views

      devansh-webkul

      Then, in this case, you need to customize this as per your need.

    • A

      Disable Module
      • AN-Varit

      4
      0
      Votes
      4
      Posts
      646
      Views

      devansh-webkul

      Yes, it will cause an issue, that's why I told you to have the compatibility at your end. Because you are removing the default things.

      Suppose if other modules are using some methods of Velocity package then you need to take care of this and also update that method with your new modules.