Andreas

Gender Not specified
Age Not specified
Member since June 18th, 2013
Last seen 8 years ago
Topics 47
Replies 91
Points 37
About Andreas: No information provided.

Recent activity
  • Andreas said thank you to Maverick for his/her reply to the topic German - Date Time indication.

    August 30 at 2:55 pm

    However I suggest you to duplicate this file to your language file (de-DE.com_cjlib.sys.ini) if you are using multilingual site. Do not change the strings directly in English language file which will be overwritten when you update the component.

    9 years ago

  • Andreas replied to the topic German - Date Time indication.

    August 30 at 2:45 pm

    In the ini-file you can find many date entries:   COM_CJLIB_DATE_ONE_MINUTE="one minute %1$s"COM_CJLIB_DATE_N_MINUTES="%1$s minutes %2$s"COM_CJLIB_DATE_ONE_HOUR="one hour %1$s"COM_CJLIB_DATE_N_HOURS="%1$s hours %2$s"COM_CJLIB_DATE_N_DAYS="%1$s days %2$s"COM_CJLIB_DATE_ONE_WEEK="one week %1$s"COM_CJLIB_DATE_N_WEEKS="%1$s weeks %2$s"COM_CJLIB_DATE_ONE_MONTH="one month %1$s"COM_CJLIB_DATE_N_MONTHS="%1$s months %2$s"COM_CJLIB_DATE_ONE_YEAR="one year %1$s"COM_CJLIB_DATE_N_YEARS="%1$s years %2$s"   If you want it in german, you have to make some changes: X minutes ago -> vor X Minuten Check this entry: COM_CJLIB_DATE_ONE_MINUTE="one minute %1$s" %1$s = represents: ago   I think you can change it to: COM_CJLIB_DATE_ONE_MINUTE="%1$s einer Minute"      

    9 years ago

  • Andreas replied to the topic Auto Marking for Single line Text Questions.

    August 30 at 2:37 pm

    Yes I think so.   In all freetext-question-types (except password) you can't define a correct answer. It is all custom text. Right?  

    9 years ago

  • Andreas replied to the topic Auto Marking for Single line Text Questions.

    August 30 at 9:17 am

    I'd like to vote for such a "fill in the gap"-question-type too!   For example: Question: 2 + 3 = ?   User has to type in the answer. Admin can define, which should be accepted answers. In my example: 5, five.   This would be useful for vocabulary-tests too.

    9 years ago

  • Andreas liked the topic CJBlog Social Sharing change: code added.

    August 30 at 9:15 am

    Hi, with the latest change in cjblog where the social sharing buttons are loaded asynch, it is now also possible to have the buttons on multiple locations displayed together. Currently cjblog lets you add the social sharing button either on the TOP or BOTTOM position.\ This change adds a BOTH location (displaying both on top and on bottom) Would be nice if this change could be part of the release :) you can see it in action here: https://www.lerendeleiders.nl/jezelfleiden/399-mijn-leiderschap-kantelmoment Hope this helps :) regards, Ruud. ------------- changes file administrator/components/com_cjblog/config.xml add yellow code                 <field name="sharing_buttons_position" type="radio" class="btn-group" label="COM_CJBLOG_SHARING_POSITION_LABEL" ...                        <option value="top">COM_CJBLOG_TOP</option>                        <option value="bottom">COM_CJBLOG_BOTTOM</option>                        <option value="both">COM_CJBLOG_BOTH</option>                </field> file administrator/language/en-GB/en-GB.com_cjblog.ini add yellow code COM_CJBLOG_BOTTOM="Bottom"COM_CJBLOG_TOP="Top"COM_CJBLOG_BOTH="Both"COM_CJBLOG_ENABLE_SOCIAL_SHARING_LABEL="Enable Social Sharing" file plugins/content/cjblog/cjblog.php replace '.($sharing_position == 'top' ? '<hr/>'.$social_buttons : '').' with '.(($sharing_position == 'top' || $sharing_position == 'both') ? '<hr/>'.$social_buttons : '').' and replace '.($sharing_position == 'bottom' ? $social_buttons.'<hr/>' : '').' with '.(($sharing_position == 'top' || $sharing_position == 'both') ? '<hr/>'.$social_buttons : '').'

    9 years ago

  • Andreas liked a reply to the topic Auto Marking for Single line Text Questions.

    August 29 at 4:33 pm

    9 years ago

  • Andreas said thank you to Maverick for his/her reply to the topic Auto Marking for Single line Text Questions.

    August 29 at 4:33 pm

    hmm.. that would flood with many support queries I believe. if you consider case insensitive, trim spaces and take care of anything, a small white space between user answer will make it wrong answer. An user cannot notice such thing. But anyway it is expected. I will add this in next version.

    9 years ago

  • Andreas replied to the topic i cant download cjforum .

    August 27 at 6:48 pm

    You can find all downloads here: https://www.corejoomla.com/downloads.html   CJBlog is free. CJForum is not free, needs subscription!

    9 years ago

  • Andreas replied to the topic CJ Quiz - Random answers.

    August 26 at 9:25 am

    Thanks for your answer! Do you have any idea about publish date of next revision? (days, weeks, months?)

    9 years ago

  • Andreas replied to the topic CJ Quiz - Random answers.

    August 25 at 9:44 pm

    Limit - can be done   I need to create for example 30 questions about history. (category = history) Then I want to create a quiz with 10 random questions out of this category = history. Is it already possible to set this limit = 10 (or any other value)? I need this to get flexible quizzes.

    9 years ago

  • Andreas liked the topic What about CommunityVideos.

    August 15 at 6:44 pm

    Just wanted to share some ideas about new components with you:   CommunityVideos Features needed: - ability to add remote videos (youtube, vimeo) featch description, thumbnail etc. from there - like/dislike feature (support for CJForum, Jomsocial, EasySocial) - nested categories - tag support (tagcloud-module) - add videos to playlists - integration for joomla search   Have you ever thought about such a component? Regards Andreas

    9 years ago

  • Andreas created new topic What about CommunityVideos.

    August 15 at 6:44 pm

    Just wanted to share some ideas about new components with you:   CommunityVideos Features needed: - ability to add remote videos (youtube, vimeo) featch description, thumbnail etc. from there - like/dislike feature (support for CJForum, Jomsocial, EasySocial) - nested categories - tag support (tagcloud-module) - add videos to playlists - integration for joomla search   Have you ever thought about such a component? Regards Andreas

    9 years ago

  • Andreas replied to the topic CJ Quiz - Random answers.

    August 15 at 5:17 pm

    Ok I understand.   But I didn't found an important feature: LIMIT   If always all questions are selected, it's a non-ending quiz...   It would be nice to create a quiz with e.g. 10 random questions of a category. That would be a kind of questionpool.   Next useful feature (after a limit is possible) would be, that these questions are not fully random: - a correct answered questions does not appear again, until all other questions of this category where selected PER USER (queue per user) - wrong answered questions stay in queue   That would be my wishlist for your extension :)

    9 years ago

  • Andreas liked the topic CJ Quiz - Random answers.

    August 15 at 3:16 pm

    Hello Maverick, I saw, that your quiz-component made already a big step forward, but I am still waiting for a real "question pool". I saw, that category-quizzes are now possible, but I don't want to create hundreds of categories to get hundred quizzes with random questions. I would like to group questions in another way and create quizzes out of them!!! My question is, if it is already possible to show answers in random order?   Perhaps you know, that both features (question pool & random answers) are possible with another 3rd party component. In all other points (design, user interface, admin interface, flexibility) you have the best joomla quiz-component :)   Regards Andreas

    9 years ago

  • Andreas created new topic CJ Quiz - Random answers.

    August 15 at 2:53 pm

    Hello Maverick, I saw, that your quiz-component made already a big step forward, but I am still waiting for a real "question pool". I saw, that category-quizzes are now possible, but I don't want to create hundreds of categories to get hundred quizzes with random questions. My question is, if it is already possible to show answers in random order?   Perhaps you know, that both features (question pool & random answers) are possible with another 3rd party component. In all other points (design, user interface, admin interface, flexibility) you have the best joomla quiz-component :)   Regards Andreas

    9 years ago

Powered by CjForum