vkaryl
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: theme with no admin login link?You need to add in the meta section. Look at the default theme sidebar, at the very bottom you’ll see something like this:
<li><h2>Meta</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>
<li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
</li>This needs to go into the bottom of your theme’s sidebar.php, before the closing ul and div tags generally (though that can vary with theme).
Forum: Plugins
In reply to: still cant work out how to insert an imageWell, the second one would always work, if you had the whole path in there like this:
http://temperateminds.com/wp-content/themes/lonely-island-10/images/clouds2.jpg
Odd thing is, you shouldn’t HAVE to hard-link it. But try it to see.
Hmmm. Just tried loading it in my browser, and it’s not finding the image there either. So not sure what’s happening here….
Forum: Plugins
In reply to: still cant work out how to insert an imageUh. No need to go THAT far! A small bash of head upon desk will be sufficient….
Forum: Themes and Templates
In reply to: resizing default theme*snicker* No prizes, though!
Forum: Installing WordPress
In reply to: Earthlinkdefault ?# sort of permalinks – the wordpress default, which a lot of people don’t like because it’s not “pretty”, and while I think there’s no downside with SEs, others think there is. It usually shows a page or post number with that question mark in the address bar.
Real hosting is a company which is in business to JUST PROVIDE HOSTING. And I do NOT include godaddy or yahoo in that category.
Real hosts are like a small orange, or bluehost, or network redux; not verizon, not earthlink, not even wildblue. The latter 3 are ISPs and they should stay there.
I have no clue about mysql:pivot. Can’t help you with that.
Forum: Plugins
In reply to: still cant work out how to insert an imageOkay, it’s looking for that image here:
http://temperateminds.com/index/clouds2.jpg
But your images folder is here:
http://temperateminds.com/wp-content/themes/lonely-island-10/images/
So you need to upload the clouds.jpg image to that folder, and then use this to display it:
<img src=”/images/clouds2.jpg” alt=”Clouds” />
Forum: Plugins
In reply to: still cant work out how to insert an imageA link would be most helpful….
Forum: Fixing WordPress
In reply to: Help…Please see this great tutorial: http://tamba2.org.uk/wordpress/site-url/
Forum: Plugins
In reply to: Plugins and Widgets not workingThe sidebar widgets screen is found under the presentation menu for your theme – assuming the theme has been widgetized.
Forum: Your WordPress
In reply to: My New Design – Opinions?Oh, VERY nice! My gosh, what a yummy site (literally AND figuratively)!
Must have cut the number of posts – loaded almost instantaneously for me on wildblue low-end satband.
Forum: Themes and Templates
In reply to: How to add Drop Caps to your PostsNice! Just out of idle curiosity, what’s “upgraded CSS template”?
Oh – I see, you’re talking about the wordpress.com hosted version….
Forum: Fixing WordPress
In reply to: Using TagsYou have a quicktag button for More (in the real editor), and a button for same in the RTE, on the post and edit screens.
You might like to check out the “sociability” sorts of plugins: Plugins – there’s one each for technorati and delicio.us, and a search through the Miscellaneous Post section will turn up Social Bookmarking and others. There’s also Ultimate Tag Warrior from
http://www.neato.co.nz/ – which *may* be the simplest to use, though I’ve been seeing some posts here that seem to indicate there are some recurring unsolved bugs at the moment.Forum: Fixing WordPress
In reply to: span-ified bold/italicI guess you could disable the RTE, use the real editor and see if it does the same thing (I don’t think it does….)
Forum: Fixing WordPress
In reply to: Where do you submit comments for a Page?Sorry, I don’t know anything about that. Seems like there might be a plugin or two to help manage that; you might try the repositories listed here: Plugins or search the forum for keywords like “keep code formatted” or some such (keeping in mind that the search function is based on crap yahoo search).
Forum: Fixing WordPress
In reply to: Where do you submit comments for a Page?Does your Page template (usually page.php unless you’ve made a custom template) include the following:
<?php comments_template(); ?>and
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>If not, you can either look over the index.php and put them into your Page template in the same places, or simply delete page.php, at which point wp will use index.php for the Page template. More info: Template_Hierarchy