• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Register
  • Login
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
  • H

    This topic is deleted!
    11 Sept 2024, 05:52 • hiten_jadav 11 Sept 2024, 05:52

    1
    0
    Votes
    1
    Posts
    2
    Views

    No one has replied

  • H

    Footer
    11 Sept 2024, 09:08 • horlaworld 11 Sept 2024, 10:27

    2
    0
    Votes
    2
    Posts
    298
    Views

    Rishabh-Webkul 11 Sept 2024, 10:27

    Hello @horlaworld

    Can you provide us with some screenshots regarding the same?

    Because after removing the newsletter only the footer background color will be visible there.

    Thanks & Regards

  • H

    change Image resolution
    11 Sept 2024, 05:38 • hiten_jadav 11 Sept 2024, 13:24

    7
    0
    Votes
    7
    Posts
    1.0k
    Views

    A 11 Sept 2024, 13:24

    @mayur0418

    Yes, you can set your resolution as needed. After making changes, you will need to clear the cache using the following command:

    php artisan optimize:clear
  • H

    how to change a validated message
    12 Sept 2024, 10:11 • hiten_jadav 12 Sept 2024, 12:51

    4
    0
    Votes
    4
    Posts
    610
    Views

    A 12 Sept 2024, 12:51

    @mayur0418 said in how to change a validated message:

    But where can I put No other similar validate message wasn't found?

    You can put your key inside the sign-up array, which we have already shared in the screenshot by @Rishabh-Webkul.

    Note: We recommend adding a new key instead of using an existing one. This ensures that the future changes to the key won't affect other areas where the original key is used.

  • A

    Vuejs Components not working in custom theme
    5 Sept 2024, 05:06 • avijit.ghosh 12 Sept 2024, 12:59

    2
    0
    Votes
    2
    Posts
    271
    Views

    A 12 Sept 2024, 12:59

    Hello @avijit-ghosh ,

    When creating a new theme, ensure you properly configure Vite and correctly set the paths for CSS, JS, and views in the Vite configuration file.

    You can refer to this for guidance:
    https://bagisto.com/en/how-to-configure-vite-in-bagisto-separate-package/

  • P

    404 on products/${id} request
    27 Aug 2024, 17:11 • Peppek1993 12 Sept 2024, 13:06

    2
    0
    Votes
    2
    Posts
    317
    Views

    A 12 Sept 2024, 13:06

    Hello @Peppek1993,

    You can view the error directly in your browser by enabling the debug bar. To do this, open the .env file and set APP_DEBUG to true. This will display the error details for you.

  • M

    bagisto mobile not working and giving error on flutter run
    14 Sept 2024, 15:22 • marwan.dalaty 16 Sept 2024, 06:58

    2
    0
    Votes
    2
    Posts
    659
    Views

    Rishabh-Webkul 16 Sept 2024, 06:58

    Hello @marwan-dalaty

    Check Your Imports: Ensure you're importing CarouselController only from the carousel_slider package and not from Flutter's material library. The carousel_slider package provides a CarouselController for controlling carousels in your app, and you should not use the one from flutter/src/material/carousel.dart.
    Remove Unnecessary Imports: Make sure you only import the CarouselController from the carousel_sliderpackage. You can do this by checking your import statements and removing the conflicting import.

    Ensure only this import is present

    import 'package:carousel_slider/carousel_slider.dart';

    Remove or comment out the conflicting import

    import 'package:flutter/src/material/carousel.dart';

    Check for Duplicate Packages: Sometimes, this issue can arise if you have multiple versions of the same package or a package that has conflicting imports. Ensure your pubspec.yaml file lists only one version of carousel_slider (carousel_slider: ^4.0.0) and there are no unnecessary packages that might be importing CarouselController from conflicting sources.

    Thanks & Regards

  • M

    outofstock doesnt show on items
    11 Sept 2024, 17:40 • marwan.dalaty 16 Sept 2024, 09:59

    4
    0
    Votes
    4
    Posts
    655
    Views

    A 16 Sept 2024, 09:59

    Hello @marwan-dalaty ,

    If you are making changes inside the shop package -> view.blade.php file, you can add your Tailwind CSS directly to the HTML.

    After adding the CSS, you will need to compile it and create a build file. To compile the CSS, you will need to follow a few steps.
    Step 1: Install npm inside the shop package using the following command:

    npm install

    Step 2: Run the following command to create the build.

    npm run build

    This will update your changes in the build file

  • A

    This topic is deleted!
    16 Sept 2024, 17:01 • alexVillalobos 16 Sept 2024, 17:01

    1
    0
    Votes
    1
    Posts
    5
    Views

    No one has replied

  • A

    This topic is deleted!
    17 Sept 2024, 01:30 • alexVillalobos 17 Sept 2024, 01:30

    1
    0
    Votes
    1
    Posts
    2
    Views

    No one has replied

  • H

    Want to upgrade from 2.1.1 to 2.2
    11 Sept 2024, 05:53 • haseebkamboh 17 Sept 2024, 12:54

    4
    0
    Votes
    4
    Posts
    519
    Views

    Rishabh-Webkul 17 Sept 2024, 12:54

    Hello @haseebkamboh

    The correct way is to put your website on the staging server.

    We have an upgrade guide after each version.

    You can get help from the guide to upgrade your Bagisto version.

    https://github.com/bagisto/bagisto/blob/v2.2.0/UPGRADE.md

    Thanks & Regards

  • H

    invoice releted.
    16 Sept 2024, 06:50 • hiten_jadav 18 Sept 2024, 05:32

    3
    0
    Votes
    3
    Posts
    447
    Views

    Rishabh-Webkul 18 Sept 2024, 05:32

    Hello @mayur0418

    The "maximum execution time exceeded" error typically means that the script you’re running is taking longer than the allowed time to execute.

    In your PHP script, you can increase the execution time by adding the following line at the top:
    php

    set_time_limit(120); // Increases the limit to 120 seconds

    Alternatively, you can update the php.ini file:
    ini

    max_execution_time = 120

    Thanks & Regards

  • M

    cant upload images
    11 Sept 2024, 17:36 • marwan.dalaty 18 Sept 2024, 05:33

    4
    0
    Votes
    4
    Posts
    571
    Views

    Rishabh-Webkul 18 Sept 2024, 05:33

    Hello @marwan-dalaty

    That's great.

    You're Welcome.

  • A

    is possible create one order on admin panel
    18 Sept 2024, 04:28 • alexVillalobos 18 Sept 2024, 05:42

    2
    0
    Votes
    2
    Posts
    295
    Views

    Rishabh-Webkul 18 Sept 2024, 05:42

    Hello @alexVillalobos

    Kindly follow the below link to create an order from the admin panel.

    And if you still got any issues kindly let us know.

    Link: https://docs.bagisto.com/2.2.0/orders/admin-order.html

    Thanks & Regards

  • A

    upgrade guide 2.1x-dev to 2.2.2
    17 Sept 2024, 03:31 • alexVillalobos 19 Sept 2024, 04:21

    9
    0
    Votes
    9
    Posts
    1.3k
    Views

    Rishabh-Webkul 19 Sept 2024, 04:21

    Hello @alexVillalobos

    Kindly go through the below link regarding same.

    https://devdocs.bagisto.com/2.2/prologue/upgrade-guide.html#upgrade-steps

    Thanks & Regards

  • H

    customer's favorite products
    19 Sept 2024, 04:26 • hiten_jadav 19 Sept 2024, 12:00

    7
    0
    Votes
    7
    Posts
    944
    Views

    H 19 Sept 2024, 12:00

    @mayur0418 ok I will try.

  • A

    when click view all return to home
    21 Sept 2024, 08:04 • alexVillalobos 21 Sept 2024, 17:37

    2
    0
    Votes
    2
    Posts
    441
    Views

    A 21 Sept 2024, 17:37

    i found solution on Http->Controllers->SearchController
    on index have this

    $this->validate(request(), ['query' => ['required', 'string', 'regex:/^[^\\\]+$/u']]);

    comment this line and work links

    this validation is necesary?

  • A

    Product Purchase Failure and Localhost Crash Issue in Bagisto
    20 Sept 2024, 07:04 • Ashish 0 23 Sept 2024, 05:05

    2
    0
    Votes
    2
    Posts
    395
    Views

    Rishabh-Webkul 23 Sept 2024, 05:05

    Hello @Ashish-0

    While attempting to add a product to the cart kindly check inside the console & networks if any errors are coming while performing this action.

    Thanks & Regards

  • H

    Using Existing Bagisto eCommerce Web Application as Backend for Flutter/React Native App
    19 Sept 2024, 14:26 • haseebkamboh 23 Sept 2024, 07:22

    2
    0
    Votes
    2
    Posts
    461
    Views

    Rishabh-Webkul 23 Sept 2024, 07:22

    Hello @haseebkamboh

    We are using Sanctum Token for authentication for secure communication between the app and the Bagisto backend in API.

    Thanks & Regards

  • H

    buy 2 get 1 free
    24 Sept 2024, 06:36 • hiten_jadav 24 Sept 2024, 06:46

    2
    0
    Votes
    2
    Posts
    345
    Views

    Rishabh-Webkul 24 Sept 2024, 06:46

    Hello @mayur0418

    If you need to create something like a Buy 2 get 1 free coupon you need to create a Cart Rules for that.

    Kindly go through the below link for the same.

    https://docs.bagisto.com/2.2.0/marketing/promotions.html#cart-rules

    Thanks & Regards