Copywrite
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to find out domain from mysql databaseFound out how to do it search for siteurl in the sql there it shows you what domain it is for
Forum: Themes and Templates
In reply to: Can I delete classic and default theme folders?Thanks
Forum: Themes and Templates
In reply to: How can I get three different designs for page.php?No! Have now and it works great thanks!
Forum: Themes and Templates
In reply to: How can I get three different designs for page.php?I saved a new design for a page and called it page2.php uploaded it to my theme. Then on the edit Page screen it can’t find the page in page attributes. I think I have to make the php page a design or something? Thanks
Forum: Themes and Templates
In reply to: How can I get three different designs for page.php?Thanks I’ll try it out ??
Forum: Themes and Templates
In reply to: How can I get three different designs for page.php?Thanks keeisiemeijer at the moment I have a very simple page.php so to use the custom page template I just save it as another name and then I can change the code? How can it be changed in the wp-admin? Thanks
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Themes and Templates
In reply to: Getting rid of "Comment on" text that appears when mouse overWill I have to look for the comments_popup_link function?
Forum: Themes and Templates
In reply to: Where to add code in functions.php to remove meta tagFound out, it’s after the opening php tag (I don;t know if this is correct but it works)
Forum: Fixing WordPress
In reply to: WordPress keeps on refreshing when writing a post driving me madI am using firefox. I think I may be a plugin I am suing to get picture based on the post. I will check out revision autosave. Thanks Ipstenu!
Forum: Installing WordPress
In reply to: Uninstalling -just making sureThanks MBrSolution ??
Forum: Themes and Templates
In reply to: Where to change title on category linksI worked it out, I didn’t have Description in the category, I added it and hay presto it now works. Thanks Christine!
Forum: Themes and Templates
In reply to: Where to change title on category linksThanks for the reply Christine, I found this in my sidebar I think it may be the answer?
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
It doesn’t appear on the first category link only appears on the rest (I only have two more categories)
Forum: Themes and Templates
In reply to: Show different css depending on if index or notThanks!
Forum: Themes and Templates
In reply to: Sidebar – widget adding cssYes thank you
Forum: Themes and Templates
In reply to: Sidebar – widget adding cssThanks that was very useful I just didn’t understand where it was coming from. I have now got rid of all the garbage formatting and left it like this:
if (function_exists('register_sidebars')) { register_sidebars(1, array( 'before_widget' => '<div id="%1$s" style="width:250px;float:left;">'.'<!--- BEGIN Widget --->', 'before_title' => '<!--- BEGIN WidgetTitle --->', 'after_title' => '<!--- END WidgetTitle --->', 'after_widget' => '<!--- END Widget --->'.'</div>' )); }