Class
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Completely separate theme for Internet ExplorerMaybe you can use
<?php bloginfo(); ?>in some creative way here?Forum: Everything else WordPress
In reply to: screwed up wordpress by making changesMaking backups before editing core files is usually a good idea 🙂
Can’t you just copy the original files back?Forum: Everything else WordPress
In reply to: Stealing ContentUsing a short exerpt(SP?) is ok IMO, with a link to the site they got the content from. Keyword here is short.
I see plenty sites quoting full stories from others, that’s just wrong.Forum: Your WordPress
In reply to: ip addressOpen a command prompt (if using windows: Start –> Run –> CMD).
Typeping DOMAINNAME.com, that’s the IP adress.Forum: Requests and Feedback
In reply to: Tips for integrated Forum?Well, it’s kinda hard to “hide” something on the internet that should be accessible to some 🙂
Maybe you can just use PHPBB or something and set permissions so that only registered members can read/write?Forum: Fixing WordPress
In reply to: .htaccess and meta tagsWhy would you put META tags in .htaccess?
Perhaps you could use header.php instead, I do.Forum: Fixing WordPress
In reply to: Completely separate theme for Internet ExplorerNot sure about this, WP may loop if but maybe you can set a variable, like browserChecked=”yes” to prevent a loop?
Forum: Fixing WordPress
In reply to: Completely separate theme for Internet ExplorerHm, I did this a long time ago with a blog I made myself but can’t remember how. Maybe a redirect would work?
php check blabla, <meta http-equiv="refresh" content="1;URL=msiefolder..">.Forum: Fixing WordPress
In reply to: Completely separate theme for Internet ExplorerUse PHP to check browser, if MSIE { use theme/msie} …
Forum: Themes and Templates
In reply to: Change hardcoded English translations to Greek in Blix themeYeah, Wordpad isn’t a “plain” text editor, it (can) save control characters in your documents.
In addition, I guess you need to use the “HTML” versions” of the Greek letters.
http://www.w3.org/TR/REC-html40/sgml/entities.htmlForum: Themes and Templates
In reply to: Newbie looking for good Photo Video themeIt sounds like you’re looking for plugins rather than theme perhaps.
Check the “Extend” link on top of this page.Forum: Installing WordPress
In reply to: Swedish languagejea: one post per topic please 🙂
Check your other thread.Forum: Installing WordPress
In reply to: Language changeI have define
('WPLANG', 'nb_NO');for Norwegian in mywp-config.phpand my language file is callednb_NO.mo.Forum: Fixing WordPress
In reply to: Getting link cat. names to displayDo I understand you correctly, you want links to listed under their categories?
Maybeget_linksbynamewith the right parameter would do the trick?
http://codex.wordpress.org/Template_Tags/get_linksbynameForum: Installing WordPress
In reply to: Swedish languageDid you find the Swedish language file?
Upload it to wp-includes\languages?
Set thedefine ('WPLANG', 'se_SE');(might not be correct syntax for Swedish) in wp-config.php?