bobo_kbg
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] iPhone and Safari field problemWell, 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 7Anyway, 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
Forum: Networking WordPress
In reply to: Menu items apears as postFound 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;
}
}Forum: Plugins
In reply to: Plugin for ecommerce with multiple usersHi, 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.