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

      installation of vue-tel-input
      • Rimeri

      3
      0
      Votes
      3
      Posts
      224
      Views

      sanjay-webkul

      Please follow the instruction and installation process once again and do let us know if it is working fine or not, if not we would love to help.

      Please follow the link - https://www.npmjs.com/package/vue-tel-input

    • M

      Publishing does not work
      • MallauryG

      6
      0
      Votes
      6
      Posts
      608
      Views

      M

      @Amitk-Webkul said in Publishing does not work:

      Hi there,

      Bagisto is the used theme and has two themes default and velocity.

      The below path is of the default theme.

      packages\Webkul\Shop\src\Resources\views\home\index.blade.php

      Ok thanks!

    • V

      Compare page not loading pls help someone
      • vicky11

      2
      0
      Votes
      2
      Posts
      71
      Views

      A

      Hi there,
      Please clear first the cache and cookies of your browser and then refresh Hard.
      If still facing the same issue please let me know.

    • K

      Do customer have a option to add comment while ordering?
      • kunalkurhader

      4
      0
      Votes
      4
      Posts
      183
      Views

      K

      Thank you for reply.

    • S

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

      2
      0
      Votes
      2
      Posts
      129
      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
      120
      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
      84
      Views

      A

      Hi there,

      you can take a reference from Here.

    • A

      save-address to cart api exception
      • abdalhadi

      2
      0
      Votes
      2
      Posts
      165
      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
      83
      Views

      A

      Hi there,

      we are fixing the issues. will update you soon.

    • L

      Canada Tax
      • larocfra

      2
      0
      Votes
      2
      Posts
      76
      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
      359
      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
      143
      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
      413
      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
      297
      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
      189
      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
      13956
      Views

      A

      Hi @karkiswapnil,

      you can do the same.