How do I remove the CAPTCHA field?

A programmer originally built our site but he's no longer working with us so I'm having to make changes by myself before we go live.  I have a section on our homepage to sign up for our newsletter. It's apparently not a standard BC web form because it was programmed to look and fit a certain way.  We didn't originally have a CAPTCHA field, but I must have activated it somehow because it's there now. And it's screwing up the layout of my home page! Pushing the social media buttons too low, etc.  How do I turn off/remove this dang CAPTCHA field!
Also, how do I link the newsletter sign-up to Mail Chimp.  Their support says my sign up fields are not properly linked to Mail Chimp.
THANKS!!
Jesslyn

Hi Jesslyn,
Do you have a URL of your website that we can look into so I can look at the source code?  Depending on how that web form was inserted, you either have to edit the form in Site Manager > Web Forms or you'll need to edit the form in the template or page where it was inserted.  I don't know if the web form was created in BC or MailChimp.
As for MailChimp, there's no supported integration but all you have to do is create your list in MailChimp and then design the signup form for it on MailChimp.  On the form creator screen there's a tab called "Share It" and the 3rd option is to "Create Form HTML" and this will give you an HTML code version of your form to put on your website instead of as an IFRAME embed or Javascript embed.  You could just grab everything inside the FORM element of the MailChimp Form HTML and paste it into your web page or template on BC.
Get me a URL of your website so I can see what we're working with.

