Hi, i’m having problems with three things…
1- Avia framework debug mode finally works, but i added a few lines of code in functions.php (register some shortcodes) and the debug mode dissapears again… i need to have to versions of the php file to activate the debug mode when i need it.
2- I’m trying to create custom types. I’ve installed a few plugins to make this, but with all of them, avia framework dissapears… what i have to do to activate the framework in custom types?
3- The main logo of the site appears with low resolution on iphones, ipads, etc… (2x). I didn’t find an option to upload a double sized logo to avoid this.
Thank you very much in advance
Hey vergara!
1- Do you mind creating a temporary admin login and posting it here privately?
2- Please see – http://kriesi.at/documentation/enfold/use-the-layout-builder-with-any-post-type/
3- Please add following code to Functions.php file
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
if(wp_is_mobile() )
{
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
return $logo;
}
Cheers!
Yigit