Navigation

    Bagisto Forum

    Bagisto

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

    Rahul74

    @Rahul74

    1
    Reputation
    134
    Posts
    140
    Profile views
    0
    Followers
    1
    Following
    Joined Last Online

    Rahul74 Follow

    Posts made by Rahul74

    • RE: pagination for featured products in default theme

      @Rahul74 @Vaishali-Agarwal Can u help here

      posted in General Discussion
      R
      Rahul74
    • RE: pagination for featured products in default theme

      @Vaishali-Agarwal In the productrepository.php page, i was trying to add this pagination code, but not working.
      @if ($paginator->hasPages())
      <div class="pagination shop mt-50">
      {{-- Previous Page Link --}}
      @if ($paginator->onFirstPage())
      <a class="page-item previous">
      <i class="icon angle-left-icon"></i>
      </a>
      @else
      <a data-page="{{ urldecode($paginator->previousPageUrl()) }}" href="{{ urldecode($paginator->previousPageUrl()) }}" id="previous" class="page-item previous">
      <i class="icon angle-left-icon"></i>
      </a>
      @endif

          {{-- Pagination Elements --}}
          @foreach ($elements as $element)
              {{-- "Three Dots" Separator --}}
              @if (is_string($element))
                  <a class="page-item disabled" aria-disabled="true">
                      {{ $element }}
                  </a>
              @endif
      
              {{-- Array Of Links --}}
              @if (is_array($element))
                  @foreach ($element as $page => $url)
                      @if ($page == $paginator->currentPage())
                          <a class="page-item active">
                              {{ $page }}
                          </a>
                      @else
                          <a class="page-item as" href="{{ urldecode($url) }}">
                              {{ $page }}
                          </a>
                      @endif
                  @endforeach
              @endif
          @endforeach
      
          {{-- Next Page Link --}}
          @if ($paginator->hasMorePages())
              <a href="{{ urldecode($paginator->nextPageUrl()) }}" data-page="{{ urldecode($paginator->nextPageUrl()) }}" id="next" class="page-item next">
                  <i class="icon angle-right-icon"></i>
              </a>
          @else
              <a class="page-item next">
                  <i class="icon angle-right-icon"></i>
              </a>
          @endif
      </div>
      

      @endif

      I want to show the pagination for featured products in default theme. Help me

      posted in General Discussion
      R
      Rahul74
    • pagination for featured products in default theme

      How to create pagination for featured products in default theme in the front page???

      posted in General Discussion
      R
      Rahul74
    • RE: paypal sandbox

      @Rahul74 May be the answer is i need to complete the KYC of my paypal business account, thats y payment is not getting successful.......

      posted in General Discussion
      R
      Rahul74
    • RE: paypal sandbox

      @deepak227 ok understood that. Made the sandbox disabled and checked with real debit card, it is working till this page:
      Screenshot at Sep 09 15-11-43.png

      When i enter the real/authentic Debit card details and submit, this error page is showing:
      222.png
      What could be wrong??

      posted in General Discussion
      R
      Rahul74
    • RE: paypal sandbox

      @deepak227 Yes i have made sandbox status active from admin panel.

      posted in General Discussion
      R
      Rahul74
    • RE: paypal checkout form

      @Rahul74 screenshot of above question
      Screenshot at Sep 09 12-39-10.png

      posted in General Discussion
      R
      Rahul74
    • paypal checkout form

      customers already entered their billing adress and all from the website checkout form, so at the paypal page of entering card details, again this billing forms are there, so how do we remove it and just keep the fields of card details??????

      posted in General Discussion
      R
      Rahul74
    • RE: paypal sandbox

      @deepak227 Screenshot at Sep 09 11-28-49.png

      This error is showing after entering the card details in live and in test both. So what are the possible cause of this??

      posted in General Discussion
      R
      Rahul74
    • RE: paypal sandbox

      @deepak227 entering card option page comes sometimes and sometimes that above error comes. i have tried both test and real cards. So if i want to make this payment live (not test) then what needs to be done in paypal account and in bagsito codes???

      posted in General Discussion
      R
      Rahul74