• Resolved manu.p

    (@manup-1)


    Hi, not sure this theme is still maintained (https://foxnet-themes.fi/ show a 404 page) but here’s my problem anyway, in case someone has a clue…

    My blog shows no “Leave a comment” button or whatever it is in english. See here https://lepassepartout.fr/blog/2015/05/578/ for instance.

    When I switch to another theme such as Twenty Ten, I get the button back.

    When I take a look at the HTML code of the page (eino theme), I see no “<p class=”form-submit”><input name=”submit” type=”submit” id=”submit” class=”submit” …” line

    I tried to deactivate the other extensions, in case they would interfere, with no difference at all.

    It’s been working a few month ago, since people did post comments.

    Any suggestion/help would be appreciated.
    TIA.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter manu.p

    (@manup-1)

    The only change I can identify at this point is the WP version, and this would make me think this theme is no longer compatible with the latest version(s) of WP…

    I appear not to be the only one who’s lost the submit button on a Sami’s theme as I can read here. BTW, the new site where you could try/hope to get support for this theme is https://foxland.fi/.

    Now, it looks like it’s not a free support anymore, even for the free (of charge) theme like Eino… I tried to get in touch with Sami through his contact page, without any noise back so far.

    So… I’m afraid I’ll have to forget it and find another theme soon!

    Hi,

    the Eino theme is still supported by Sami, you can found it here https://foxland.fi/downloads/eino/

    For your issue I’m not sure to be able to answer it but at least when does it happens. Any clue? An update or a new plugin?

    Thread Starter manu.p

    (@manup-1)

    Thanks FX for responding.
    I’ve been deactivating each extension/plugin without success.

    The last comments were posted in february, I guess WP has been updated since then.

    Thread Starter manu.p

    (@manup-1)

    The more I’m investigating, the less I’m confident with it.
    I just tried Eino on an another fresh WP install and there’s no Submit button below the comment area.

    That’s tending to confirm this theme is not compatible with WP 4.2.2.

    I guess I’ll be looking for a new theme now…

    Theme Author Sami Keijonen

    (@samikeijonen)

    The problem is that I can’t easily update the themes like Eino or Path in www.remarpro.com because there are so much that have changed in the guidelines.

    Anyways try this in your child theme functions.php.

    /**
     * Add Submit Button in Comment Form Args
     * @link https://themehybrid.com/board/topics/askimet-blocking-comment-button#post-4878
     */
    function prefix_comment_form_args( $args ) {
    
    	$args['class_submit']  = 'submit';
    	$args['name_submit']   = 'submit';
    	$args['submit_button'] = '<input name="%1$s" type="submit" id="%2$s" class="%3$s" value="%4$s" />';
    	$args['submit_field']  = '<p class="form-submit">%1$s %2$s</p>';
    
    	return $args;
    }
    add_filter( 'comment_form_defaults', 'prefix_comment_form_args', 11 );
    Thread Starter manu.p

    (@manup-1)

    Yes! It’s ok now. Thanks for the fix Sami!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Can't submit comments on posts’ is closed to new replies.