Search found 11 matches

by dee_jay
Mon Nov 05, 2007 4:52 pm
Forum: Tips & Tricks
Topic: HOW TO: Registration Form -- With "Terms" text and "I Agree" checkbox
Replies: 11
Views: 5789

Re: HOW TO: Registration Form -- With "Terms" text and "I Agree" checkbox

whew ...  glad to hear that !!!

I don't know what happened there ..... I may have mistakenly uploaded the wrong version. ???

I have changed the code in the original post.
by dee_jay
Mon Nov 05, 2007 2:45 pm
Forum: Tips & Tricks
Topic: HOW TO: Registration Form -- With "Terms" text and "I Agree" checkbox
Replies: 11
Views: 5789

Re: HOW TO: Registration Form -- With "Terms" text and "I Agree" checkbox

Hi ....

Try ....    (form.IAgree.checked == false)    take out .inputbox


.... let me know if that works.
by dee_jay
Tue Oct 23, 2007 1:46 pm
Forum: Joombie Coding Q/A
Topic: Modify "Registration Complete!" Page
Replies: 0
Views: 365

Modify "Registration Complete!" Page

Hi .... I'd like to add a line break or paragraph spacing above the "Registration Complete!" heading. In my .css, it's bumping up against my top menu and looks like a mistake. I've tried modifying my stylesheet, but am having problems with margins/padding when there is no pathway showing at the top ...
by dee_jay
Wed Oct 17, 2007 5:02 pm
Forum: Joombie Coding Q/A
Topic: How to show side modules (ie. menus) when clicking on a "Latest News" Item ?
Replies: 4
Views: 787

Re: How to show side modules (ie. menus) when clicking on a "Latest News" Item ?

Hi Bruce ...

I tried your suggestion to make the menu available for "all" and ... IT WORKED !!!!.

I did not want this side menu on the homepage ... but I can live with that.

Thanks for your help.
by dee_jay
Wed Oct 17, 2007 12:57 pm
Forum: Joombie Coding Q/A
Topic: How to show side modules (ie. menus) when clicking on a "Latest News" Item ?
Replies: 4
Views: 787

Re: How to show side modules (ie. menus) when clicking on a "Latest News" Item ?

Bruce, thanks for your reply. I understand what you are saying, but the "Latest News" module is not assigned to any menu. It is only assigned to a module position and it only appears on the homepage. My site has not gone live yet ... I only have it on my development server. I have included three scr...
by dee_jay
Tue Oct 16, 2007 4:00 pm
Forum: Joombie Coding Q/A
Topic: How to show side modules (ie. menus) when clicking on a "Latest News" Item ?
Replies: 4
Views: 787

How to show side modules (ie. menus) when clicking on a "Latest News" Item ?

I have the standard "Latest News" module running in a "top" module position. I have menus and other stuff running in the "right" module position, which are constantly visible throughout the site. When I click on a news item in Latest News, it takes me to the news item, but no "right" side modules ap...
by dee_jay
Wed Oct 03, 2007 12:27 pm
Forum: Tips & Tricks
Topic: HOW TO: Registration Form -- With "Terms" text and "I Agree" checkbox
Replies: 11
Views: 5789

HOW TO: Registration Form -- With "Terms" text and "I Agree" checkbox

I made this mod because I needed this functionality and the options I could find were install Community Builder (very large) or JUser (commercial component) ... both of which are overkill for this relatively simple need. This allows you to add "Terms and Conditions" to the Registration Form, and mak...
by dee_jay
Wed Oct 03, 2007 11:55 am
Forum: Joombie Coding Q/A
Topic: Adding Checkbox to Registration Form -- Almost there !!!
Replies: 2
Views: 620

Re: Adding Checkbox to Registration Form -- Solved

I modified the validation code to:

  }  else if (form.IAgree.checked == false) {
            alert( "" );


It now works fine.
by dee_jay
Tue Oct 02, 2007 11:40 pm
Forum: Joombie Coding Q/A
Topic: Adding Checkbox to Registration Form -- Almost there !!!
Replies: 2
Views: 620

Re: Adding Checkbox to Registration Form -- Almost there !!!

I've made some progress ... I changed the validation code to:   }  else if (form.IAgree.value == "yes") {             alert( "" ); This got rid of the error message I indicated above. Now, the problem is that when I check the box, I still get the alert "Please...
by dee_jay
Mon Oct 01, 2007 3:57 pm
Forum: Joombie Coding Q/A
Topic: Adding php apps
Replies: 2
Views: 974

Re: Adding php apps

There is a plug-in available called "Add PHP" You can find this on the Joomla Extensions website. From their info: This Bot/Plugin makes it possible to integrate any PHP Scripts into a content item/ Article. The PHP Script must be below the Joomla root directory. You should switch off the print and ...
by dee_jay
Mon Oct 01, 2007 2:00 pm
Forum: Joombie Coding Q/A
Topic: Adding Checkbox to Registration Form -- Almost there !!!
Replies: 2
Views: 620

Adding Checkbox to Registration Form -- Almost there !!!

I'm trying to add a checkbox to the Registration form. In registration.html.php I added the following: *     THIS IS A TEST FOR THE AGREEMENT TERMS to see if I can add text.         In the field validation section I added: } else if ((form.password.value != "") && (form...