havurattikvah
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Getting rid of dashes before site name on tabs/searchesIf you visit the site, you can see the dashes in the browser tab (at least in Firefox).
Forum: Fixing WordPress
In reply to: Getting rid of dashes before site name on tabs/searchesGoogle search listing:
– Havurat Tikvah
https://www.havurattikvah.org/Want to get rid of the dash before the name.
Forum: Fixing WordPress
In reply to: Getting rid of dashes before site name on tabs/searchesMade it public. See if that works better. Again, I am a real novice right now. Thanks for your patience.
Forum: Fixing WordPress
In reply to: Getting rid of dashes before site name on tabs/searchesForum: Fixing WordPress
In reply to: Getting rid of dashes before site name on tabs/searchesIn case this did not work right, here is the code:
<title>
<?php
if (function_exists(‘is_tag’) && is_tag()) {
single_tag_title(“Tag Archive for "”); echo ‘" – ‘; }
elseif (is_archive()) {
wp_title(”); echo ‘ Archive – ‘; }
elseif (is_search()) {
echo ‘Search for "’.wp_specialchars($s).’" – ‘; }
elseif (!(is_404()) && (is_single()) || (is_page())) {
wp_title(”); echo ‘ – ‘; }
elseif (is_404()) {
echo ‘Not Found – ‘; }
if (is_home()) {
bloginfo(‘name’); echo ‘ – ‘; bloginfo(‘description’); }
else {
bloginfo(‘name’); }
if ($paged>1) {
echo ‘ – page ‘. $paged; }
?>
</title>Forum: Fixing WordPress
In reply to: Getting rid of dashes before site name on tabs/searchesBack at it again. I’ve done a PasteBin thing for you to see what I have now, unedited. I don’t see what you are talking about here, at least I don’t think so.
Any advice on getting rid of the dash in the Google search listing and in the browser tab would be most appreciative.
Thanks.
https://pastebin.com/DAtBuw4UForum: Fixing WordPress
In reply to: Getting rid of dashes before site name on tabs/searchesThere is no dash in the general settings for the site title.
I’d like to send you the code between the title tags. Might be easier for you to see. Not sure if I’m supposed to put it here.
I see dashes there, but not sure if they are supposed to be there or not.Thanks.