hi from munich, since a few days, the VRYN Restaurant Theme do not work anymore.
if I deactivate the line wp_dequeue_style( ‘sixteen-main-style’ ); in the
the function vryn_restaurant_styles() {
many of the things are working again. but not all.
best, thomas
]]>After encountering problems with the static front page at https://micuisine.com/firsttasteofmichigan/ generating an empty title tag, I added the following to functions.php to fix the issue:
function vryn_restaurant_wp_title( $title, $sep ) {
if ( is_feed() ) {
return $title;
}
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
$title .= " $sep $site_description";
return $title;
}
add_filter( 'wp_title', 'vryn_restaurant_wp_title', 10, 2 );
]]>
Hi,
I study web design and I chose this beautiful theme for my college project but I could not figure out how I can make the header(or logo) clickable. ?? I can’t see the img src in the header.php. I ‘m a beginner so it might be a silly question, but could you help me with that, please?
Thanks a lot!