Categories
Website design
- Smashing Magazine Design and web-development – useful information, latest trends and techniques, useful ideas, innovative approaches and tools.
Tag Archives: Website design
WordPress Tutorial – Remove the Word “Protected:” from Title Text of Password-protected Pages
Remove the word “Protected:” from title text of password-protected pages.
Big thanks to t31os on the WordPress forums. Check out t31os’s site for more WordPress tips.
The following filter function code is placed in the functions.php file, this way it doesn’t accidentally get replaced when WordPress is upgraded.
<?php
function the_title_trim($title)
{
$pattern[0] = ‘/Protected:/’;
$pattern[1] = ‘/Private:/’;
$replacement[0] = ”; // Enter [...]
Posted in Website design, WordPress, WordPress tutorial Also tagged WordPress, WordPress tutorial 1 Comment
Magento Ecommerce – Removing index.php Text from URL
http://www.magentocommerce.com/boards/viewthread/4761/
Example:
So instead of this: http://www.domain.com/INDEX.PHP/category
I get this: http://www.domain.com/category
Website Design – Zen Cart Ecommerce Integration – HolidayHope.net