Title: Mobile Phone (Android) Functionality
Last modified: January 28, 2026

---

# Mobile Phone (Android) Functionality

 *  Resolved [stevepom](https://wordpress.org/support/users/stevepom/)
 * (@stevepom)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/)
 * The website plugin game works fine on desktop. On right mouse click, it performs
   the candidate removal. But on mobile, I can’t get the long tap to perform this
   function. Is there a way to get the long tap to work on mobile devices? I am 
   using an Android phone/Chrome. Thanks!
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fmobile-phone-android-functionality%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 15 replies - 1 through 15 (of 27 total)

1 [2](https://wordpress.org/support/topic/mobile-phone-android-functionality/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/mobile-phone-android-functionality/page/2/?output_format=md)

 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18803065)
 * I am currently working on a better layout for a.o. mobile and i will also look
   at the click / tap functionality.
 *  Thread Starter [stevepom](https://wordpress.org/support/users/stevepom/)
 * (@stevepom)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18803365)
 * Awesome!!
 *  Thread Starter [stevepom](https://wordpress.org/support/users/stevepom/)
 * (@stevepom)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18806761)
 * Seems to be working – thank you, Mr. Breetvelt!! That was soooo fast!!!!!
 * I’ll test it further later today, but it seems fine now 🙂
 * Best,
 * Steve
 *  Thread Starter [stevepom](https://wordpress.org/support/users/stevepom/)
 * (@stevepom)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18806763)
 * Resolved 2 February 2026. Will test for any other bugs….
 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18806802)
 * Note the changelog:
 *     ```
       == Changelog ==
   
       = 1.7 =
   
       * On mobile devices touching a small box and holding it for more than 0.5 seconds, it will be removed like right click on desktop.
       * The puzzle will scale to the max available width. If a size is specified in the shortcode it will be interpreted as the maximum size.
       * Added puzzle of the day. works only if enough puzzles have been loaded (currently 26032);
       ```
   
 *  Thread Starter [stevepom](https://wordpress.org/support/users/stevepom/)
 * (@stevepom)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18807008)
 * Cool – didn’t notice the game of the day option. Note that the link for it in
   English should be spelled “Daily”.
 * Best,
 * Steve
 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [4 months ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18808150)
 * Thanx, will fix it
 *  Thread Starter [stevepom](https://wordpress.org/support/users/stevepom/)
 * (@stevepom)
 * [4 months ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18808982)
 * Thanks! 🙂
 * Also, just noticed that I get an error code: “Security check failure” sometimes.
   I have only seen it while on my Android phone. Not sure how users can correct
   it – I can clear it, but only by saving the page while in my WordPress Admin.
   Code area at around line 145:
 * // Security check
   $rating = strval( intval( $_REQUEST[‘rating’] ) );if ( $rating
   < ‘1’ || $rating > ‘7’ ) {esc_html_e( ‘Security check failure’, ‘wp-sudoku-plus’);
   echo ‘ (1)’;exit;
 * Thanks Again,
 * Steve
 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [4 months ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18809186)
 * I will remove the check and default to level 1 in case a user tamperes the url
   to have a rating out of range
 * The code will be than:
 *     ```
       $rating = strval( intval( $_REQUEST['rating'] ) );
       if ( $rating < '1' || $rating > '7' ) {
       	$rating = '1';
       }
       ```
   
    -  This reply was modified 4 months ago by [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/).
      Reason: added code
 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [4 months ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18809430)
 * Fixed 1.8
 *  Thread Starter [stevepom](https://wordpress.org/support/users/stevepom/)
 * (@stevepom)
 * [4 months ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18809881)
 * Perrrrrfect – thanks!!
 * Best,
 * Steve
 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18819764)
 * I think i have good news for you.
    I made some enhancements:
 *     ```
       == Changelog ==
   
       = 2.0 =
   
       * The initial import of puzzles is now done at the background starting immediately after plugin activation.
       * Added Undo button in the navigation box. Will show up after a move has been done.
       * Minor cosmetic changes.
       ```
   
 * Would you be so kind to test it before i release it?
 * If so, do the following:
 * Download [https://downloads.wordpress.org/plugin/wp-sudoku-plus.2.0.zip](https://downloads.wordpress.org/plugin/wp-sudoku-plus.2.0.zip)
   
   Go to the wp menu Plugins and click `Add Plugin` Click `Upload Plugin` and select
   the zip file you just downloaded Click `Install Now` and click `Replace current
   with uploaded`
 * If you need to go back, do not de-activate the plugin as this will clear the 
   won/lost statistics,
    but do the same with the current version [https://downloads.wordpress.org/plugin/wp-sudoku-plus.1.8.zip](https://downloads.wordpress.org/plugin/wp-sudoku-plus.1.8.zip)
 *  Thread Starter [stevepom](https://wordpress.org/support/users/stevepom/)
 * (@stevepom)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18820000)
 * Nice to see you are upgrading the plugin 🙂
 * I’ll continue testing, but the first thing is that it does not auto size when
   using my desktop, but it looks good on my android device. I don’t have an iPad/
   Notebook, so I can’t test for those devices.
 *  Thread Starter [stevepom](https://wordpress.org/support/users/stevepom/)
 * (@stevepom)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18820014)
 * For the Desktop page, I set the size=”8″, but it still displays the game that
   is too large for the screen to display entirely.
 *  Plugin Author [Jacob N. Breetvelt](https://wordpress.org/support/users/opajaap/)
 * (@opajaap)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/#post-18820588)
 * What is you theme?

Viewing 15 replies - 1 through 15 (of 27 total)

1 [2](https://wordpress.org/support/topic/mobile-phone-android-functionality/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/mobile-phone-android-functionality/page/2/?output_format=md)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fmobile-phone-android-functionality%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-sudoku-plus.svg)
 * [WP Sudoku Plus](https://wordpress.org/plugins/wp-sudoku-plus/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-sudoku-plus/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-sudoku-plus/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-sudoku-plus/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-sudoku-plus/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-sudoku-plus/reviews/)

 * 27 replies
 * 2 participants
 * Last reply from: [stevepom](https://wordpress.org/support/users/stevepom/)
 * Last activity: [3 months ago](https://wordpress.org/support/topic/mobile-phone-android-functionality/page/2/#post-18844004)
 * Status: resolved