Forum Replies Created
-
AuthorPosts
-
November 29, 2013 at 3:20 am in reply to: Layer Slider has stopped working and there is some suspect code appeared #194581
by the way.. my url is http://cudmorefisheries.co.uk
Thanks
hi yes I have asked them to ensure that do this.. I will also clear any cache server side. will let you know it there is still any issues
hi Devin..
this fix works fine on my android tablet but apprently still missing on the ipad as per the other post here:
https://kriesi.at/support/topic/no-drop-down-menu-option-on-ipad
Is it maybe that the ipad allows for a larger resolution than the cutover in the css?
I will give it a try.. thanks for the speedy response today.. keep up the good work ;)
http://www.cudmorefisheries.co.uk Thanks Dude.. I did try a suggestion on here on my quick css but it didnt work.
Hi.. I dont want to be able to use the advanced layout editor on custom posts… I dont really need that.. I just need to be able to ensure that the loop pulls through the new post type so it shows in the blog feed.. I think this is quite standard but just not sure how.. thought you guys may know as I know how good you all are.. :)
I am aware I will need to enter the following:
// Show posts of ‘post’, ‘page’ and ‘movie’ post types on home page
add_action( ‘pre_get_posts’, ‘add_my_post_types_to_query’ );
function add_my_post_types_to_query( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( ‘post_type’, array( ‘post’, ‘page’, ‘Open Match Results’ ) );
return $query;
}
but not sure where this will need to go
-
AuthorPosts