News Blog V 1.0
for osCommerce Online Merchant v2.2
This contribution is sort of a news blog. You can make new articles from the admin section of Oscommerce. Users can add comments to your articles. You have complete editing control in the admin section.
Every article is sorted by date in the store and the admin section. I used the mysql SELECT DISTINCT function to sort the dates. It has a static automatic RSS feed function. When you write a new article all you have to do click "Create RSS" and your done. Users will always be up to date. See the preview pics in the preview folder.
Support Thread:
http://forums.oscommerce.com/index.php?showtopic=246811
Legend: 
Download

Report
News Blog V 1.4 +
Added box with news in the column
Added russian translation
So I think that I can name this package as new version, so it's News Blog V 1.5
masukan script ini di catalog/includes/functions masukan sebelum ?>
//BOF:cuplikArtikel
function cuplikArtikel($konten,$url)
{
$maxKata=BANYAKNYAKATA; //max kata dalam cuplikan artikel --> silahkan diganti sesuai kebutuhan
$pecahArtikel=explode(' ',$konten); //pecah artikel menjadi array of string
if(count($pecahArtikel) > $maxKata)
{
$cuplik='';
for($a=0;$a<$maxKata;$a++)
{
$cuplik.=$pecahArtikel[$a]." " ;
}
echo"$cuplik . . . .<br><a href=$url>";
echo SELENGKAPNYA;
echo " » </a>";
}
else
{
echo $konten;
}
}
//EOF:cuplikArtikel
You can rearrange the code in news.php to strip HTML first, then trim the subtitle to length (the code currently strips HTML after, leaving short subtitles):
Around line 302 in my news.php, change 2 lines to:
<td class="main" colspan="2"><?php $content = substr(strip_tags($listing['content']), 0, NEWS_CHARACTERS);
echo $content;?>....</td>
All that I've done is to move the strip_tags function so that the substr function operates on plain text.
This has a fix for the invalid RSS feed.
Update V 1.4: Replace the /catalog/rss.php with yours.
Full Contrib
Also added an RSS link you can see in the url bar when someone comes to your page.
Full Contrib
I have fixed support for multi languages. Adding articles looks and works the same as adding product names and descriptions.
I have also fixed a couple of other problems. Updated previews inside package.
Full Contrib
I have added an update for Language id's. You can now change them in the admin.
Update Instructions
Full contrib
I have added:
Multi-Language support
Anti-spam
Admin reply approval
Reply Notification
Admin Configuration
I have changed the static rss into a dynamix one for the language support.
Full Contrib
This contribution is sort of a news blog. You can make new articles from the admin section of Oscommerce. Users can add comments to your articles. You have complete editing control in the admin section.
Every article is sorted by date in the store and the admin section. I used the mysql SELECT DISTINCT function to sort the dates. It has a static automatic RSS feed function. When you write a new article all you have to do click "Create RSS" and your done. Users will always be up to date. See the preview pics in the preview folder.
Support Thread:
http://forums.oscommerce.com/index.php?showtopic=246811