• Resolved stevepom

    (@stevepom)


    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 to see the link]

Viewing 15 replies - 1 through 15 (of 27 total)
  • Plugin Author Jacob N. Breetvelt

    (@opajaap)

    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

    (@stevepom)

    Awesome!!

    Thread Starter stevepom

    (@stevepom)

    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

    (@stevepom)

    Resolved 2 February 2026. Will test for any other bugs….

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    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

    (@stevepom)

    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

    (@opajaap)

    Thanx, will fix it

    Thread Starter stevepom

    (@stevepom)

    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

    (@opajaap)

    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';
    }
    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Fixed 1.8

    Thread Starter stevepom

    (@stevepom)

    Perrrrrfect – thanks!!

    Best,

    Steve

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    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

    Thread Starter stevepom

    (@stevepom)

    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

    (@stevepom)

    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

    (@opajaap)

    What is you theme?

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

You must be logged in to reply to this topic.