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

      Change arabic number format.
      • rosisse

      2
      0
      Votes
      2
      Posts
      222
      Views

      devansh-webkul

      Hi @rosisse,

      If you check this file packages/Webkul/Core/src/Core.php. In this file we have used NumberFormatter class. You need to set en locale for each object.

      For example,
      $num = NumberFormatter('en', NumberFormatter::DECIMAL);

    • O

      help?
      • osaid

      2
      0
      Votes
      2
      Posts
      238
      Views

      V

      Hi @osaid
      you may follow the below steps to get rid of this issue

      open your project in Visual studio go to the .env file and add Database configuration correctly then run the below commands from the terminal inside the bagisto root directory php artisan bagisto:install

      let me notify here in case of any error found during executing these commands

    • N

      Subscription email does not work
      • neyazahmad

      4
      0
      Votes
      4
      Posts
      244
      Views

      V

      @neyazahmad said

      your Mail_host and mail_port is incorrect, please verify it with your email provider.

    • W

      How to fetch Upsell, Related products and Brands Attribute form API?
      • wyamout

      2
      0
      Votes
      2
      Posts
      324
      Views

      V

      @wyamout
      currently these API are not available so not mentioned in the doc.

    • N

      HIde unnecessary countries on checkout page and cart address
      • Nayan7030

      3
      0
      Votes
      3
      Posts
      503
      Views

      N

      @devansh-webkul, Thank you so much for your quick help.

    • T

      Delivery Charge.
      • tluanga

      4
      0
      Votes
      4
      Posts
      420
      Views

      V

      @Vaishali-Agarwal said in Delivery Charge.:

      https://store.webkul.com/laravel-ecommerce-table-rate-shipping.html

      Probably you need to create a custom package as currently we can't implement this on core project... so we have developed the Table Rate Shipping. you may review this
      https://store.webkul.com/laravel-ecommerce-table-rate-shipping.html

    • A

      What is functionality of Visible on Product View Page on Front-end
      • Ankit patel

      4
      0
      Votes
      4
      Posts
      437
      Views

      Mariesmith99

      <?php

      namespace Ced\HelloWorld\Setup;

      use Magento\Framework\Setup\ModuleContextInterface;

      use Magento\Framework\Setup\ModuleDataSetupInterface;

      use Magento\Framework\Setup\InstallDataInterface;

      use Magento\Eav\Setup\EavSetupFactory;

      class InstallData implements InstallDataInterface

      {

      private $eavSetupFactory;

      public function __construct(EavSetupFactory $eavSetupFactory) {

      $this->eavSetupFactory = $eavSetupFactory;

      }

      public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)

      {

      /**** Attribute names and there data*****/ /* [atr-Code, atr-group, atr-type, label, input, required,default] */ $eavSetup = $this->eavSetupFactory->create(['setup' => $setup]); $attributes = [ ['name' => 'custom_attribute', 'group' => 'Product Details', 'type' => 'text', 'label' => 'Custom Attribute', 'class' => 'validate-number', 'input' => 'text', 'is_used_in_grid' => 1, 'required' => true, 'sort_order' => 20], /*can duplicate the array for more attributes*/ ]; foreach ($attributes as $key => $value) { $eavSetup->addAttribute( \Magento\Catalog\Model\Product::ENTITY, $value['name'], /* Custom Attribute Code */ [ 'group' => $value['group'],/* Group name in which you want to display your custom attribute */[.](https://www.theleathermakers.com/arkham-knight-batman-red-hood-leather-jacket/) 'type' => $value['type'],/* Data type in which formate your value save in database*/ 'backend' => (isset($value['backend'])) ? $value['backend'] : '', 'frontend' => '', 'label' => $value['label'], /* lablel of your attribute*/ 'input' => $value['input'], 'frontend_class' => ((isset($value['class'])) ? $value['class'] : ''), 'global' => \Magento\Eav\Model\Entity\Attribute\ScopedAttributeInterface::SCOPE_GLOBAL, 'visible' => (isset($value['visible'])) ? $value['visible'] : true, 'required' => $value['required'], 'source' => (isset($value['source'])) ? $value['source'] : '', 'option' => (isset($value['option'])) ? $value['option'] : '', 'user_defined' => (isset($value['user_defined'])) ? $value['user_defined'] : false, 'sort_order' => 50, 'default' => (isset($value['default'])) ? $value['default'] : '', 'note' => (isset($value['note'])) ? $value['note'] : '', 'searchable' => true, 'filterable' => true, 'comparable' => true, 'visible_on_front' => false, 'used_in_product_listing' => true, 'unique' => false, 'is_used_in_grid' => (isset($value['is_used_in_grid'])) ? $value['is_used_in_grid'] : 0, ] ); }

      }
      }

    • O

      Bagisto-Velocity PWA
      • otheriz

      3
      0
      Votes
      3
      Posts
      235
      Views

      O

      @bhanu-webkul ,

      Great, i cannot wait to see it compatible with the latest version...
      Better to put the current compatible Version on the page so we can know if it's already supported or no?
      hope it's happening soon and you guys announced it..

      Thank You

    • S

      How to place Export button in custom module for export that table data in bagisto?
      • sanjay

      2
      0
      Votes
      2
      Posts
      308
      Views

      V

      Hi @sanjay
      If you would like to place an export button like you mention above so for that you have to create controller, page, route and etc. as per your requirement and for reference that how to do it you can check out existing export button files.

      $root_folder/packages/Webkul/Admin/src/Resources/views/sales/orders/index.blade.php $root_folder/packages/Webkul/Admin/src/Resources/views/export $root_folder/packages/Webkul/Admin/src/Http/Controllers/ExportController.php

      Thanks !

    • S

      Changes done in view of Velocity, but it's not reflecting in the browser.
      • SourabhAkash

      6
      0
      Votes
      6
      Posts
      648
      Views

      V

      @SourabhAkash
      Nice to hear your issue has been resolved 🙂

    • N

      Sometimes we got error while clicked on saved address in checkout page.
      • Nayan7030

      7
      0
      Votes
      7
      Posts
      659
      Views

      V

      @Nayan7030
      Kindly update your PHP version 7.2 then check again.

    • S

      Disable AJAX Caching Bagisto
      • suraz.neupane

      2
      0
      Votes
      2
      Posts
      187
      Views

      V

      @suraz-neupane
      solved https://forums.bagisto.com/topic/1760/minicart-not-rendering/13

    • T

      Payment Method Comments
      • tluanga

      4
      0
      Votes
      4
      Posts
      279
      Views

      devansh-webkul

      Hi @tluanga ,

      Sometimes in live server, composer require commands get automatically killed by the hosting provider due to out of memory. There is an alternative way you can do,

      Just add the require version in composer.json file and run composer install.

      "require": { ... "bagisto/bagisto-package-generator": "dev-master", ... }
    • T

      Billing Address
      • tluanga

      4
      0
      Votes
      4
      Posts
      266
      Views

      V

      @tluanga
      you can take reference from this https://forums.bagisto.com/topic/1752/hide-unnecessary-countries-on-checkout-page-and-cart-address/2

    • M

      How to display Seller's Most viewed products on seller dashboard.
      • Mayankpanchal

      6
      0
      Votes
      6
      Posts
      1060
      Views

      V

      @Mayankpanchal
      as i already explained you this feature is not available, so the table for the recent viewer is also not available.. you have to create it yourself.

    • N

      Rss Feed of Bagisto store products
      • Nadaemam

      2
      0
      Votes
      2
      Posts
      287
      Views

      V

      @Nadaemam
      Is there any example of RSS Feed ?

    • P

      Prices in storefront with taxes included
      • pask

      6
      0
      Votes
      6
      Posts
      685
      Views

      O

      @pask you're welcome,

      as you use bagisto for a while, you will realize how easy to customize the framework...
      For a Laravel based e-commerce i can say it's the best one so far..

      the best part of bagisto is it use the fullest potential of the used framework(Laravel, Vue, etc)
      so every laravel and other framework solution is worked here....

      That's also why bagisto have more updated content than other laravel based frameworks...
      because the other competitor make their own way(framework) above the laravel framework which is more buggy, unfinished, and confusing.. that makes them to have to "adjust" their own framework first before adding more content..which it lead to another buggy on the updated content.

    • M

      How to change the title from 'Demo Store' to 'my store'?
      • mrkwang7

      4
      1
      Votes
      4
      Posts
      392
      Views

      V

      @usmanarain
      may I know your issue ?

    • A

      Adding Stripe payment gateway into Bagisto, manually
      • astute

      2
      0
      Votes
      2
      Posts
      276
      Views

      V

      @astute
      you may follow the below link for implement stripe payment

      https://forums.bagisto.com/topic/348/how-to-include-script-and-css-file-in-payment-blade-php/11

      https://forums.bagisto.com/topic/1718/how-to-get-started-with-creation-of-new-payment-gateway/25

      https://forums.bagisto.com/topic/548/how-can-i-integrate-sendbox-stripe-payment-gateway-into-bagisto/2

      https://forums.bagisto.com/topic/349/how-can-implement-new-payment-method-stripe-and-remove-all-exist-method/6

      https://forums.bagisto.com/topic/97/where-to-add-api-credentials-for-paypal-and-stripe-app-public-private-keys-in-application

      https://forums.bagisto.com/topic/348/how-to-include-script-and-css-file-in-payment-blade-php/21

    • admin

      Override Route
      • admin

      4
      0
      Votes
      4
      Posts
      761
      Views

      D

      Hello @iateadonut

      For overriding purpose you can override the route.php.

      First you have to make the copy of the file in your package which you want to override then make changes in that file then go to your serviceprovider.php file and write this code in boot() method

      $this->publishes([__DIR__ . 'path-where-file-is-located-in-your-package' => 'path-of-file-which- you-want-to-overide' ]);

      After that you can run php artisan vendor:publish --force and select your package.

      This will override the existing file and from that you package controller index will work.

      Thank you. Hope this will work for you.

      Deepak Singh Gusian