Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bobo_kbg

    (@bobo_kbg)

    Well, I am using few plugins. For Contact 7 I used the following ad-dons:\

    Contact Form 7 Conditional Fields
    Contact Form 7 Style
    Drag and Drop Multiple File Upload – Contact Form 7
    Live Preview for Contact Form 7

    Anyway, I disabled all of them and leave only Contact 7, but still having the same problem. Also on Safary for PC when I press SUBMIT it gives me 404 page. Even the mail validation doesn’t work. On PC I am able to go to the next filed by Tab key from the keyboard.

    Regards,

    Boris

    Thread Starter bobo_kbg

    (@bobo_kbg)

    Found the problem in functions.php :

    Just remove some old code:

    /**
    * Custom Post Type Listing Issue.
    */

    add_filter(‘pre_get_posts’, ‘query_post_type’);
    function query_post_type($query) {
    if(is_category() || is_tag() || is_home() && empty( $query->query_vars[‘suppress_filters’] ) ) {
    $post_type = get_query_var(‘post_type’);
    if($post_type)
    $post_type = $post_type;
    else
    $post_type = array(‘post’,’freebies’,’nav_menu_item’);
    $query->set(‘post_type’,$post_type);
    return $query;
    }
    }

    bobo_kbg

    (@bobo_kbg)

    Hi, I am looking for the same think, I will be very happy if some one write a solution, I have tried combining a lot of plugins, but the does everything except this simple function we need here.

Viewing 3 replies - 1 through 3 (of 3 total)