nmcleish
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Vantage] PHP Deprecation Notice: dynamic propertiesGood morning Andrew. Thanks for the info. I will try that.
Many thanks
Forum: Themes and Templates
In reply to: [Vantage] PHP Deprecation Notice: dynamic propertiesHi @misplon Andrew. Apologies for the delay in replying.
I have version 1.6.4 (using a child theme)Many thanks
Forum: Themes and Templates
In reply to: [Fukasawa] Make mobile show a single columnI have sorted this now.
I needed to put a breakpoint (actually, a couple for different screen widths) into the Customizer Additional CSS and target the selectors very specifically.
e.g.
@media screen and (max-width: 400px) {
div#posts.posts>div.post-container {
width: 240px!important;
}
}I hope this helps others achieve a similar result.
Perfect!
Thank you, Anders, for such a fast response.
I am creating a site for my wife’s illustration portfolio and your theme works really well for it.Thank you again, and best wishes for the festive season.
Neil.
Forum: Plugins
In reply to: [Block Gallery - Photo Gallery Gutenberg Blocks] installationMe neither. After installation (using theme Twentytwenty) absolutely nothing happens. There is nowhere in my post to convert a gallery that I have just created.
I suspect this plugin is broken, not least because there is zero documentaiton about it. The FAQ site is nothing more than an advert; it has no instructions and no useful content.Very poor.
Thanks Ken!
🙂Forum: Themes and Templates
In reply to: wp_title showing markup tagsHi esmi.
Thanks for your response.
I can’t see anywhere in the functions.php file which modifies the title.The header file contains the code below and I can’t see where the issue might be.
What I do know is that in the content of the page itself, the page heading is repeated (where it says Hairdressing Apprentice…) and that span is applied to that. So it looks like that is being picked up and carried to the title somehow.
Here’s the title tag code in the header.php file, if it sheds any light on it?
Thanks in advance for you advice, it is appreciated.<title><?php /* * Print the <title> tag based on what is being viewed. */ global $page, $paged; wp_title( '|', true, 'right' ); // Add the blog name. bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) ); ?></title>As you can see it is a spawn of the twentyeleven theme.
All the best,
Neil.