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

      Ebook as a downloadable product without extra costs in links
      • stvan86

      2
      0
      Votes
      2
      Posts
      320
      Views

      A

      Hi there,
      You can customize this.

      you can send a mail to Support@webkul.com for customization.

    • S

      Create new vue js component
      • shell

      2
      0
      Votes
      2
      Posts
      311
      Views

      A

      Hi there,

      you need to include the compiled app.js file.

    • K

      How to change the language of whole front end as well as backend ?. i have tried mentioned process but that only worked on products. I want in backend footer and header sections too
      • Kattel10

      2
      0
      Votes
      2
      Posts
      277
      Views

      A

      Hi there,

      you can take a reference from Here.

    • A

      save-address to cart api exception
      • abdalhadi

      2
      0
      Votes
      2
      Posts
      295
      Views

      A

      Hi there,

      we are fixing the issues. will update you soon.

    • H

      i have the same issue in V1
      • Hossam Hamed

      2
      0
      Votes
      2
      Posts
      277
      Views

      A

      Hi there,

      we are fixing the issues. will update you soon.

    • L

      Canada Tax
      • larocfra

      2
      0
      Votes
      2
      Posts
      266
      Views

      A

      Hi there,

      Create two tax rates accordingly and then create a single tax rate category then it will calculate accordingly.

    • K

      Admin Sidebar Error
      • Kattel10

      10
      0
      Votes
      10
      Posts
      1252
      Views

      A

      Hi there,
      In the below path set the given code.

      and then publish the module.

      Path: packages/Webkul/PreOrder/src/Resources/views/admin/layouts/nav-left.blade.php

      @php $tree = \Webkul\Core\Tree::create(); foreach (config('core') as $item) { $tree->add($item); } $tree->items = core()->sortItems($tree->items); $config = $tree; $allLocales = core() ->getAllLocales() ->pluck('name', 'code'); @endphp <div class="navbar-left" v-bind:class="{'open': isMenuOpen}"> <ul class="menubar"> @foreach ($menu->items as $menuItem) @if (!core()->getConfigData('preorder.settings.general.enable_preorder') && $menuItem['key'] == 'preorder') <?php continue; ?> @else <li class="menu-item {{ $menu->getActive($menuItem) }}"> <a class="menubar-anchor" href="{{ $menuItem['url'] }}"> <span class="icon-menu icon {{ $menuItem['icon-class'] }}"></span> <span class="menu-label">{{ trans($menuItem['name']) }}</span> @if (count($menuItem['children']) || $menuItem['key'] == 'configuration') <span class="icon arrow-icon {{ $menu->getActive($menuItem) == 'active' ? 'rotate-arrow-icon' : '' }} {{ core()->getCurrentLocale() && core()->getCurrentLocale()->direction == 'rtl' ? 'arrow-icon-right' : 'arrow-icon-left' }}"> </span> @endif </a> @if ($menuItem['key'] != 'configuration') @if (count($menuItem['children'])) <ul class="sub-menubar"> @foreach ($menuItem['children'] as $subMenuItem) <li class="sub-menu-item {{ $menu->getActive($subMenuItem) }}"> <a href="{{ count($subMenuItem['children']) ? current($subMenuItem['children'])['url'] : $subMenuItem['url'] }}"> <span class="menu-label">{{ trans($subMenuItem['name']) }}</span> </a> </li> @endforeach </ul> @endif @else <ul class="sub-menubar"> @foreach ($config->items as $key => $item) <li class="sub-menu-item {{ $item['key'] == request()->route('slug') ? 'active' : '' }}"> <a href="{{ route('admin.configuration.index', $item['key']) }}"> <span class="menu-label"> {{ isset($item['name']) ? trans($item['name']) : '' }}</span> </a> </li> @endforeach </ul> @endif </li> @endif @endforeach </ul> <nav-slide-button id="nav-expand-button" icon-class="accordian-right-icon"></nav-slide-button> </div> @push('scripts') <script> $(document).ready(function() { $(".menubar-anchor").click(function() { if ($(this).parent().attr('class') == 'menu-item active') { $(this).parent().removeClass('active'); $('.arrow-icon-left').removeClass('rotate-arrow-icon'); $('.arrow-icon-right').removeClass('rotate-arrow-icon'); $(".sub-menubar").hide(); event.preventDefault(); } }); }); </script> @endpush
    • M

      Core modification of product-card
      • MallauryG

      2
      0
      Votes
      2
      Posts
      353
      Views

      A

      Hi there,
      You have to changes in the (product-card.vue) file and run the following commands

      in packages/Webkul/Velocity

      npm i npm run watch

      ( in development) in packages/Webkul/Velocity

      npm run prod

      ( in production ) in packages/Webkul/Velocity

      after all the changes run below command in root directory and publish the module

      php artisan vendor:publish --force
    • K

      i have set correct url in app url env. My product image are displaying correctly but when i change the logo and favicon it is showing error. i have tried unlinking and again linking the storage but it is not working.
      • Kattel10

      11
      0
      Votes
      11
      Posts
      1470
      Views

      A

      Hi there,

      If the data directory doesn't exist under (storage/framework/cache/data), then you will face this error.

      This data directory doesn't exist by default on a fresh/new installation.

      Creating the data directory manually at (storage/framework/cache) will fix this issue.

    • S

      This topic is deleted!
      • SupportTime

      1
      0
      Votes
      1
      Posts
      6
      Views

      No one has replied

    • S

      This topic is deleted!
      • SupportTime

      1
      0
      Votes
      1
      Posts
      5
      Views

      No one has replied

    • S

      This topic is deleted!
      • SupportTime

      1
      0
      Votes
      1
      Posts
      108
      Views

      No one has replied

    • M

      Is there anyway to allow someone to setup an appointment and buy a downloadable the same transaction?
      • mikeyapina

      2
      0
      Votes
      2
      Posts
      492
      Views

      A

      Hi there,
      Can you please elaborate? What exactly you are trying to do?

    • A

      This topic is deleted!
      • Amitk-Webkul

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • M

      Bug after update
      • MallauryG

      6
      0
      Votes
      6
      Posts
      739
      Views

      A

      Hi @MallauryG,

      Please clear the config and route cache.

      php artisan config:cache php artisan route:cache
    • K

      npm run watch makes no changes.
      • karkiswapnil

      16
      0
      Votes
      16
      Posts
      15880
      Views

      A

      Hi @karkiswapnil,

      you can do the same.

    • S

      how to use dark mode in user page (velocity) ?
      • steven

      3
      0
      Votes
      3
      Posts
      496
      Views

      S

      oke thanks

    • diverti

      VAT ID input field at checkout
      vat id package billing addres overwrite • • diverti

      12
      0
      Votes
      12
      Posts
      2306
      Views

      A

      Hi @diverti,

      you can take a reference from Here.

    • S

      how can we add an image on the checkout page and so that the admin receives the image according to the order number?
      • steven

      14
      0
      Votes
      14
      Posts
      2053
      Views

      S

      @Amitk-Webkul said in how can we add an image on the checkout page and so that the admin receives the image according to the order number?:

      Please provide the complete image path.

      admin
      b62f3f4a-de7e-4b64-87c5-7da0600149e0-image.png

      user onepage
      9d6c6fa7-26e5-403e-8069-33703d4b8d1e-image.png

    • S

      Checkout as guest
      • Sangeetsthaa

      15
      0
      Votes
      15
      Posts
      2389
      Views

      A

      Hi @steven,

      Replied to the same query: https://forums.bagisto.com/topic/3344/side-bar-admin/2