Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Recent
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • D

      Footer of Admin Panel
      General Discussion • • dipakthakur_13

      2
      0
      Votes
      2
      Posts
      433
      Views

      ghermans

      @dipakthakur_13

      You can change this in the following file packages/Webkul/Admin/src/Resources/views/components/layouts/index.blade.php

      There you will find the following code

      <!-- Powered By --> <div class="mt-auto"> <div class="border-t bg-white py-2 text-center text-sm dark:border-gray-800 dark:bg-gray-900 dark:text-white"> @lang('admin::app.components.layouts.powered-by.description', [ 'bagisto' => '<a class="text-blue-600 hover:underline dark:text-darkBlue" href="https://bagisto.com/en/">Bagisto</a>', 'webkul' => '<a class="text-blue-600 hover:underline dark:text-darkBlue" href="https://webkul.com/">Webkul</a>', ]) </div> </div>
    • M

      Configurable Product
      Knowledge Base • • moreiraz

      2
      0
      Votes
      2
      Posts
      364
      Views

      Rishabh-Webkul

      Hello @moreiraz

      Hello,

      Currently, this functionality is not available by default. By default, a dropdown is shown on the product detail page where you can select the color as per your choice under a single parent product.

      Kindly refer to the image in the link below for clarification:

      Link:
      https://docs.bagisto.com/2.3.0/products/configurable.html

      If you would like to implement your specific functionality, it would fall under customization and will be treated as a paid service.

      You can raise your customization request through the following link:

      Link:

      https://webkul.uvdesk.com/en/

      Regards
      Team Bagisto

    • N

      stuck on "Step: Create agent credentials..."
      Installing Bagisto • • Namit

      2
      0
      Votes
      2
      Posts
      511
      Views

      Rishabh-Webkul

      Hello @Namit

      Regarding your query about SAAS installation, you need to create a ticket for that.

      Link: https://webkul.uvdesk.com/en/customer/create-ticket/

      As of now, we only provide support for the default Bagisto issues on the forums.

      Regards

    • D

      custom theme
      General Discussion • • Dark General

      6
      0
      Votes
      6
      Posts
      1070
      Views

      D

      @ghermans infact the header and the footer dont change

    • D

      Error in installation
      Installing Bagisto • • DavidSlash

      2
      0
      Votes
      2
      Posts
      471
      Views

      Rishabh-Webkul

      Hello @DavidSlash

      Kindly follow the official DevDocs of Bagisto regarding the installation.

      This will help to resolve your query.

      https://devdocs.bagisto.com/2.3/introduction/installation.html

      Regards
      Team Bagisto

    • K

      BadMethodCallException: Call to undefined method Webkul\Product\Models\Product::setSearchEngine()
      Bug Report • • Kinjal

      3
      0
      Votes
      3
      Posts
      569
      Views

      K

      Hello Rishabh,

      Thanks for your response.

      I have reinstalled the latest version of Bagisto along with the REST API package, and the issue is now resolved.

    • N

      Playwright Tests Failing Due to Multiple Targets
      Bug Report • • neal.chambers

      2
      0
      Votes
      2
      Posts
      428
      Views

      Rishabh-Webkul

      Hello @neal-chambers

      Once it's fixed, the PR will be available on the GitHub repo.

      Regards
      Team Bagisto

    • N

      Bagisto Multi channel and multidomains Nginx configuration
      Installing Bagisto • • Nicola_cascella

      2
      0
      Votes
      2
      Posts
      428
      Views

      Rishabh-Webkul

      Hello @Nicola_cascella

      Kindly let me know the bagisto version which you are using ?

      Regards
      Team Bagisto

    • C

      Social Google Login redirects to customer login screen after Google authentication
      Bug Report • • CaribGuide

      2
      0
      Votes
      2
      Posts
      319
      Views

      Rishabh-Webkul

      Hello @CaribGuide

      Kindly let me know your bagisto version because this function is updated now with the latest code.

      public function redirectToProvider($provider)
      {
      try {
      return Socialite::driver($provider)->redirect('shop.customers.account.profile.index');
      } catch (\Exception $e) {
      session()->flash('error', $e->getMessage());
      return redirect()->route('shop.customer.session.index');
      }
      }

      GitHub Link:

      https://github.com/bagisto/bagisto/blob/v2.3.0/packages/Webkul/SocialLogin/src/Http/Controllers/LoginController.php

      Regards
      Team Bagisto

    • A

      Bagisto 2.2.4 | Homepage not working
      Installing Bagisto • • alex32

      1
      0
      Votes
      1
      Posts
      259
      Views

      No one has replied

    • A

      Custom Payment success() method error in Bagisto 2.3 – haveStockableItems() null
      General Discussion • • arunchahar

      2
      0
      Votes
      2
      Posts
      398
      Views

      A

      and here the redirect method if it help you to understand it better:

      public function redirect() { $cart = Cart::getCart(); $billingAddress = $cart->billing_address; $MERCHANT_KEY = core()->getConfigData('sales.payment_methods.payu.payu_merchant_key'); $SALT = core()->getConfigData('sales.payment_methods.payu.salt_key'); if (core()->getConfigData('sales.payment_methods.payu.payu-website') == "Sandbox") : $PAYU_BASE_URL = "https://test.payu.in"; // For Sandbox Mode else : $PAYU_BASE_URL = "https://secure.payu.in"; // For Live Mode endif; $shipping_rate = $cart->selected_shipping_rate ? $cart->selected_shipping_rate->price : 0; // shipping rate $discount_amount = $cart->discount_amount; // discount amount $total_amount = ($cart->sub_total + $cart->tax_total + $shipping_rate) - $discount_amount; // total amount $posted = array( "key" => $MERCHANT_KEY, "txnid" => $cart->id . '_' . now()->format('YmdHis'), "amount" => $total_amount, "firstname" => $billingAddress->name, "email" => $billingAddress->email, "phone" => $billingAddress->phone, "surl" => route('payu.success'), "furl" => route('payu.failure'), "curl" => "cancel", "hash" => '', "productinfo" => 'Bagisto Order no ' . $cart->id, 'udf1' => '', 'udf2' => '', 'udf3' => '', 'udf4' => '', 'udf5' => '', 'salt' => $SALT ); /*** hash key generate */ $hash = $this->getHashKey($posted); $action = $PAYU_BASE_URL . '/_payment'; return view('payu::payu-redirect')->with(compact('MERCHANT_KEY', 'SALT', 'action', 'posted', 'hash')); }
    • D

      bagisto 2.3 and contribution guidline
      General Discussion • • ducanh

      2
      0
      Votes
      2
      Posts
      386
      Views

      Rishabh-Webkul

      Hello @ducanh

      Follow the below steps for your query.

      Add the Bagisto upstream remote (if not already added): git remote add upstream https://github.com/bagisto/bagisto.git Fetch all branches from the upstream: git fetch upstream Checkout the 2.3 branch from upstream: git checkout 2.3 Push the changes to your fork or you can manually update it from github

      Regards
      Team Bagisto

    • D

      Local Enviroment so slow :(((
      General Discussion • • ducanh

      2
      0
      Votes
      2
      Posts
      366
      Views

      Rishabh-Webkul

      Hello @ducanh

      Kindly check this

      Server: Apache 2 or NGINX
      RAM: 4GB or higher
      Node: 23.10.0 LTS or higher
      PHP: 8.2 or higher
      Composer: 2.5 or higher

      https://devdocs.bagisto.com/2.3/introduction/requirements.html#server-configuration

      Regards
      Team Bagisto

    • A

      Issue with Installing bagisto-delivery-time-slot in Bagisto 2.3
      General Discussion • • arunchahar

      2
      0
      Votes
      2
      Posts
      395
      Views

      Rishabh-Webkul

      Hello @arunchahar

      Its clearly mentioned in the README.md file that it compatible with Bagisto v2.0

      Kindly try to install this extension with v2.0

      v2.0.png

      Regards
      Team Bagisto

    • N

      Creating a token for use in next.js
      General Discussion • • negarahmady

      1
      0
      Votes
      1
      Posts
      187
      Views

      No one has replied

    • A

      error custom template when migrate version 2.3
      General Discussion • • alexVillalobos

      3
      0
      Votes
      3
      Posts
      512
      Views

      Rishabh-Webkul

      Hello @alexVillalobos

      We have our official blog to migrate from older version to newer versions of Bagisto.

      https://bagisto.com/en/how-to-migrate-bagisto-from-version-1-5-0-to-bagisto-2-0/

      Regards
      Team Bagisto

    • N

      Bagisto redis cache
      Bug Report • • Nicola_cascella

      2
      0
      Votes
      2
      Posts
      437
      Views

      Rishabh-Webkul

      Hello @Nicola_cascella

      Can you provide us with the screenshot or some reference video so that it will us to easily identify and resolve your query.

      Regards
      Team Bagisto

    • B

      Bulk import product with newly created attributes?
      General Discussion • • bhagwan00

      2
      0
      Votes
      2
      Posts
      376
      Views

      Rishabh-Webkul

      Hello @bhagwan00

      Bulk Import for newely created attributes only works with data type - text also you can download a sample file to check the CSV file structure, while importing as shown in the image below.

      download-sample.png

      Regards
      Team Bagisto

    • A

      Will My Custom HTML & CSS Changes Remain After Updating to 2.3?
      General Discussion • • arunchahar

      2
      0
      Votes
      2
      Posts
      375
      Views

      Rishabh-Webkul

      Hello @arunchahar,

      For this, you must create a separate package and override the files in which you have made custom changes.

      If you update without doing this, your upgrade may cause errors and prevent you from updating to the latest version.

      https://bagisto.com/en/how-to-override-view-files-in-bagisto/

      Regards
      Team Bagisto

    • N

      Create custom page
      General Discussion • • Neilm

      4
      0
      Votes
      4
      Posts
      673
      Views

      ghermans

      @Neilm

      Try to add this in your blade file

      <x-shop::layouts> <x-slot:title> Welcome </x-slot> <div class="container mt-8 px-[60px] max-lg:px-8"> <h1>Welcome to My Custom Page</h1> </div> </x-shop::layouts>