Quantcast
Channel: Joomla and Wordpress forms and forums extensions
Viewing all 140 articles
Browse latest View live

ChronoForms V5 Change log

$
0
0

You can upgrade to the latest Chronoforms V5 by downloading the latest installer from the downloads page, after that you should install it using the Joomla extensions manager as usual, do NOT uninstall or you will lose any existing forms.

Here is a list of the changes in each release:

RC3:

  1. Multiple fixes and improvements, this update is important.
  2. New Datepicker field.
  3. New Multiple column feature in containers.
  4. Multi page action.
  5. PayPal actions (Redirect, Listener/IPN, PDT and Pro).
  6. CURL action.
  7. Help link to the FAQs page in the action settings to help find more info about the action/element.
  8. Form app and description added.
  9. Debugger action added.
  10. XLS export action.


How do I use the email GPG encryption?

$
0
0

This FAQ is from a forum post by User ericv who worked out what needs to be done to get the GPG encryption to work.

Interesting component

Doom the best game ever

Web Hosting and Domain Name Registration Company - Aussie Webhost

Privacy Policy

$
0
0

This site is owned and operated by ChronoEngine.com. Your privacy on the Internet is of the utmost importance to us.

  1. Collection of Data: We do not track, collect or distribute personal information about visitors of our website, we may however collect some data like number of visitors per day or visitors countries to help analyze our website and services performance.
  2. Use of Data: we don't provide any of the data collected to any 3rd parties or other websites under any conditions.
  3. Editing/Deleting account information: if you are a registered member with us then we give you the ability to edit your account information, if you however for any reason are interested in deleting all your info with us then we will do this once you contact us regarding this matter and we verify that you are the owner of this account.
  4. We may make changes to this Policy from time to time with no prior notice.
  5. While this Privacy Policy states our standards for maintenance of Data and we will make efforts to meet them, we are not in a position to guarantee these standards. There may be factors beyond our control that may result in disclosure of data. As a consequence, we disclaim any warranties or representations relating to maintenance or nondisclosure of Data.

TERMS OF USE

$
0
0

You should carefully read the following Terms and Conditions. Your purchase or use of our products or services implies that you have read and accepted these Terms and Conditions.

Terms and Conditions:

  1. Usage: Any GPL products we sell subject to the GPL licese terms, and any non GPL products or services we sell subject to the terms on our website.
  2. Warranty: we do not warrant or guarantee these components in any manner. We cannot guarantee they will function with all 3rd party components as there is currently no certification process for such components, however we tested all our products to work on all major web browsers.
  3. Unauthorized use: You may not place any of our NON-GPL products, modified or unmodified, on a diskette, CD, website or any other medium and offer them for redistribution or resale of any kind without our written acceptance. Please contact us if you need more info.
  4. Updates: All services/extensions are made for the latest versions of Joomla, but we can NOT guarantee, that the extensions/services will run with future versions of these CMSs.
  5. Delivery: After we have successfully received your payment, we will email you your license information on the email address you provided during payment.  If you do not receive an email from us within 6 hours, contact us through this website.
  6. Modifications: (Applies for our NON-GPL products only) You can make any necessary modifications to our products to fit your needs. You may not however redistribute or release any modifications as GPL or otherwise. You are NOT authorized to change or remove the copyright information in the footer of our extensions unless you have a valid license or a written permission. Please contact us regarding this if you have any questions.
  7. Ownership: Our products are provided without warranty of any kind, either expressed or implied. In no event shall our juridical person be liable for any damages including, but not limited to, direct, indirect, special, incidental or consequential damages or other losses arising out of the use of or inability to use our products.
  8. Links or external websites: We are not responsible for the contents/usage of any websites linked from any of our website's pages including our forums, please pay attention when you access any external website(s) through a link on our website.



Our company reserves the right to change or modify current Terms with no prior notice.

Chronoforms starter guide

$
0
0
Here is a full tutorial on the new Chronoforms 5 to help you get started quickly and understand most of the features available.

Chronoforms starter guide

$
0
0
Here is a full tutorial on the new Chronoforms 5 to help you get started quickly and understand most of the features available.

How do I use the Google Spreadsheet Save action?

$
0
0

ChronoForms v5 includes a Google Spreadsheet Save action that will let you save your form results to a Google Docs spreadsheet. This FAQ has a simple example of using the action.

How can I add a Print button to my form?

$
0
0
The Joomla! Print button is a convenient way to print out articles. Unfortunately it doesn't print out the contents of any form embedded in an article and so isn't very useful for ChronoForms.
Here is one alternative way of allowing users to print out the results of a form submission.

My CFv5 form data isn't saving to the database correctly

$
0
0
ChronoForms will automatically save data to a database table if you have added a DB Save action (or actions) to the form On Submit event. Here is a useful checklist:

How can I show a thanks message if I use the plug-in or module?

$
0
0
If you use the ChronoForms plug-in or module to display a form then, by default, when the form is submitted the same page will be re-displayed and, sometimes, the form will be displayed again instead of the thank you message.

3rd party plugins conflicting with Chronoforms

$
0
0

Here is a list of some 3rd party plugins which some users have reported that they have caused problems with Chronoforms, if you have any strange issues with your form then please check if you have any of the following plugins (or similar ones) installed and either configure the plugin or disable it temporarily for testing:

  1. Password Control: reported to have broken a Chronoforms registration form.
  2. Flow Control: reported to have blocked access to Chronoforms admin page.

We will update this list when new information is available from users, we haven't tested the plugins listed above, but the list is made based on reported issues from users.

How can I add CB Registration in CFV5?

$
0
0

The built-in Community Builder (CB) Registration that existed in Cfv4 is not yet included in CFv5. User Rafifi suggested the following code as a way to add new users to CB. The code needs to go after the Joomla! Registration action.

<?php
$user = JFactory::getUser();
$form->data['id'] = $user->id;
$db = JFactory::getDBO();
$query = "
INSERT INTO `#__comprofiler` (`id`, `user_id`)
  VALUES ('{$user->id}', '{$user->id}') ;
";
$db->setQuery($query);
if ( !$db->query() ) {
  JError::raiseWarning(100, $database->getErrorMsg());
}
?>

 

 


How can I run Auto and Custom Serverside Validation together?

$
0
0
Running either Auto Serverside Validation or Custom Serverside Validation separately is straightforward. But if you want to use both then adding Event Loops means that the second one will only be run if the first one finds no errors. Here is a way to link them together.

How can I show data linked to a drop-down option?

$
0
0

A user wanted to be able to display a serial number associated with some of the options in a large select drop down element. The request was to display the number if there was one, otherwise to hide the field. While this is an uncommon request the code is posted here because it could be adapted to meet various similar needs.

How can I zip uploaded files?

$
0
0

If the form includes large files or several files that you want to keep together it may help to add them to a 'zip' archive. This FAQ has code that will let you do that and then save and / or email the zipped file.

How can I use 'star ratings' in my CFv5 form?

$
0
0

Star ratings replace a set of radio buttons with star images so the user can select 1 star, 2 stars, etc. typically these are used in 'review' or 'rating' forms.

How can I use 'star ratings' in my form?

$
0
0
If you are creating rating forms then it can look better and be simpler to use if you show the user a row of stars to check instead of a drop-down or a radio button group. This FAQ shows you one way to do this.
Viewing all 140 articles
Browse latest View live