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

      Configuring Promotions - Is there a way to trace whether a defined promotion is getting applied or not.
      • AshJi

      2
      0
      Votes
      2
      Posts
      190
      Views

      V

      @AshJi
      You may find this guide helpful
      https://bagisto.com/en/how-to-setup-promotions/
      https://bagisto.com/en/how-to-set-catalog-rules-in-bagisto/

    • A

      Started to see some unwanted text, after some code changes
      • AshJi

      2
      0
      Votes
      2
      Posts
      134
      Views

      V

      Hi @AshJi
      due to slow internet connection sometimes this happens, you can reload the page again or run php artisan vendor:publish --force

      Thanks

    • R

      Admin panel favicon
      • Rahul74

      4
      0
      Votes
      4
      Posts
      230
      Views

      V

      @yeshi74
      this is the update in master branch, in the new release this feature will be coming, till then you can update your code with this PR https://github.com/bagisto/bagisto/pull/2978

    • R

      Delete add to cart button from home page
      • Rahul74

      2
      0
      Votes
      2
      Posts
      222
      Views

      V

      Hi @yeshi74
      there are multiple options:-

      by adding css
      by removing add-to-cart html (edit vue component)

      https://github.com/bagisto/bagisto/blob/master/packages/Webkul/Velocity/src/Helpers/Helper.php#L342

    • D

      Price Update not changing in the store
      • dan3460

      2
      0
      Votes
      2
      Posts
      267
      Views

      R

      Hi @dan3460

      You need to also update the same value product_attribute_values table's different column according to attribute type.

      Thanks

    • A

      Package an order as a gift
      • awadhaj

      2
      0
      Votes
      2
      Posts
      176
      Views

      V

      @awadhaj
      currently "is_gift" column is of no use, instead of this you can add the comment box on the checkout page, so the customer can add comment if they wish to package an order as gift.

      you may follow this link for the same https://github.com/bagisto/bagisto/issues/3135

    • O

      please can you tell me where the errors are displayed in english, I would like to translate them into french
      • Omar

      13
      0
      Votes
      13
      Posts
      807
      Views

      P

      @Omar ,
      in our previous versions, we have locales.js file but now in our latest version we can do the respective changes in app.js file. Follow below points:

      assume you want to add ar locales, then you need to add "import ar from 'vee-validate/dist/locale/ar';" in app.js file

      Next, you need to register your locale like this in dictionary
      Vue.use(VeeValidate, {
      dictionary: {
      ar: ar,
      de: de,
      },
      events: 'input|change|blur',
      });

      Note: Follow this https://vee-validate.logaretm.com/v2/guide/localization.html#using-the-dictionary-api for more details

    • R

      Not able to install bagisto in godaddy shared hosting cpanel.
      • Rahul74

      4
      0
      Votes
      4
      Posts
      468
      Views

      V

      Hi @yeshi74
      you need to upgrade mysql version as bagisto support MYSQL version 5.7.23 or higher.
      Also 5.6.47 is not support json data type so you're getting this issue.

      Thanks

    • R

      Issue in live server
      • Rahul74

      2
      0
      Votes
      2
      Posts
      338
      Views

      V

      Hi @yeshi74
      as the error describe, you should go to the php.ini file then allow_url_fopen must be set to On, you can go through with this guide https://forums.cpanel.net/threads/php-ini-file-composer-and-allow_url_fopen-0.661181/

    • R

      Contact us forms
      • Rahul74

      6
      0
      Votes
      6
      Posts
      893
      Views

      shubhwebkul

      Hello there,

      You can wrap this HTML inside the form tag and provide your action and put your logic there.

    • R

      issue in live server
      • Rahul74

      28
      0
      Votes
      28
      Posts
      5327
      Views

      V

      Hi @yeshi74
      No worry, you can contact your hosting support team, they will install the nodej10.

      Thanks

    • R

      How to add Google Analytics to the master.blade.php
      • Remco1337

      3
      0
      Votes
      3
      Posts
      1018
      Views

      R

      @rahul Thanks for your explanation!

      @CarlosR Yes it did the trick by editting inside the resources folder directly 🙂

      Muchos gracias!

    • bala

      How to redirect domain to subdirectory without changing URL
      • bala

      6
      0
      Votes
      6
      Posts
      417
      Views

      bala

      @bala said in How to redirect domain to subdirectory without changing URL:

      c2ceylon.com is my primary domain , so i want to redirect to public_html/c2ceylon/public without changing the url (c2ceylon.com)

      i did this, simply add public_html / .htaccess

      RewriteEngine On RewriteRule ^(.*)$ sub_folder/public/$1 [L, NC, QSA]
    • R

      npm run prod issue
      • Rahul74

      1
      0
      Votes
      1
      Posts
      306
      Views

      No one has replied

    • R

      shipping fee setup
      • Rahul74

      2
      0
      Votes
      2
      Posts
      213
      Views

      N

      Hello @Rahul74 ,
      You can create your package to perform this , where you can write logic to show the different shipping fee based on customer selected countries .

      please check our developer doc to create your own shipping package:
      https://devdocs.bagisto.com/create_shipping_method.html

      if want to know how to create package then go through with this first:
      https://devdocs.bagisto.com/create_package.html

      Thanks!

    • R

      Remove some fields from checkout form
      • Rahul74

      22
      0
      Votes
      22
      Posts
      2341
      Views

      V

      @Rahul74
      you can follow these steps to upgraded on latest version https://devdocs.bagisto.com/upgrade_to_latest_bagisto.html

    • J

      View Render Event
      • jimbodev

      2
      0
      Votes
      2
      Posts
      333
      Views

      devansh-webkul

      Hi @jimbodev ,

      As I am seeing your code, I want to tell you that the

      $viewRenderEventManager->addTemplate()

      the method will take only one argument as a parameter which is the location of the template.

      So your code will look like this,

      Event::listen('bagisto.admin.catalog.product.edit_form_accordian.General.controls.after', function($viewRenderEventManager) { $viewRenderEventManager->addTemplate('xxx::xx.xx.xx'); });

      Now if you want to pass the data then you need to use

      {{ view_render_event('bagisto.admin.catalog.product.edit_form_accordian.General.controls.after', compact('data')) }}

      in the main blade file.

    • R

      Composer update won't work not even on clean install.
      • Remco1337

      7
      0
      Votes
      7
      Posts
      702
      Views

      V

      @Remco1337
      you can go through with guide also , here are all the possible solution providedhttps://github.com/composer/composer/issues/1898

      Let me know if still does n't work

    • R

      Compiling assets issue
      • Rahul74

      7
      0
      Votes
      7
      Posts
      494
      Views

      V

      Hi @Rahul74
      have you got any success in this? or still getting the same.

    • F

      How to customize Place Order button ?
      • farhan-saifi

      2
      0
      Votes
      2
      Posts
      231
      Views

      S

      Override this page https://github.com/bagisto/bagisto/blob/master/packages/Webkul/Shop/src/Resources/views/checkout/onepage.blade.php and here is the submit button https://github.com/bagisto/bagisto/blob/master/packages/Webkul/Shop/src/Resources/views/checkout/onepage.blade.php#L90