Forum Replies Created
-
AuthorPosts
-
I need these to be centre of the page, i have tried everything css wise
February 18, 2016 at 8:15 pm in reply to: WooCommerce – variable product: renaming default selection for variants #585648You have to input that don’t you ? We changed ours simply by editing it
On our latest site we kept it simple and clean.
Hey Raymmar i can help you with this ;)
Hi Ismael, i know i can do that but thought that’s an easy approach. I will look more into it
I have just recored a movie and tested on the 3 top browsers for you. I have also tested on 7 other devices as i thought i was going mad
Hi Ismael that makes it worse, it shows an irrelavant product as you can see here
Have tested on 5 devices, it ends in the error I posted above.
Elliot i understand that to an extent but searching for the EXACT text should bring that result to the top ?
same in firefox
Here is our work in progress ;)
February 19, 2014 at 2:35 pm in reply to: Yoast SEO Plugin makes some pages go missing… incompatibility? #226183Bellblis that is the same problem i had as above, use the code Ismael provided and all works
February 2, 2014 at 8:28 pm in reply to: Yoast SEO Plugin makes some pages go missing… incompatibility? #218495February 2, 2014 at 8:25 pm in reply to: Yoast SEO Plugin makes some pages go missing… incompatibility? #218494Hi guys we have the same problem, it is a problem with the slider as it seems to pause on that and will npt load any content below.
Is there a fix for this ?I am using the latest version and if i remove that code then the masonry and blog grid only display if i am logged in as admin.
Any help would be appreciated
On further inspections i have found “dudes” code and gave it a shot. It worked, but what was the problem ?
add_filter(‘avf_registered_post_type_array’, ‘avia_remove_bbpress_post_type_options’, 10, 2);
function avia_remove_bbpress_post_type_options($post_type_option, $args)
{
if(!empty($post_type_option))
{
foreach($post_type_option as $key => $post_type)
{
if($post_type == ‘forum’ || $post_type == ‘topic’ || $post_type == ‘reply’)
{
unset($post_type_option[$key]);
}
}
}return $post_type_option;
}add_filter(‘avia_masonry_entries_query’, ‘avia_remove_bbpress_post_type_from_query’, 10, 2);
add_filter(‘avia_post_grid_query’, ‘avia_remove_bbpress_post_type_from_query’, 10, 2);
add_filter(‘avia_post_slide_query’, ‘avia_remove_bbpress_post_type_from_query’, 10, 2);
add_filter(‘avia_blog_post_query’, ‘avia_remove_bbpress_post_type_from_query’, 10, 2);function avia_remove_bbpress_post_type_from_query($query, $params)
{
if(!empty($query[‘post_type’]) && is_array($query[‘post_type’]))
{
foreach($query[‘post_type’] as $key => $post_type)
{
if($post_type == ‘forum’ || $post_type == ‘topic’ || $post_type == ‘reply’)
{
unset($query[‘post_type’][$key]);
}
}
}return $query;
}No it still does not work, i cannot get safari or firefox to show masonry or blog grid
Found out it is just the blog grid that is making it not show. Is there anyway to get the blog grid to work on safari and firefox
-
AuthorPosts