Navigation

    Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. RK REZA
    3. Topics
    R
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by RK REZA

    • R

      Custom payment method not working in Bagisto 1.2
      Modules • • RK REZA  

      17
      0
      Votes
      17
      Posts
      60
      Views

      V

      @RK-REZA Great !
    • R

      Cloudways - Problem!!!
      Installing Bagisto • • RK REZA  

      5
      0
      Votes
      5
      Posts
      70
      Views

      R

      @Vaishali-Agarwal Solved. The problem was some folder in Storage directory was not there. Cloudways does not provide root directory access. I just create those missing folder and it works fine now.
    • R

      Product SKU
      General Discussion • • RK REZA  

      10
      0
      Votes
      10
      Posts
      130
      Views

      D

      @Vaishali-Agarwal Okay,Thank you!
    • R

      Error when trying to add category!!!
      Bug Report • • RK REZA  

      3
      0
      Votes
      3
      Posts
      61
      Views

      R

      Solved !!!
    • R

      How to implement TinyMCE image upload option in Bagisto ?
      General Discussion • • RK REZA  

      3
      0
      Votes
      3
      Posts
      79
      Views

      V

      Hi @RK-REZA if you want to upload a local storage image or an image uploaded in a server, you can simply pass the URL of image in source code here; https://prnt.sc/relweh. Or if you want to directly upload an image just by clicking on single icon, you can take a reference from the below links; https://www.codeinhouse.com/install-tinymce-laravel-and-responsive-file-manager/ https://medium.com/@petehouston/easy-way-to-upload-image-to-tinymce-in-laravel-f34da8cab78c
    • R

      How to cancel a order after invoice generation?
      General Discussion • • RK REZA  

      1
      0
      Votes
      1
      Posts
      47
      Views

      No one has replied

    • R

      How to set incremental number instead of table's primary id in DataGrid?
      Knowledge Base • • RK REZA  

      4
      0
      Votes
      4
      Posts
      71
      Views

      R

      Hello @RK-REZA Override index file of that view, create a separate data grid in your package, use incremental number in that data grid instead of table's primary id and call this data grid to your override view file. Thanks
    • R

      Previously selected category not showing in product edit page
      Bug Report • • RK REZA  

      4
      0
      Votes
      4
      Posts
      136
      Views

      J

      @RK-REZA https://github.com/bagisto/bagisto/issues/1977
    • R

      Anyone?
      General Discussion • • RK REZA  

      3
      0
      Votes
      3
      Posts
      93
      Views

      R

      Thanks. I have done it.
    • R

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

      3
      0
      Votes
      3
      Posts
      81
      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

      How to work with dynamic dropdown?
      Modules • • RK REZA  

      2
      0
      Votes
      2
      Posts
      94
      Views

      R

      Hi @RK-REZA You can create a component for it, each value will be updated according to value selected. This article will be help you - https://www.pluralsight.com/guides/react-communicating-between-components Thanks
    • R

      How to set custom image cache in extended module?
      Modules • • RK REZA  

      2
      0
      Votes
      2
      Posts
      125
      Views

      R

      Hi @RK-REZA We will soon implement configuration for it. Thanks
    • R

      What is the best way to remove Billing Details from checkout page?
      Modules • • RK REZA  

      2
      0
      Votes
      2
      Posts
      131
      Views

      R

      Hi @RK-REZA First of all, you need to override some of our checkout pages like - onepage.blade.php, customer-info.blade.php and review.blade.php. When you see onepage.blade.php, will get below line - use_for_shipping: true, turn it to false on your override view file. Now, you need to remove billing section from rest of two files. The above things are remove it from view, now it comes on functionality level. here, you need to create your controller which will save order address of customer so for it, create a same name route for address but it will call your package controller for address save. Now you need to remove validation as well so create a new address validation file according to your need and it will be done. The above mentioned procedure will be done on separate package, don't do in core one. To not show billing in admin section, you can override admin view also. Thanks
    • R

      State code showing instead of State Name in customer/address page
      Bug Report • • RK REZA  

      2
      0
      Votes
      2
      Posts
      63
      Views

      R

      Hi @RK-REZA We have also created findStateByCountryCode function also in same file, pass your country and state code in this function like core()->findStateByCountryCode($address->country, $address->state). You will get CoutryState Model data (https://prnt.sc/peqr99 ) and print's its default name, you will get state name. Thanks
    • R

      The proxy Itec\Sales\Models\InvoiceItemProxy has a non-existent contract class: `Itec\Sales\Contracts\InvoiceItem`
      Modules • • RK REZA  

      3
      0
      Votes
      3
      Posts
      96
      Views

      R

      Solved thanks
    • R

      Pricing problem - Any suggestion?
      Modules • • RK REZA  

      2
      0
      Votes
      2
      Posts
      87
      Views

      R

      Hi @RK-REZA This feature in not in our product but you can customise it or can request a feature. Thanks
    • R

      How can I remove shipping from checkout page?
      Modules • • RK REZA  

      5
      0
      Votes
      5
      Posts
      335
      Views

      P

      Hello RK REZA, Clone the latest bagisto from github (https://github.com/bagisto/bagisto), the issue had been resolved. And, as stated in above link, the shipping methods is necessary for physical products. But, In future release, we will add new product type 'Virtual' for which shipping methods will be removed.
    • R

      override product model ERROR !!!
      Modules • • RK REZA  

      5
      0
      Votes
      5
      Posts
      97
      Views

      R

      Hi @RK-REZA If you have added any new type then you need to do this otherwise not. Thanks
    • R

      How to add toolbar & layered navigation in search result page?
      Modules • • RK REZA  

      2
      0
      Votes
      2
      Posts
      388
      Views

      R

      Hi @RK-REZA First of all, override search result page, then add this as we do for category pages & call your repository or controller method for result and filter it according to search value. Thanks
    • R

      Create In Product Flat Table | in Add Attribute!
      General Discussion • • RK REZA  

      4
      0
      Votes
      4
      Posts
      184
      Views

      R

      Hi @RK-REZA Now Admin can decide how to use it. Thanks