soasmw
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] CSS Minification for PageSpeed OptimizationThanks for the reply Direnk.
I tried this tool, but it returned a 500 error. So, I tried CSSTIDY. But that did not do any help.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Contact form 7 checkbox checked by default?Is it supposed to be entered in the Additional Settings box?
Forum: Themes and Templates
In reply to: Blog Title not appearing in browser barNow I have both the site title as well as the page title displaying. Perhaps because I am using wp_title() and bloginfo() together. Any improvements to this code?
Forum: Themes and Templates
In reply to: Blog Title not appearing in browser barThat did not work, then I tried this:
<title>
<?php if (is_home ()) { bloginfo(‘name’); ?> | <?php bloginfo(‘description’); ?> }
else
{ <?php wp_title(‘ | ‘, true, ‘right’); ?> }</title>
But there is some syntax error.
P.S: I am a beginner in coding.
Forum: Themes and Templates
In reply to: Blog Title not appearing in browser bar@jacenty3590, that worked for the posts.
However, the homepage now shows that static page title instead of the site title. How can I get it to show the site title?
Forum: Themes and Templates
In reply to: Blog Title not appearing in browser barSorry for incomplete post.
I tried replacing the <title> tag with many options, but they did not work.