Navigation

    Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. dsharma
    3. Topics
    D
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by dsharma

    • D

      Regarding Authorise.net email template
      General Discussion • • dsharma  

      2
      0
      Votes
      2
      Posts
      27
      Views

      R

      Hi @dsharma whether it is working fine with other payment mode. Thanks
    • D

      Mail Notification in order placement
      General Discussion • • dsharma  

      2
      0
      Votes
      2
      Posts
      30
      Views

      R

      Hi @dsharma When you place an order, first request goes to onepagecontroller's saveOrder method, from where we are calling order repository's create method in sales package , when order successfully created then we fired this event there with order data like - Event::fire('checkout.order.save.after', $order); then listing this event using above mentioned way and calling a function to send message of order place. Thanks
    • D

      Mail Notification in order placement
      General Discussion • • dsharma  

      4
      0
      Votes
      4
      Posts
      42
      Views

      R

      Hi @dsharma Please refer this one - https://forums.bagisto.com/topic/460/mail-notification-in-order-placement/2 Thanks
    • D

      Regarding mail functionality
      General Discussion • • dsharma  

      6
      0
      Votes
      6
      Posts
      55
      Views

      K

      Hi @dsharma , Please try this one. MAIL_DRIVER=sendmail MAIL_HOST=smtp.gmail.com MAIL_PORT=2525 MAIL_USERNAME=YOUR MAILTRAP EMAIL ADDRESS MAIL_PASSWORD=YOUR PASSWORD MAIL_ENCRYPTION=ssl [email protected] [email protected] Thank you.
    • D

      got an issue
      General Discussion • • dsharma  

      2
      0
      Votes
      2
      Posts
      20
      Views

      R

      Hi @dsharma Kindly take pull from - https://github.com/bagisto/bagisto Thanks
    • D

      Getting issue in progress bar
      General Discussion • • dsharma  

      2
      0
      Votes
      2
      Posts
      30
      Views

      R

      Hi @dsharma Kindly create ticket here - https://bagisto.uvdesk.com/en/customer/create-ticket/ Thanks
    • D

      Fetching nested categories
      General Discussion • • dsharma  

      2
      1
      Votes
      2
      Posts
      32
      Views

      R

      Hi @dsharma getVisibleCategoryTree() is returning all category in nested form, so you can create a recursive function which check each category whether they have children or not & this function will be run until they don't have children & store result. Thanks
    • D

      Marketplace in profile link
      General Discussion • • dsharma  

      2
      0
      Votes
      2
      Posts
      30
      Views

      N

      Hi @dsharma , if you have already purchased marketplace module then please generate the ticket with order id . To generate the ticket click on flowing link: https://bagisto.uvdesk.com/en/ thanks naresh verma
    • D

      reset password email issue
      General Discussion • • dsharma  

      2
      0
      Votes
      2
      Posts
      58
      Views

      P

      Hello deepak, To send email variable to template, follow below steps : 1)Go to Webkul\Customer\src\Notifications\CustomerResetPassword. Replace toMail function with below code public function toMail($notifiable) { if (static::$toMailCallback) { return call_user_func(static::$toMailCallback, $notifiable, $this->token); } return (new MailMessage) ->subject(__('shop::app.mail.forget-password.subject') ) ->view('shop::emails.customer.forget-password', [ 'user_name' => $notifiable->name, 'email' => $notifiable->email, 'token' => $this->token ]); } Go to views\emails\customer\forget-password.blade.php of Shop package, pass email in route as below <a href="{{ route('customer.reset-password.create', ['token' => $token, 'email' => $email]) }}" style="padding: 10px 20px;background: #0041FF;color: #ffffff;text-transform: uppercase;text-decoration: none; font-size: 16px"> {{ __('shop::app.mail.forget-password.reset-password') }} </a> 3)Now, in your ResetPasswordController, you can get email in $request
    • D

      already considering new customers as verified
      General Discussion • • dsharma  

      2
      0
      Votes
      2
      Posts
      21
      Views

      R

      Hi @dsharma If you are creating your package then you need to merge your menu file with this one & can do it as - $this->mergeConfigFrom( dirname(__DIR__) . '/Config/menu.php', 'your file' ); In your service providers register method & recommend you to take pull from master branch to solve above error. Thanks
    • D

      Undefined Menu issue in sidebar in profile
      General Discussion • • dsharma  

      5
      0
      Votes
      5
      Posts
      58
      Views

      D

      very helpful. Thankyou so much Regards Deepak Sharma