BernhardL
Use this extension.
In K2 set some articles the way you need them, start an export, in the resulting csv-file put your content into columns and import the file again. Its as easy as this.
It saves you headaches, and makes your boss loving you. :) Thanks for the work.
Also highly appreciated, the use of parameters.
Example:
{{URL www.joomla.org}}
can be processed:
// Link not to be shown in e.g. categories list
if (JRequest::getVar('view', 'default') == 'article'){
echo ''.$param.'';
}
Hint: the doc speaks of $params (which doesn't work) instead of $param which actually works. Also keep in mind, that the mentioned php-function split() is deprecated, use explode() instead.
Possible improvement: let the command-brackets be choosen through parameters.
Result: Big help for very individual tasks, that otherwise have no answer in classic Joomla. 5 points
Also, while having more than 1 module showing links, CSS would be called n-times, which the above solution prevents.
Again: Nice component. Thanks.
The *module* has been updated recently to 2.0.1 (look on the download page) it puts out valid xhtml and your suggestions are implemented.
Have fun.








