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

      already considering new customers as verified
      • dsharma

      3
      0
      Votes
      3
      Posts
      228
      Views

      O

      it is still showing undefined even when i have added customer menu array in config/menu.

    • T

      Found Error while adding parameters Repository on Controller Class
      • Teddi

      3
      0
      Votes
      3
      Posts
      127
      Views

      T

      thanks for replying, i just miss one backslash in herefc8a1c34-ac4b-416d-8993-bdc338c344ea-image.png

    • S

      This topic is deleted!
      • SupportTime

      1
      0
      Votes
      1
      Posts
      15
      Views

      No one has replied

    • bestivfcentre

      This topic is deleted!
      • bestivfcentre

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • N

      How to update from 1.3 to 1.4 inside Docker?
      • newbie

      2
      0
      Votes
      2
      Posts
      88
      Views

      sanjay-webkul

      Hi there,
      Is it possible to share the steps which you followed for installing the bagisto?

    • K

      admin login error
      • karkiswapnil

      3
      0
      Votes
      3
      Posts
      846
      Views

      B

      wow, give a nice solution for this error thanks for posting this keep it up I am sharing this topic with my friends.
      from:- logo digitizing

    • T

      How can i create API and get data form bagisto
      • Teddi

      9
      0
      Votes
      9
      Posts
      367
      Views

      sanjay-webkul

      Hi there,
      as i can check the issue is with your database credentials.please verify the credentials and you can change the db password once and try again.

    • S

      Bagisto blade file changes not reflecting and error on vendor publish --force
      • smrithi

      5
      0
      Votes
      5
      Posts
      1084
      Views

      C

      It is still not working. I have made the changes in product view blade file. I am using different theme name "ThemeName" with below code in themes.php.

      'sps' => [
      'views_path' => 'resources/themes/sps/views',
      'assets_path' => 'public/themes/sps/assets',
      'name' => 'ThemeName',
      'parent' => 'velocity'
      ],

    • K

      How to retrieve image along with category name
      • Keerthi

      3
      0
      Votes
      3
      Posts
      1462
      Views

      ElizabethRic

      To retrieve an image along with its category name, you can use the following approach:

      Store the images and their corresponding category names in a database.

      Retrieve the image and category data from the database using an SQL query that joins the image table and category table on the category ID.

      Use PHP to display the image with its category name. You can use the database query results to dynamically create an HTML element that displays the image, along with its category name.

      Here is an example code snippet that demonstrates this approach:

      php
      Copy code
      // Connect to the database
      $db = mysqli_connect("localhost", "username", "password", "mydatabase");

      // Define the SQL query
      $sql = "SELECT images.*, categories.category_name FROM images
      INNER JOIN categories ON images.category_id = categories.category_id";

      // Execute the query
      $result = mysqli_query($db, $sql);

      // Loop through the results and display the images and category names
      while ($row = mysqli_fetch_assoc($result)) {
      echo "<div>";
      echo "<img src='" . $row['image_url'] . "' alt='" . $row['image_alt'] . "'>";
      echo "<p>Category: " . $row['category_name'] . "</p>";
      echo "</div>";
      }
      In this example, the query joins the images table with the categories table, using the category_id field as the common key. The query selects all columns from the images table and the category_name column from the categories table.

      The while loop iterates through the query results and outputs an HTML div element for each image, containing the img tag and the category name displayed in a p tag.

      Note that the code assumes that the image URLs and alt text are stored in the images table, and the category names are stored in the categories table. You may need to adjust the code based on the structure of your database.

    • S

      Is there any way to reorder products in admin area?
      • sfarzoso

      3
      0
      Votes
      3
      Posts
      501
      Views

      S

      @sanjay-webkul Hi, yes, I've included the files available here: https://github.com/bagisto/bagisto/pull/6734/commits but how can I use that feature? could you please link me a documentation or write some steps in order to implement it in the products page? thanks

    • D

      This topic is deleted!
      • dev.rohit

      1
      0
      Votes
      1
      Posts
      13
      Views

      No one has replied

    • K

      Whenever i try to run npm run production and npm run watch in pacakages/webkul/admin, packages/webkul/ui and packages/webkul/shop, The following error occurs.How to solve it
      • Kattel10

      2
      0
      Votes
      2
      Posts
      750
      Views

      sanjay-webkul

      Hi there.
      Which version of node and npm are you using?
      And what is your Bagisto version?

    • D

      How to change color in velocity theme
      • Deepanjali

      9
      0
      Votes
      9
      Posts
      1763
      Views

      sanjay-webkul

      Hi there.
      Is it possible to share the steps which your are following for push/pull the code from git. I guess you skiped any step while pushing and pulling the code.

    • M

      can not save address to cart using checkout/save-address web api
      • mzshanto

      6
      0
      Votes
      6
      Posts
      259
      Views

      A

      Hi there,
      We are fixing this issue. and we will update once this issue will be resolved.

    • A

      create a new form on a new page?
      • adeyemiadeshina

      2
      0
      Votes
      2
      Posts
      87
      Views

      sanjay-webkul

      Hi there.
      Please follow this thread.

    • ahdhilali

      How to hide the product price for Guest users in shop
      • ahdhilali

      4
      0
      Votes
      4
      Posts
      158
      Views

      sanjay-webkul

      Hi there,
      You can change Here

    • R

      Use of unsupported packages
      • rabol

      4
      0
      Votes
      4
      Posts
      174
      Views

      sanjay-webkul

      Hi there,
      Not getting your point. can you please elaborate and share a sort video for the issue?

    • O

      on coupon page, actions drop down menu, how can a "buy 1 get 1" action be applied or how it works
      • o414

      2
      0
      Votes
      2
      Posts
      98
      Views

      sanjay-webkul

      Hi there.
      Please take a reference from Here. and if the discount is not working according to the documents then you can raise a bug in our GitHub repository with proper description and steps for reproduce.

    • D

      is_default not working in address API
      • discretemicros

      3
      0
      Votes
      3
      Posts
      111
      Views

      D

      ok Thanks

    • A

      How to get the base currency symbol
      • adebayoade

      4
      0
      Votes
      4
      Posts
      258
      Views

      sanjay-webkul

      Otherwise this will return the symbol from php format currency