Hi,
I’m using an icon box and i’m trying to link the title to one of my pages, but in the list i see only few of my pages, not all of them. What can i do? I can use an exlicit link, but i’m trying to understand it.
Regards,
Mirela
Hey Mirela!
That’s unexpected, are you sure those Pages are published? if you want us to check it please create an administrator account and post it here as a private reply.
Best regards,
Josue
Hi,
My site is multilingual and I think that my problem is with the WPML plugin.
Best Regards,
Mirela
Hi!
Our theme will strip all posts/pages of the other languages by default and you’ll only see the entries of the current selected language in the dropdown/select box. If you want to show all pages insert following code at the bottom of functions.php
add_action( 'init', 'avia_deactivate_wpml_page_filter', 10);
function avia_deactivate_wpml_page_filter(){
remove_filter( 'avf_dropdown_post_query', 'avia_wpml_filter_dropdown_post_query', 10, 4);
}
Cheers!
Peter