Firas
Forum Replies Created
-
Forum: Plugins
In reply to: WP-ContactForm ProblemDoes it say <!– Contact Form –> in the source still? It’s probably another plugin interfering.
Forum: Fixing WordPress
In reply to: remove HTML-markup from RSS: any suggestions?Ahh, yeah. It depends on what one things RSS should do (ie., what sort of information it should contain), I guess.
Forum: Fixing WordPress
In reply to: remove HTML-markup from RSS: any suggestions?Kafkaesqui, I don’t quite understand what there is to disagree about–how are you going to link to things in RSS item content sans HTML?
Forum: Fixing WordPress
In reply to: Most popular WordPress blogs?[01:48] <photomatt> blogs.download.com, blogs.zdnet.com
Forum: Fixing WordPress
In reply to: Most popular WordPress blogs?Podz, it’s pretty clear, what’s odd about it? The most popular WordPress blogs on the net run Movable Type, still.
Forum: Fixing WordPress
In reply to: WordPress leaving droppings?You can put your code at https://phpfi.com
What theme are you using, and does it have its own comments.php?
Forum: Fixing WordPress
In reply to: remove HTML-markup from RSS: any suggestions?HTML is the format you’re writing your content in. You need the html to be in your rss feed so paragraphs break properly, lists show as lists, images show up, etc in aggregators. This will not affect search engines, but removing html tags might make your syndicated feed readers miserable.
Forum: Themes and Templates
In reply to: Default Template RSS Broken- PLEASE HELPYou gotta change that part in your templates if you don’t want to send it to a program that reads feed:// URIs.
Forum: Fixing WordPress
In reply to: RSS question re WP via midPhaseYou have permalinks on and you haven’t edited htaccess which is why your post links, rss links etc are 404.
To see .htaccess, make sure your FTP client is set to show hidden files, and if it’s still not there, make a file called “.htaccess” and put in the the directory /weblog. Edit it as a normal text file.
And yeah, to edit the outputted page’s html you’ll need to edit index.php… you can add stuff to it just like you would in html, just be careful to add html outside the
<?php ?>
parts.Forum: Fixing WordPress
In reply to: End of month front page clearing. Possible?sorry, it’s
<?php if(is_home()) { if(get_the_time('n') != date('n')) { break; } } ?>
Forum: Fixing WordPress
In reply to: End of month front page clearing. Possible?What it does is, inside the loop, it says:
If this is the front page,
If the current post’s month is not equal to the current month on the server,
Exit the loop.There are probably many other ways to do the same thing, and probably more elegant, but this is easy to copy/paste ??
Forum: Fixing WordPress
In reply to: End of month front page clearing. Possible?Find the part in your code where it says
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
Just under that (i.e., the next line) add:
<?php if(is_home) { if(get_the_time('n') != date('n')) { break; } } ?>
Forum: Everything else WordPress
In reply to: Mail List for THIS forumthe feed is at https://www.ads-software.com/support/rss
Forum: Everything else WordPress
In reply to: Mail List for THIS forumForum: Fixing WordPress
In reply to: SimpleHost and WP–Anyone else not able to see their site tonight?All the things you could check yourself are provided in that error message; if you’re sure you have the right username and password then ask your host whether the mysql server is down.