Similar Messages

  • How can we remove the following zeros from quantity field ?

    Hi All.
    how can we remove the following zeros from quantity field while populating ALV by using FM REUSE_ALV_GRID_DISPLAY ?
    eg:getting output zqty = 2.000
    but i need           zqty = 2.
    help me to reslove this issue.
    Regards.
    jay

    Hi,
      While populating the field catlog do the following thing to   avoid zeros.
      wa_fieldcat-tabname = 'I_OUTPUT'.    " Curr
      wa_fieldcat-fieldname = 'FWAER'.
      wa_fieldcat-seltext_l = text-023.
      wa_fieldcat-no_zero = 'X'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR  wa_fieldcat.
    Thanks,
    Khushbu.

  • HT1277 how can i remove the email add from a deleted mailbox from the prompts of the 'from' field?

    how can i remove the email add from a deleted mailbox from the prompts of the 'from' field?

    Thanks a lot, roam! That worked

  • Pages 5.2 How do I remove the fields in the header and footer?

    I need to add objects and footers that are longer than the field dividers allow in the header and footer of my document. How do I remove the field divisions?

    You can't remove the dividers in Pages 5.
    They don't exist in Pages '09.
    On the Mac you can simply keep typing and the text crosses the dividers.
    A quick test on my iPod touch suggests the same on iOS.
    Peter

  • How to remove the mandatory field setting in output control

    Hi everybody,
    While printing a Payment Voucher through F-58 and FBZ5(reprint), there are two output devices, the first one is - printer for forms and second is - payment advice printer.
    In our case we have configured the cheque printing and payment voucher printing seperately. The cheque goes to first printer(kept mandatory field) and the payment voucher goes to second printer. One of our plant does not print the cheque from SAP, they only print the payment voucher because the cheque is manually prepared. How do I avoid the cheque printing. Is there any way out to print only the payment voucher through F-58 and FBZ5
    Please guide me how to tackle it or how to remove the mandatory field setting in the output control screen?
    Regards
    Paul

    Hi
    As of my understanding, there is no relation ship between the Sales Organization and this mandatory partner function.
    Here are few suggestions.
    1. Since Partner functions are defualted and made mandatory in the Partner Determination Procedure so you have to remove this Mandatory option for PE from the Partner Determination Procedure that is AG if using standard one.
    2. If you are using a single partner function than , Copy and create a New partner procedure and a new account group . Where in one you can default PE as mandatory and in another one you make a optional where it can be choosen manually while creating the customer.
    Follow the path to check for entries :
    SPRO > sales & distribution > Basic Function > Partner Determination > set up partner determination > select for customer master > select the partner procedure you are using AG as standard > then partner function in procedure > here maintian the check as required like, Mandatory or No check for Non Mandatory .
    Thanks
    RB

  • How can we remove the key from the dataset which has json

    uid
    id
    Json
    4588
    51
    { "key": "1/0/234", "element1":{ "a":10 "b": "test1" } }
    4589
    52
    { "key": "1/0/234", "element1":{ "a":10 "b": "test1" } }
    4590
    53
    { "key": "1/0/234", "element1":{ "a":10 "b": "test1" } }
    I have the above dataset resulting from merge operation .
    UID -Integer data type
    ID- Integer data type
    Json- String data type holding json document
    How can I remove  the " key" element from the json field  and make my dataset look like 
    Expected output which will strip of key value pair from the json column
    uid
    id
    Json
    4588
    51
    { "element1":{ "a":10 "b": "test1" } }
    4589
    52
    { "element1":{ "a":10 "b": "test1" } }
    4590
    53
    { "element1":{ "a":10 "b": "test1" } }
    Mudassar

    Hello Mudassar,
    In SQL Server / T-SQL we don't have a native JSON support, so you would have to implement a solution on your own = parsing the string and remove the "Key" + it's value.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • I just installed Firefox 5. How can I remove the Bing search from the address bar? I don't want to see Bing at all.

    I just installed Firefox 5. How can I remove the Bing search from the address bar. I don't want to see Bing at all. I tired the Firefox options, right-clicking on the search field and the toolbar selection drop-down but could not find a way to get rid of that unwanted search window.

    *'''at the bottom of firefox''' there is a weird looking greenish circle with a lightning bolt in it*
    1. click it and hover over to '''PREFERENCES'''.
    2. click the second circle that say's '''BING.'''
    3. '''Un-check''' both boxes.
    4. you're done :)
    Note: it's not going to show the google symbol encrypt when you open a new tab it's just going to automatically use google as a search engine.

  • Any method to remove the required field option in the runtime process

    I've added the required actions n callable objects for the design time and when i run it in the runtime, there are actually required field that we need to fill in before the interactive form appear. Is there any way that I can remove the required field and fill in the interactive form?
    Can anyone help me answer my qn?
    Thanks.

    Just access the total textfield and make it visible = false;
    oForm.Items.Item("29").Visible = false; //The field
    oForm.Items.Item("30").Visible = false; //The label
    If that doesn't work try setting the left property to something that will never come into view no matter how large you make the window... Something like this
    oForm.Items.Item("29").Left = 5000; //The field
    oForm.Items.Item("30").Visible = 5000; //The label

  • How do I restore the search- field window?

    I seem to have accidentally removed the serach-field window ( and the shuffle back/forward butrtons) from the top bar of the safari window? Any ideas as to how I restore them??

    Actually there are several online manuals provided free by Apple. I've listed them on my blog here:
    http://applehelpwriter.com/2011/12/27/need-a-manual-for-lion/
    (Disclaimer required by ASC ToU: I may (not) receive some form of compensation from links to my website or something like that).

  • How can I remove the watermark in the charting/visualization components?

    I'm using FB3 beta 3 (Build 190133). I tried the activation,
    but the activation window only shows an edit field for the FB3
    serial number. If I enter my FB2 serial number, I get the warning
    "Serial number is invalid".
    How can I remove the watermark in the charting
    components?

    Hi,
    Beta 3 doesn't accept the Flex 2 serial numbers. If you have
    a need to remove the watermark you can contact me offlist at
    mchotin AT adobe DOT com.

  • How can I remove the values of two MessageTextInputFields?

    Hi all,
    I have two MessageTextInput fields in which user have to enter two unique values.
    With CO extension I have thrown a message "This code combination is already used" after some validation checks which is working fine.
    My issue is -- if user enter the values which is previously entered than system throw a message which is workin fine but after thrown the messge system should clear the values which is entered by user in these two fields.
    these two strings fields i got by
    Agency_Location_Code = (String)pRow.getAttribute("AgencyLocationCode");
    Bank_Account_Name = (String)pRow.getAttribute("BankAccountName");
    How can I remove the values of Agency_Location_Code and Bank_Account_Name?
    Thanks
    Amit

    Hi Gyan,
    By setting null in Agency_Location_Code and Bank_Account_Name fields before throw exception, Still values of these two fields are showing. when we navigate to same supplier second time.
    Is there any other solution to clear the fields.
    Its urgent.
    Thanks
    Amit

  • How do I remove the "distributed" and "response" file from my form?

    I created a form for my clients to fill out.  I want to be able to post the form on my website so the client can download the form, edit it, save it, print it if they like, and email it to me manually.  I do NOT want the form to have a submit button, nor do I wish to have the responses tracked.
    Currently I have a form that is set up like that.  How can I remove the criteria in the form that is responsible for emailing me as well as tracking the response file?  I want to the form to just be void of any link to my email as well as any response file on my end. 
    Would greatly appreciate if anyone can help...
    Thank you,
    Vincent

    For some odd reason, Acrobat Standard does not allow you to edit document-level JavaScripts, so you have to use an alternative approach.
    The first thing to do is find the hidden button and make it visible. To do this, select the Select Object tool, which is a black arrow pointing to the upper-left. When the tool is active, you should see the previously hidden button on the first page:
    Double-click the button and go to the General tab and set the Form Field dropdown in the Common Properties area to Visible. Then go to the Actions tab and delete the "Run a JavaScript' action for the Mouse Up trigger. Then add a new JavaScript action for the Mouse Up trigger and enter the following two lines of code in the editor:
    getAnnot(0, "adhocFormState").destroy();
    addScript("FormsWorkflowScript", "//");
    Then close the dialog, select the Hand tool, and click the button. This will effectively get rid of the document-level JavaScript and the hidden text annotation. You can now delete the button by selecting it with the Select Object tool again, and hit the Delete key, or right-click > Delete
    That should do it.

  • Is it possible to remove the To: field in mail and just use Bcc?

    Hi,
    I often use Mail at work to distribute information by email to members of our union. I copy and paste their email address from another list that is kept up to date by someone else. Most of the time I remember to paste their addresses to the Bcc field so members don't see who else is a member or their email addresses. Occasionally I forget and paste it into the To field and get many complaints about privacy etc.
    I therefore feel it would be safer if I could some how remove the To field and just use the Bcc field instead. Is this possible or does anyone have any better ideas?
    Regards and thanks,
    Dave.

    This will depend entirely upon the SMTP.  Some SMTP will move a Bcc address to the To because their policy requires at least one address be in the To.  Other do not require it.
    Better to create a Group in Address Book, and then use the Group name as the addressee, taking care to have the Preferences set to not display members of the Group.  The resulting To will read Undesignated Receipts.
    Ernie

  • How can we remove the commas from the Formula value in SAP BW BEx query

    Hi All,
    How can we remove the commas from the Formula value in SAP BW BEx query
    We are using the formula replacing with characteristic.The characteristic value needs to be display as number with out commas.
    Regards
    Venkat.

    Do you want to remove the commas when you run the query on Bex Web or in RSRT?
    Regards

  • How do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

    how do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

    how do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

Maybe you are looking for

  • Cannot get optical audio in working

    Hi all, I have a new MacBook Pro (latest 2010 version) which I specifically bought for audio recording/editing purposes. However, I cannot get it to work at all, recording is useless except for a normal 3.5mm stereo-in jack. I cannot get the MacBook

  • How to check escape characters

    Hi, I have multiple rows in table data which contain charcters like (enclosed in []) [' &] etc which i want to insert in another table but as I insert the rows with above data (for eg. &) it prompts me for input as & is input charcter.. How can i fin

  • Reg Copying of Shito Shipping Condition in a Sale Order

    In the cusomer master for a Sold to there will be different Ship To say "A" Sold To has c,d,e Ship to and also A itself is the sold to as well and sipping condition maintained for Sold To is "1" when you create a slae order with Sold to and Ship to b

  • Iphoto '09 os x10.6.x screensaver

    I'm running OS X10.6.8 on an Intel Mini and have iPhoto '09 installed. An attempt to integrate an iPhoto album into Screensaver (Sys. Prefs) fails. I don't see iPhoto displayed, only the default apple offerings. Clicking the "+" to select a folder ha

  • How do you exit a game from full screen mode when the game has crashed?

    Hey there There has seriously got to be a better way of exiting a crashed game than just turning the power off. I sometimes play Sims 3 on my mac, and we all know that Sims 3 is the most poorly coded game out there, so it crashes a lot. I don't under