• Hello,

    I’ve been trying to use the different shortcode from the app, and the QR code scanner always ends up crashing. Once the QR code scanner open, the view get stuck in portrait mode with no return button and after a few seconds without input, the app crash. Even if the app was not crashing it would be nice to have access to the return button in case user don’t actually want to use the scanner.

    I also have another issue with the query strings added to the URL. They are interfering with my website pagination, for example /page/2 will end up sandwiched between 2 rows of query strings resulting in an error. eg: ?wpappninja=true&wpappninja_simul4=true&fakepwa=1#038;wpappninja_simul4=true&fakepwa=1/page/2/&wpappninja=true&wpappninja_simul4=true&wpappninja=true&wpappninja_simul4=true, so I was wondering if there is a way to exclude those query strings on some HTML elements?

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author AmauriC

    (@amauric)

    Hi

    I agree that the qrcode scanner is not very good.
    It crash when you scan a code or if you do nothing?

    For the pagination issue, possible to have the website url?

    Thread Starter nomade123456

    (@nomade123456)

    Hi Amauri,

    Thanks for the quick answer. The QR code scanner crash if you do nothing, and it usually doesn’t take very long. I’ve tested with 2 different phones on Android. However, if you go fast enough, you can successfully scan QR code and then the app will open it to the right page.

    Both issues can be observed at https://m.sabaystore.com/

    Thanks!

    Plugin Author AmauriC

    (@amauric)

    For the pagination, add this Javascript snippet from the WPMobile plugin > CSS and Javascript > In the app > Javascript:

    jQuery(function() {
       jQuery('a.page-numbers').each(function() {
          jQuery(this).attr("href", jQuery(this).attr("href").replace('/?is_wppwa=true&wpappninja_cache=friendly#038;wpappninja_cache=friendly', ''));
       });
    });

    For the qrcode I’ll investigate.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Problem with the QR code scanner’ is closed to new replies.