Tom
Forum Replies Created
-
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Hide Name field in formWorks like magic ??
Forum: Plugins
In reply to: [Redirection] 410 (Gone) redirect – is it possible?Hi John,
Unfortunately it doesn’t work ?? It still shows 404 page response and there is 404 error passed on to browser actually. I’ve checked it in debug console.
Forum: Themes and Templates
In reply to: [Nirvana] Nirvana Classic LookForum: Themes and Templates
In reply to: [Nirvana] How to remove top barGo to Nirvana Settings->Miscellaneous and add
#topbar {display: none;}
to “Custom CSS” field.
Forum: Plugins
In reply to: [Redirection] Redirection expression for /year/month/ Please?from field: ^/\d+/\d+/(.*) to field: /$1
and Regex box ticked
It will actually look for
/any-number-of-digits/any-other-number-of-dgits/anything-elseand replace it with
/anything-elseIf you want to have exact number of digits between slashes, use
from field: ^/\d{4}/\d{2}/(.*) to field: /$1
Forum: Plugins
In reply to: [Redirection] 410 (Gone) redirection not workingNew update arrived last day but nothing changed according to my question ??
I only want to know if this option for 410 error is valid and this is me who uses it incorrectly? Or maybe it is future-to-do feature and doesn’t work now?
Forum: Plugins
In reply to: [Redirection] change all permalinksAt your service ?? Good luck Elena.
Forum: Plugins
In reply to: [Redirection] change all permalinksOK, I can see what is causing problem ??
Change redirection I’ve shown you before. From field.
instead of: /\d+/(.*)
should be: ^/\d+/(.*)
The only difference is caret character at the beginning. It means, that all comparison should start from the beginning of URL only.
It should help ??
Forum: Plugins
In reply to: [Redirection] change all permalinksDo you use WP SEO by Yoast? and have “Strip the category base” option checked under Permalinks settings?
What you describe happened to me so I do not use this feature. Although permalinks look better but they don’t work well with pagination.
Forum: Plugins
In reply to: [Yoast SEO] Page Analyis Keyword density is 0%@saintandrews
.. yes, it is very weird, counting in its own way and very different Google does.
It looks like Google can skip some words and “glue” consecutive words to get keyword. I no longer rely on this check in WPSEOForum: Plugins
In reply to: [Redirection] how to redirect huge number of links?I have no clue, this is the worst case scenario ??
Maybe what sahityah used would be of any help for you? He said (in this thread) he used “Change Permalink Helper”. I never used it but.. give it a go..
Forum: Plugins
In reply to: [Redirection] how to redirect huge number of links?You can still use post-id instead of postname but the biggest question is: are news id’s (i.e. 10 in news-10.html) of old site, the same as post-id’s in new WP site?
If not, there is no way to fix it ?? unless you have some way to translate old-id to new-id.
This is the main point to consider when migrating from some-script to WP.
Forum: Plugins
In reply to: [Redirection] how to redirect huge number of links?OK.. stay calm.. and breath deeply.. ??
Old news were like
sssddd.com/news-100.html
How about your new-site-news? What are they like?
Is it any consistent way to translate old-to-new? Describe it in words.
Forum: Themes and Templates
In reply to: [Nirvana] Responsive image (size) in Header widgets area@monroecm
What I have is Text widget in Header Widgets area:<p style="text-align: center;"> <a title="Tai Chi dla Firm" href="https://www.taichi.poznan.pl/tai-chi-dla-firm/"> <img class="noframe aligncenter" title="Formu?a TaijiFit dla Firm gwarancj? sukcesu!" src="https://www.taichi.poznan.pl/wp-content/uploads/pictures/formula-taijifit-dla-firm.png" alt="Formu?a TaijiFit dla Firm gwarancj? sukcesu!"/> </a> </p>
Class “noframe” is used only to remove borders, that come with all images.
CSS is like this:
/* responsive header widget area */ #header-widget-area * { display: inline; max-height: 90%; } #header-widget-area p { margin-left: 30%; }
I use Nirvana child-theme so I use separate style.css file.
Forum: Plugins
In reply to: [Redirection] how to redirect huge number of links?Great!