Posted
7 days
ago
New ixt02302 theme by IXThemes
Characteristics
1. Three columns layout
2. Fixed width 1000px
3. ZIP package size 563.87K
4. XOOPS 2.3.x and XOOPS 2.4.x compatible
5. Scroll zone for YOURS PROMO slides
6. Extended
... [More]
Footer zone for system, modules and customable blocks
7. The safe loader JQuery 1.3.2 through browse.php (in XOOPS 2.4.x)
8. The Themes package in 4 archive formats (ZIP, GZ, BZ2, 7Z)
Links
Download | Support |
Demo on XOOPS 2.3.3 |
Demo on XOOPS 2.4.0 | Demo on XOOPS 2.4.1 | Demo on XOOPS 2.4.2
Regards,
IXThemes Project [Less]
Posted
7 days
ago
Sinnedesign is happy to present the FREE XOOPS Theme with the name Sd-056-Green-Autumn.
Here can you find the XOOPS Theme Demo, here the XOOPS 2.4 Theme Demo and here is the free Download Xoops Theme Sd-056-Green-Autumn.
Have Fun with free Theme.
Posted
7 days
ago
New ixt02301 theme by IXThemes
Hi,
I'm pleased to announce the new XOOPS theme ixt02301.
Characteristics
1. Three classic columns layout
2. Fixed width 1000px
3. Red color
4. XOOPS 2.3.x and XOOPS 2.4.x
... [More]
compatible
5. Scroll zone for your slides
6. Extended Footer zone for 4 blocks
7. JQuery switch (embedded for 2.3.x or self core for 2.4.x)
Links
Download | Support | Demo on XOOPS 2.3.3 | Demo on XOOPS 2.4.0 | Demo on XOOPS 2.4.1 | Demo on XOOPS 2.4.2
Best regards,
IXThemes Project [Less]
Posted
7 days
ago
Hi everybody!
I'm proud to present you my new XOOPS website:
www.Zengclub.com
(Linux and Windows Italian how-to).
- Xoops 2.4.1
- Membership
- xForum
- Publisher
- XOOPS TAG
-
... [More]
WF-Downloads
- cumulus
- My tabs
- Zina <--- http://www.zengclub.com/modules/zina beta 1.8
Enjoy it! [Less]
Posted
8 days
ago
Trabis recently updated some of his modules to take advantage of the new features of XOOPS 2.4.x, like the Preloads.
My Inviter 1.0
My Tabs 2.2
My Points 1.0
Defacer 1.0 Final
Posted
9 days
ago
The German support has been given a new page.
XOOPS 2.4.1 was used with some well-known modules.
The theme is from our user Bleekk.
We would appreciate a visit.
The team of myXOOPS
http://www.myxoops.org
Posted
9 days
ago
The Websites are quite often criticized that the authors of programs or other systems do not consider a different language than their own. So different numbers are displayed correctly in the original language, but in other languages they appear
... [More]
strange.
For example, if the original module is able to distinguish only one or more comments, it's a problem, as the translation results in: "Pocet komentaru: 3" instead of the correct "3 komentare" (Examples are given for the Czech language).
For my server, I adjusted the News module as follows:
File language/YOUR_LANGUAGE/main.php:
define("_NW_NUMCOMMENTS","%s komentare");
change to:
define("_NW_NUMCOMMENTS2","%s komentare"); // 2 - 4 comments
define("_NW_NUMCOMMENTS5","%s komentaru"); // more than 4 comments
File class/class.newsstory.php:
if (XOOPS_COMMENT_APPROVENONE != $xoopsModuleConfig['com_rule'])
{
$ccount = $this->comments();
$morelink .= '<a
href="'.XOOPS_URL.'/modules/news/article.php?storyid='.$this->storyid().'';
$morelink2 = '<a
href="'.XOOPS_URL.'/modules/news/article.php?storyid='.$this->storyid().'';
if ( $ccount == 0 )
{
$morelink .= '">'._NW_COMMENTS.'</a>';
}
else
{
if ( $fullcount < 1 )
{
if ( $ccount == 1 )
{
$morelink .= '">'._NW_READMORE.'</a> | '.$morelink2.'">'._NW_ONECOMMENT.'</a>';
}
else
{
$morelink .= '">'._NW_READMORE.'</a> | '.$morelink2.'">';
$morelink .= sprintf(_NW_NUMCOMMENTS, $ccount);
$morelink .= '</a>';
}
}
else
{
if ( $ccount == 1 )
{
$morelink .= '">'._NW_ONECOMMENT.'</a>';
}
else
{
$morelink .= '">';
$morelink .= sprintf(_NW_NUMCOMMENTS, $ccount);
$morelink .= '</a>';
}
}
}
}
change to:
if (XOOPS_COMMENT_APPROVENONE != $xoopsModuleConfig['com_rule'])
{
$ccount = $this->comments();
$morelink .= '<a
href="'.XOOPS_URL.'/modules/news/article.php?storyid='.$this->storyid().'';
$morelink2 = '<a
href="'.XOOPS_URL.'/modules/news/article.php?storyid='.$this->storyid().'';
if ( $ccount == 0 )
{
$morelink .= '">'._NW_COMMENTS.'</a>';
}
else
{
if ( $fullcount < 1 )
{
if ( $ccount == 1 )
{
$morelink .= '">'._NW_READMORE.'</a> | '.$morelink2.'">'._NW_ONECOMMENT.'</a>';
}
else
{
if (( $ccount >1 ) && ( $ccount <5))
{
$morelink .= '">';
$morelink .= sprintf(_NW_NUMCOMMENTS2, $ccount);
$morelink .= '</a>';
}
else
{
$morelink .= '">';
$morelink .= sprintf(_NW_NUMCOMMENTS5, $ccount);
$morelink .= '</a>';
}
}
}
else
{
if ( $ccount == 1 ) {
$morelink .= '">'._NW_ONECOMMENT.'</a>';
}
else
{
if (( $ccount >1 ) && ( $ccount <5))
{
$morelink .= '">';
$morelink .= sprintf(_NW_NUMCOMMENTS2, $ccount);
$morelink .= '</a>';
}
else
{
$morelink .= '">';
$morelink .= sprintf(_NW_NUMCOMMENTS5, $ccount);
$morelink .= '</a>';
}
}
}
}
}
Modification work will begin immediately, but if you have enabled the cache, it needs to first be erased, otherwise the change will take effect after the flush.
This hack is tested on Xoops 2.4.1 with News module version 1.63
And as always, finally talk about modifying the system: before any treatment can make backup copies of the original files. You never know what can go wrong where.
And that's all [Less]
Posted
10 days
ago
Croatian non profit organization KNEJA (http://kneja.hr) has made an educational environmental web site for kids: http://pikaiprijatelji.com. Site is do-it yourself manual on sustainability in practice. Under the hood is Xoops 2.41 and Mastop Publish
... [More]
which is a most powerful module for Xoops at this moment (for static pages)! Site is completely on Croatian. Thank's to all Xoops developers! [Less]
Posted
11 days
ago
Hi everybody!
I'm proud to present you my new XOOPS website:
www.NonSoloGuide.altervista.org/modules/news/index.php
(Linux and Windows Italian how-to).
- Xoops 2.4.1
- News
- Polls
Enjoy it!
Posted
11 days
ago
After 256 downloads of the Half Baked-release and NO bug reports I am proud to announce the release of debaser 3.04 Half Finished. In my own nomenklatura Half Finished means BETA.
Maybe I said this before, but what is in the
... [More]
package?
1) Add multilingual description with no extra markup (the module xlanguage is needed)
2) Ajax search function which makes suggests for search terms
3) Inner display of players or popups
4) Public and private playlists
5) Re-encoding of MP3 with Lame (have to be installed separately)
6) Batch processing of files
7) Flash uploader with progress bar and timer
8) Adminstration for radio and tv stations
9) Per-user-directories with quota or no quota
10) Code embedding for other websites
11) Support for nearly all players also from websites like YouTube, clipfish etc. Even external players can be added
12) File manager is included
13) Script for detailed (underestimating) information added
14) Upgrade script from debaser 0.92x to debaser 3.04 Half Finished. No upgrade from alpha or pre-alpha! Read carefully the release notes for the upgrader on dev.xoops.org or displayed on the upgrade script page
15) and tons of blocks and other features I forgot to mention
Bad news as well: You have to turn on javascript to make debaser 3.04 Half Finished work properly. I kicked out some WYSIWYG editors, right now only tinyMCE and CKEditor are supported. 3.04 is meant only for XOOPS 2.3 and 2.4, but the module could! work for the 2.0-series.
Get debaser 3.04 Half Finished HERE
Get the upgrader HERE
Get the not-up-to-date-docs HERE
Punish me at the bug tracker HERE [Less]