wealthontap
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Current Page ItemThanks that did the trick, I thought that’s what I had originally, I guess not.
Forum: Plugins
In reply to: SimplePie PluginNever mind I needed to use…
<?php $current_tag = single_tag_title("", false); ?>
…to return the value into a variable.Forum: Plugins
In reply to: Remove domain from get_permalinkTurned out to be quite easy
$plinkurl = get_permalink(); $plink = substr($plinkurl,23);Forum: Plugins
In reply to: Remove domain from get_permalinkJust to be cealr rather than inserting ‘domainname.com/some-page’ I would like it to just retun ‘some-page’
Forum: Fixing WordPress
In reply to: Loading URL of Blog Into VariableI got it to work using this code
$url = $_SERVER["HTTP_HOST"];Forum: Fixing WordPress
In reply to: Loading URL of Blog Into VariableThanks for your help I get this error when I try that code Couldn’t resolve host ”.get_settings (‘home’)”
I tried it like this
$domain = “echo get_settings(‘home’)”; and I get the error message name lookup timed outForum: Themes and Templates
In reply to: Categories in Page TitleNever mind I found this plugin which does the trick.
Forum: Fixing WordPress
In reply to: Can’t Upload Files and Unusual ErrorNo I actually typed .htaccess into my post as I was writing a post about permalinks.
I have sorted it though, it turns out that my host hadn’t turned off mod security on the correct folder. Weird about the .htaccess thing though.
Forum: Plugins
In reply to: Have an idea for a plugin?I would also like a plugin which scans through your posts for certain keywords and allows you to convert them into links by assigning certain URLS automatically. So basically you would enter a list of keywords with a URL associated to each one and it would go through all existing posts and convert them to links as well as any new posts.
Forum: Plugins
In reply to: Have an idea for a plugin?I am not sure how many others would like this plugin however I would like a way to split long posts into several pages. I know you can add the nextpage tag to a post but I would prefer an automated way of doing this.
For example when your post reaches a certain number of characters create a next page.
The built in nextpage tag doesn’t work well either, it seems to mess up my layout.
Forum: Plugins
In reply to: Multiple Page For Long Post PluginPersonally I think it makes much more sense than manually adding page breaks. Firstly because you could have each page break at the same place on all of your posts rather than trying to guess, secondly it’s quicker, and thirdly if you have a blog with tons of posts already it would be nice to be able to add this feature rather than having to go through all existing posts and add page breaks.
Forum: Plugins
In reply to: Multiple Page For Long Post PluginThats what I meant by doing it manually. That tag doesn’t really work that well on my blog for some reason either.
Perhaps I could add some code to my single.php file of my theme to somehow split up each post automatically.
There are other plugins that automatically add certain things inside posts so I am sure it can be done it’s just a matter of how complicated it is I guess.
Thanks for your help though.
Forum: Themes and Templates
In reply to: Sidebar IssuesNo I am afraid that didn’t work either. It’s strange how the CSS works fine on my home page in both browsers but as soon as I try and incorporate it into the Sandbox Theme it doesn’t work. Thats why I thought perhaps it’s the way the theme has been coded. Unfortunately Scott is not replying to my emails.
Forum: Themes and Templates
In reply to: Sidebar IssuesOk well it’s getting closer although I still have the same problem with the two sidebars aligning on one side instead of either side of the content. Maybe it’s just the way Scott has coded the theme? New screen shot http://www.wealthontap.com/images/screenshot.gif
Current code
div#wrapper {width: 922px; margin: 10px auto} div#main {width: 922px; float:left} div#content { width: 456px; float:right; color: #333; border: 1px solid #ccc; background: #F2F2E6; } div.sidebar { background: #E7DBD5; border: 1px solid #ccc; width: 195px; } div#primary {float: left} * html div#primary { left: 20px; position: relative; } div#secondary {float: right} .clear{clear:both} * { padding: 0; margin: 0; }Thanks again for all your help hopefully I can figure this out soon.
Forum: Themes and Templates
In reply to: Sidebar Issueshmmmm well that placed the content in the middle and the sidebars either side although the sidebars and the content box detached themselves from the header. See screenshot http://www.wealthontap.com/images/screenshot.gif