I am currently working on a better layout for a.o. mobile and i will also look at the click / tap functionality.
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
Resolved 2 February 2026. Will test for any other bugs….
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);
Cool – didn’t notice the game of the day option. Note that the link for it in English should be spelled “Daily”.
Best,
Steve
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
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';
}
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
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
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.
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.