aramaz
Forum Replies Created
-
Forum: Plugins
In reply to: Case insensitive passwords ONLY on password protected pages?I managed to solve this by using the add_filter function in the theme functions file and making my own post_password_required function that transforms the entered password to uppercase and checks whether it matches the uppercase password I set for the page.
Relevant Codex pages:
add_filter()
post_password_required()I am actually adding a noindex on these posts with some php code, but it’s still showing up on google even though the meta tag is there.. but the redirect plugin is not a bad idea. Will redirecting hurt SEO?
@agelonwl – I’ve checked the settings, I don’t even use any links and instead use #_NAME and similar tags.. the single event and location pages are getting generated anyway. Any ideas?
Thank you, I will try this suggestion.
Forum: Fixing WordPress
In reply to: Linking a featured image to a different WP pageDoh, that was simple. I ended up using the custom fields underneath the post:
- first I named the custom fields “featured”
- then I entered the url I wanted into the “Value” box
- I then used the get_post_meta function to reach the URL and insert it into the theme (check example in the codex page for similar code).
If you don’t see the custom fields section underneath the post, clickon Screen Options on the top of the page and turn them on there.
Forum: Fixing WordPress
In reply to: Moving the WordPress site from a directory to rootWow, that worked flawlessly! Thanks again!
Forum: Fixing WordPress
In reply to: Moving the WordPress site from a directory to rootThanks! So this will make every page lose the /site part from the URL, right?
Forum: Fixing WordPress
In reply to: Moving the WordPress site from a directory to rootesmi – is the other point (Using a pre-existing subdirectory install) what I need? I don’t understand something from there – if the initial address was example.com/wordpress why does it, under point 7, say this:
Login to the new location. It might now be http://example.com/wordpress/wp-admin/
/wordpress/ was the initial directory to begin with, so why is it new?
Also, with this method, do I lose the /site/ directory from the url for the homepage, subpages etc.? It mustn’t show up anywhere.