trinifiedscom
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Links become downloads in SafariLocally. But there doesn’t seem to be a way to do this in OSX though. Try getting someone with Safari to test it out on their system. Maybe your install of Safari is borked?
I don’t have Safari to help you test. Sorry.
Forum: Fixing WordPress
In reply to: Extra Pages For Categories Not Working – Is Theme Faulty?Are there older posts to start with?
Forum: Fixing WordPress
In reply to: Archives and Search Engines?Search engines will still see ALL your posts regardless of the length of your LOOP
Forum: Fixing WordPress
In reply to: Suffusion Theme Sidebar Issue when using amazon text widgetDoes it only happen with a text widget?
Does it only happen with affiliate code?Forum: Fixing WordPress
In reply to: How do i add picture to moderator profile?In WP-admin
users -> Authors and Users -> Select the account you want -> Upload photo -> Update User
Forum: Fixing WordPress
In reply to: Limiting Front Page to posts from Current DayJust curious, what shows on the page if there are no posts for the day?
Forum: Fixing WordPress
In reply to: adding Amazon a-store to sidebarAs samboll said create a new ‘text’ widget and paste your Amazon a-store code in there. It’ll show up in the sidebar.
You may need to tweak your A-store to get it to match your theme and fit the sidebar. Good luck!
Forum: Fixing WordPress
In reply to: Google doesn’t index my last post.It takes a while for Google to index pages. Even if you created backlinks because Google need to index them too 😉
Be patient, it’ll show up 😀
Forum: Fixing WordPress
In reply to: Next page link not validMy site is not in the root of the web server but I editted the database tables in two places to tell the installation the exact location of my WP files.
That seems to be the source of your problem. There is a setting I believe that allows you to do that in WP admin
Forum: Fixing WordPress
In reply to: Links become downloads in SafariWorks fine in Firefox 3.5
I suspect you need to check the mime settings for php in Safari but I could be wrong..Forum: Fixing WordPress
In reply to: single.php ??Colors, fonts etc are usually defined in the styles.css file. You then make reference to these “styles” in the index.php or single.php
I would suggest you take a little course in CSS. Do a Google search and you’ll find everything you need. Good luck!
Forum: Fixing WordPress
In reply to: the_excerpt outputs extra informationBump! Can a knowledgeable person help us out with this?
Forum: Plugins
In reply to: Custom comment fieldsThanks, but that plugin does not work for 2.8.4 🙁
I guess I will look out for it in 9
Forum: Plugins
In reply to: how to limit users in role manager to post in just ONE category?When you say ‘everything’ do you mean all their posts or all posts? If it’s all posts there is a problem because contributors should only be able to edit their posts.
Forum: Themes and Templates
In reply to: hyperlinks in themes aren’t showing properlyYou should really try to learn CSS it will make your life 100% easier.
here is the CSS code for links
<style type="text/css"> A:link {text-decoration: none} A:visited {text-decoration: none} A:active {text-decoration: none} A:hover {text-decoration: underline; color: red;} </style>It should be pretty explanatory. Basically CSS is like paint to a canvas (raw Html).
see http://www.csszengarden.com/ for the real power of CSS