minnellium
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Indenting Subcategories in the Post EditorThanks so much people – you’re all great. Like I said in the original post, I have no idea why this isn’t a core release rather than a plugin… who’d want it any other way?!
Forum: Fixing WordPress
In reply to: Current_page_itemFantastic – about the fifth page I’ve been to trying to crack this one and it worked – you’re a star
Forum: Fixing WordPress
In reply to: Menu – Need “Selected” class for individual pagesI think you need
.current_page_item a:link, .current_page_item a:visited {color: #fff; text-decoration: underline; }or something similar
Forum: Plugins
In reply to: This post is password protected. Magazine BasicThanks happywifenmama – that did it for me !
Forum: Fixing WordPress
In reply to: RSS feed helpI’ve got the “The URL does not appear to reference a valid XML file. We encountered the following problem: Error on line 2: The markup in the document following the root element must be well-formed.” message on Feedburner today too when submitting a totally valid feed with no w
arnings… http://feedvalidator.org/check.cgi?url=http%3a%2f%2fwww.nwcca.org.uk%2fwp-rss2.php –I’m guessing it’s a feedburner issue but am interested to see if anyone else has had this from WordPress?
Forum: Fixing WordPress
In reply to: Can this be done?I use something like this for wordpress stuff to be displayed elsewhere on the domain (in this case, our blog is just used for news) – warning – it’s ugly.
<? $sql="select * from wp_posts where post_status='publish' order by post_date desc limit 10"; $res=mysql_query($sql); $no=mysql_num_rows($res); if($no>0){ while($rs=mysql_fetch_object($res)){ ?> <a href="blog/?<? echo "p=".$rs->ID?>"> <? echo $rs->post_title?> »</a><br /> <? $strcontent=str_replace("Â","",$rs->post_content); $strcon=strpos($rs->post_content,"<a"); if($strcon!=""){ if(strlen($strcontent)>200) { $pos=strpos($strcontent," ",200); $content= substr($strcontent,0,$pos); } else $content= substr($strcontent,0,200); }else{ if(strlen($strcontent)>130) { $pos=strpos($strcontent," ",130); $content= substr($strcontent,0,$pos); } else $content= substr($strcontent,0,130); } ?> <? //echo $content;?> <? } }else{ ?> <p><strong>No News items posted!!</strong><br /> </p> <? } ?>Forum: Fixing WordPress
In reply to: Edit Styles sheetHi Jo
Go to your-url/wp-admin/theme-editor.php and you’ll find the stylesheet there (usually style.css)
You need to ensure in your ftp program that the files are editable – using chmod – set them to 777.
Happy tweaking.
Is it maybe something I can do in wp-incudes/post-template.php?
Anyone ??? Thanks?!!
Forum: Fixing WordPress
In reply to: Gallery images are resizing to zero (wordpress 2.8)Thanks Esmi
It was podpress that was causing this – the second time in a year that it’s brought my site to a standsteill – it’s a really annoying plugin and conflicts with code for thumbnails somehow.
Glad to find the cuplrit anyway! The usual – discable all plugins and reactivate one by one til you catch it out.
Dave
Forum: Fixing WordPress
In reply to: Images in postsWhat’s the site – I may have a similar issue but I can’t tell unless I can see yours
Forum: Fixing WordPress
In reply to: Gallery images all now have width=”0″ height=”0″ in the code?PURLEEEEASE? ANYONE?
Forum: Fixing WordPress
In reply to: Gallery images all now have width=”0″ height=”0″ in the code?I now am a tiny bit nearer but still need help – look at the default when I go to ‘add media’ – 0 x 0 – yet I’ve gone into the media manager and checked and saved default size settings
Screen grab: http://www.minnellium.com/add-media.gifForum: Fixing WordPress
In reply to: Gallery images all now have width=”0″ height=”0″ in the code?Anyone?
Forum: Fixing WordPress
In reply to: How To Make Posts Only On Certain PagesHi
You need to create a category called movies, and make the link at the top a link to that category – not to that page – then you’ll get a listing of everything int he ‘movies’ category.
Hope this helps
Dave
Forum: Fixing WordPress
In reply to: Help WP_Error when saving pagesMany thanks hanzhimeng (Allen!) _ I was getting so depressed reading this thread and I’m so glad things came good when I got to your posts. All working for me now. Thanks.