Page 20 of 50 FirstFirst ... 10181920212230 ... LastLast
Results 191 to 200 of 491
  1. #191
    Join Date
    May 2005
    Location
    san francisco - California
    Posts
    53
    Plugin Contributions
    0

    Default Re: Additional Customers Fields

    into:
    admin -> main menu -> create additional customer fields

    if i leave the field empty (as i saw accidentally) then click on "go to next step button"
    it gives the error i said befor

  2. #192
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    if i leave the field empty (as i saw accidentally) then click on "go to next step button"
    Ahhh ! now this is what I call precision.

    Confirmed bug - isn't just great to be a victim of the zen_redirect module ?

    Not my bug by the way - it's from the Zen Team (as mentioned before already). However, here's a special fix for you since this might not be the case for everyone so I cannot update my package for this particular reason:

    In admin/additional_customers.php file,

    find:

    PHP Code:
    if (is_array($error) && zen_not_null($error)) {
              foreach (
    $error as $key => $val) {
                  
    $val zen_output_string_protected($val);
                  
    $messageStack->add_session($val'error');
    zen_redirect(zen_href_link(FILENAME_ADDITIONAL_CUSTOMERS_FIELDS'''NONSSL'));              
              } 
    // End of foreach statement.
          
    // End of if statement.      
      
    // End of action statement. 
    replace with:

    PHP Code:
    if (is_array($error) && zen_not_null($error)) {
              foreach (
    $error as $key => $val) {
                  
    $val zen_output_string_protected($val);
                  
    $messageStack->add_session($val'error');              
              } 
    // End of foreach statement.
              
    zen_redirect(zen_href_link(FILENAME_ADDITIONAL_CUSTOMERS_FIELDS'''NONSSL'));                            
          } 
    // End of if statement.      
      
    // End of action statement. 
    This should not cause you anymore trouble.

  3. #193
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    Post edited above. Make sure to replace my latest edited modifications.

  4. #194
    Join Date
    May 2005
    Location
    san francisco - California
    Posts
    53
    Plugin Contributions
    0

    Default Re: Additional Customers Fields

    still giving the error but if the problem is restricted to this no problem.
    i just liked to know if the new version you posted is working because of what i said that the field doesn't show in the login box except for the title of the box(additonal customer fields..)

  5. #195
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    still giving the error
    Very well. Use mine. Not a very big fan of zen_redirect module myself:

    PHP Code:
    if (is_array($error) && zen_not_null($error)) {
              foreach (
    $error as $key => $val) {
                  
    $val zen_output_string_protected($val);
                  
    $messageStack->add_session($val'error');
             echo 
    '<script>window.location=\'' zen_href_link(FILENAME_ADDITIONAL_CUSTOMERS_FIELDS'''NONSSL'). '\'</script>';
              } 
    // End of foreach statement.
          
    // End of if statement.      
      
    // End of action statement. 
    This should do the trick.

    i just liked to know if the new version you posted is working because of what i said that the field doesn't show in the login box except for the title of the box(additonal customer fields..)
    Again, please read the upgrade and changelog documentation text regarding all affected changes for this MOD.

  6. #196
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    Update:

    A new update has just been released from my site. As usual, for those who needs to upgrade, simply follow the upgrade and changelog documentation text.

    Note: The update does NOT involve the latest redirect modifications above this thread (due to differences between web servers on how redirections between browsers and servers are being configured).

  7. #197
    Join Date
    Jun 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Additional Customers Fields

    I've the teh mod working almost perfectly the only issues I have is on the customer side of the site my two additional fields shows up twice and on the admin side only once (like it should be). Secondly, I was wondering if there is any way to make my new fields show up on the invoice. Any help would be appreciated!

  8. #198
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    Same response as here:

    http://www.zen-cart.com/forum/showpo...&postcount=185

    No one did posted these amended readings yet.

  9. #199
    Join Date
    Jun 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Additional Customers Fields

    I don't know where and how to use PHP bbcode

  10. #200
    Join Date
    Aug 2004
    Posts
    1,590
    Plugin Contributions
    1

    Default Re: Additional Customers Fields

    Begin with:
    [ php ]

    End with:

    [ /php ]

    (without spaces between those tags).

    Like this:

    PHP Code:
    your codes here ... 

 

 
Page 20 of 50 FirstFirst ... 10181920212230 ... LastLast

Similar Threads

  1. Additional Customers Fields
    By mizio78 in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 12 Aug 2011, 09:27 AM
  2. Additional Customers Fields Addon SQL problem
    By Dasha in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 12 Sep 2008, 05:41 PM
  3. Additional customers fields v2-55 Question
    By balonglong78 in forum General Questions
    Replies: 0
    Last Post: 26 May 2008, 04:04 AM
  4. Need help installing "additional customers fields" module
    By CKlemow in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 1 Sep 2007, 03:22 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg