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

      How to change the image sizes in Slider and advertisement.
      • AshJi

      3
      0
      Votes
      3
      Posts
      359
      Views

      A

      @Vaishali-Agarwal I am referring to fixing the height of image being displayed in the slider. Issue is if the uploaded image is of bigger dimension then slider occupies big portion of the scree.

      ![0_1594030709936_a5b68096-2f23-4edb-9765-3908c185fc7b-image.png](Uploading 100%)
      For now I have changed the style sheet 'velocity.css' to fix this issue. It will be better if slider height can be made as configurable.

      Also I have a few minor suggestions

      Ability to preview the images as they would appear Ability to crop an image Ability to mark status as inactive instead of deleting an image.
    • R

      Currency options
      • Rahul74

      2
      0
      Votes
      2
      Posts
      134
      Views

      R

      Hello @yeshi74

      You can use the Google API to know the location of the user and according to that, you can change the currency.

      You need to create a separate package for this, override master blade of shop package and do above things here.

    • A

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

      2
      0
      Votes
      2
      Posts
      171
      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
      117
      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
      213
      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
      198
      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
      243
      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
      154
      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
      717
      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
      432
      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
      309
      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
      846
      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
      4554
      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
      968
      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
      376
      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
      282
      Views

      No one has replied

    • R

      shipping fee setup
      • Rahul74

      2
      0
      Votes
      2
      Posts
      196
      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
      1996
      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
      317
      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
      610
      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