How can i add a buy now button using any pmt. gateway provider. I cannot use Paypal. I will lose too much business. Old dogs don't like new tricks.......

i am creating a site for a carnival. I need people of wealth to buy tickets to the event. they don't even know what paypal is and will not go through the trouble of setting up an account. I just want to be able to uses an outside payment gateway. I am so new to site building please speak is simple terms. I'man old dog trying to learn a new trick...Any help would be almost worshiped at this point...LOL

Provide the name of the program you are using so a Moderator may move this message to the correct program forum
This Cloud forum is not about help with program problems... a program would be Photoshop or Lighroom or Muse or ???

Similar Messages

  • How can i add a donate now button to my iweb website

    how can i add a donate now button to my iweb website

    Here's some info about PayPal buttons....
    http://www.iwebformusicians.com/Internet-Music-Sell-Distribute/PayPal.html
    A "Donate" button is created in the same way as a "Buy" button.

  • How can I link the buy now button in "The Geek Shirt Designer" to my paypal?

    I'm currently creating an Adobe Muse ecommerce site where the user can create custom knitted hats.
    I was going to make this with a seperate page for each of the possible options, but I did the math, and there are over 15,000 different possible combinations! So I figured a system like the one in the tutorial would be very beneficial!
    I've used edge animate a fair amount, but an quite new to coding. (maybe 1 year's experience)
    I followed the tutorial and think I understand it all, but I don't know how to link the final script to a paypal button.
    Would love some help on this! Many Thanks
    Ollie

    Hi, Ollie-
    You can do a buy now button in either by using the rectangle in Animate or by drawing something in Muse.  Either way, you'll need to apply a "payment script" that a payment site like PayPal will give you.
    Here's something I found that will help:
    https://developer.paypal.com/docs/integration/direct/identity/button-js-builder/
    Thanks,
    -Elaine

  • I used to be able to attach a document to an iCal entry.   After the latest update, it appears this option has been removed.  How can I add an attachment now?  Thanks!

    I used to be able to attach a document to an iCal entry.   After the latest update, it appears this option has been removed.  How can I add an attachment now?  Thanks!

    Hi Dan,
    Yes, iCal 4.0.4 (1395.7). In edit mode, the 'attachments' option is between 'Invitees' and 'URL' (see below). As I said this is for calendars under On My Mac, I suspect you are not seeing this as your event is on MobileMe.
    Best wishes
    John M

  • How can I restore the "Sync Now" button on iPhone 5?

    How can I restore the "Sync Now" button on iPhone 5? (using iTunes 11.0.2) All software up to date and sync works by WiFi or USB if initiated from iMac. Bento syncs fine from iPhone 5.  The "Sync Now" button just doesn't appear anymore.  All I see is the message to connect by cable and click "Sync this phone over Wi-Fi". I have tried that and turned things off and restarted and re everythinged - no button. Syncs fine on WiFi if the computer initiates it.  Wife's phone bought same day - no problem.

    From iTunes' help:
    Turn on Wi-Fi syncing
    Connect your iPod touch, iPhone, or iPad to your computer and select your device.
    Click Summary.
    Select “Sync with this device over Wi-Fi.”
    Disconnect your device from your computer.
    Your device still appears in the Devices pop-up menu in iTunes unless you click the Eject button .
    If you click Eject, your device is removed from the Devices pop-up menu, but Wi-Fi syncing remains turned on. Your device reappears in the Devices pop-up menu the next time you open iTunes.

  • How to change shopping cart Buy Now button?

    Hello All,
    I've been racking my brain on this one and could really use some help!
    Check out the "BUY NOW" button on my website here:
    Themes For MuseHome
    How do I get rid of the grey/white color behind the text? (it's grey on one browser, white on another!)
    I want it to be a solid red button and would like the gray area to be transparent.
    I looked in a lot of the css files but can;t figure out which style matches up with this button.
    Does anyone know where I'm supposed to go to change this?
    Any help would be greatly appreciated. Thanks!
    Jason

    Beautiful! That worked. Thanks so much Alex:
    Themes For Muse - Templates for Adobe Muse
    One more question...The same thing is happening to me on another button at the top of the page here:
    Elegant Restaurant Theme
    I tried to amend your code, but I have a hard time understanding this stuff sometimes!
    Any idea how I can give the second button a transparent background?
    Thanks again Alex!

  • How to style 'Related Products' "Buy Now" Button?

    I have been styling my site to the way I want it, but I hit a road block.
    I styled the "Buy Now" button on my store with - input.productSubmitInput in my css stylesheet
    But it is making ALL the Buy Now buttons the same size...
    Now my "Related Products" section is smaller, so I want the "Buy Now" button to be smaller than the regular ones.
    How can I achieve this? I can't seem to target the button in my css file for just my Related Products section...
    Thanks in advance!

    Beautiful! That worked. Thanks so much Alex:
    Themes For Muse - Templates for Adobe Muse
    One more question...The same thing is happening to me on another button at the top of the page here:
    Elegant Restaurant Theme
    I tried to amend your code, but I have a hard time understanding this stuff sometimes!
    Any idea how I can give the second button a transparent background?
    Thanks again Alex!

  • How can I add a Save form button ( not save as ) for a custom fillable form ?

    How can I add a Save button ( not save as ) for a custom fillable form ?
    idea is ti to have a Save button  at the bottom of each page where the person filling
    the form  clicks the save button  on each page.( it is a 12 page fillable form )
    The only thing I was able to do  was add a button that  opens a Save As
    dialog box only.
    My experience  lever is - end user-intermediate.
    Thnaks.

    Thanks for the response.
    I wonder why  it wont allow.
    If I can  save ( as opposed to save as)   this form by clicking the  save icon on the  menu bar, I am not sure why it is no possible to do so on page level!
    Custom script option is not  even remotely possible!

  • How can I add a normal-sized button to my frame???

    hi,
    my GUI has two JScrollPane-s together in a JSplitPane and below I'd like to add a single small button.
    I put this button into a new JPanel, but it is displayed veeery BIG !
    I tried to use .setPreferredSize(new Dimension(int, int)), but it didn't help a lot.
    this is a piece of my code:
    public class MyTree extends JPanel implements TreeSelectionListener, ActionListener {
              this.setLayout(new GridLayout(2,0));
             buttonUpdateM_File = new JButton("Update the .m file");
             buttonUpdateM_File.addActionListener(this);
             JPanel actionPane = new JPanel(new GridLayout(0,1));
             actionPane.setMaximumSize(new Dimension(1,2));
             actionPane.setPreferredSize(new Dimension(5,10));
             actionPane.add(buttonUpdateM_File);
              //create the scroll pane and put the tree into it
              JScrollPane treeView = new JScrollPane(tree);
              //create the viewing scroll pane
              JScrollPane maskViewPane = new JScrollPane();
              //add the two scroll panes to a split pane
              JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
              splitPane.setLeftComponent(treeView);
              splitPane.setRightComponent(maskViewPane);
              Dimension minimumSize = new Dimension(420, 360);
              treeView.setMinimumSize(minimumSize);
              maskViewPane.setMinimumSize(minimumSize);
              splitPane.setDividerLocation(210);
            splitPane.setPreferredSize(new Dimension(600, 510));
            //Add the split pane to this panel
            add(splitPane);
            add(actionPane);
         }Thank you!

    thanks,
    as far as I understood there is no way to shrink the
    new JPanel with this GridLayout.Yes, Grid just makes a set of fixed sized boxes. If you want the JPanel to be the same size as the JButton, what do you want the panel for?

  • How can I add a Smart object (button) to a quiz background and have it work?

    Good day,
    I have the need to add button to a quiz (in Captivate 6) to allow people to leave the quiz and go back to the start page.
    I realize you cant add a normal button to quiz, so I added a smart object converted to a button on the master page.  I have it all set up to go to the page, mouse over shows hand and all of that.
    the Captivate runs, I get to the quiz, mouse over it changes to a hand.  I click and it does nothing.  Any ideas why??  Any suggestions on how to do what I want?
    Thank you
    Dave Stabley

    Hi Lilybiri,
    I always look to your blog for help.   This time unfortunately it didnt help me.
    as I expressed above all I am trying to do is create a button that will do a jump to page with in a quiz.
    I have some long quizes in the captivate projects that I create.   Once a person starts a quiz they might realize it is a bit more than they are ready for.  I am just trying to give them a way to click a buttong to get out of the quiz and back to a certain page.
    On the master page for the quiz, I created a smart object (rectangle) that is converted to a button it is also transparent and goes over top of a graphic for the button.
    I tell it to go to the correct page, and I set it up so that when you mouse over the smart object it shows a hand
    When I go to preview this, I mouse over the graphic and get the hand icon, but when I click it goes no where.  It seems to me that the quiz is waitting for an answer before it will accept the click.   The catch is when I give the answer it forgets click and moves on the the next question.
    Any thoughts?
    Thank you

  • How can I add a url parameter to choose the right database row to delete using php in Dreamweaver CC

    Hi all,
    I have just upgraded to Adobe Creative Cloup.  Though I find it very good there was one flaw and that was the omision of the database section.  I got this sorted but now I find that once I have set up the connection to the database and want to eithger delete or update records there is no 'url parameter' button to do so.  Can someone advise we how to get round this.
    Seasons Greatings from
    David J

    The link will look similar to
    myPage.php?ID=myVariable

  • How can I add (not mirroring) my TV as a secondary display to my Macbook using a wireless device ?

    Hi,
    I would like to use a wireless device to add my TV as a secondary display to my Macbook. Actualy I use a HDMI cable but it's not very friendly to move with it in some place of my sitting room .
    Everythings I looked provide only a mirroring display ... But this is not what I'm looking for.
    Thanks for your help !

    that sounds like it is your router rather then your TV connection, but either way, the way to display your iPad is via the Composite/Digital AV conection cables then your TV will see the iPad as another connected item via the given port on your tv.
    See http://store.apple.com/us/browse/home/shop_ipad/ipad_accessories/cables_docks
    Alteratively you can use Airplay with an AppleTV.

  • How do i add buy now buttons for paypal on thumbnails in Adobe Bridge photoalbums

    I have a series of photographs which i am selling online. I have found Bridge to be wonderful in creating a photoalbum but can't add the buy now button from paypal as I can in Dreamweavers albums

    ashbid wrote:
    I have found Bridge to be wonderful in creating a photoalbum but can't add the buy now button from paypal as I can in Dreamweavers albums
    Nor should you. Bridge is merely focused on processing images. Whatever limited HTML code it spits out is solely to the purpose of allowing others to view your image collections online. nothing more. Bridge has no graps of web design. Still, I don't really see your problem. Nothing stops you from copy&pasting different peices of code together or looking for alternate solutions with dynamic JavaScript or Flash based galleries as well as using PHP-based content managemnt systems for spitting out hundreds of pages based on a server template... if you get my meaning: It's more of a problem with your workflow and placing expectations on something that never was meant to be used that way.
    Mylenium

  • How can I add a "junk mail" mailbox?

    How can I add a "junk mail" mailbox, or any other mailbox to my email?

    If you have an IMAP email account then you can create additional folders by logging into your email account on a browser and creating them there - they should then appear in the Mail. If you have a POP email account then you're stuck with the folders that you've got.

  • How can i add one wave in in our Function generator example?

    how can i add one anotehr wave in our function generator example. i want to use superposition and add one more wave to our first wave in function generator and see the result.thanks

    Hi hood1,
    2 options:
    1) You can add many waveforms by combining them into one Array.
    2) Use the Waveforms tools, that give you many option for adding waveforms. one after the seconed or adding the Y array of a waveform to other Y array of second wave form, and so on...
    Hope it Helps...

Maybe you are looking for

  • Checkpoint Not Complete in NOARCHIVELOG mode

    Hi, This is first time I am seeing this. In my 11.1.0.7 development database on SOLARIS, I see checkpoint not complete message in alert log file and my database is running in NOARCHIVELOG mode. Can any expert throw light on this that why this warning

  • Adobe Acrobat XI Standard 11.0.10 silent install failing with error 1603

    Hello I just updated my AIPs for Adobe Acrobat Pro 11 Pro and Standard.  The Pro silent install is working fine.  But I cannot get the Standard install to run on Windows 7 or WIndows 8.   I have gone over every detail that I can think of or find on f

  • Automatic clearing in FICA

    Hello Experts, Adjustment to previous overpayed bill is posted with credit item.Usually this credits are cleared with debit by mass FPMA run. but if only credit item is available in FPL9 then mass FPMA is not possible and point is this credit item do

  • Aperture fails to import images from an iPhone

    Since I upgraded to Aperture 2.1.4 aperture has stopped being able to import from my iPhone. I get shown 3 empty frames ie pictures with nothing in them. Importing results in a message "Import from Capture Card Completed with Errors" In console I see

  • Autocomplete shows wrong name

    i like the autocomplete feature; however, today it suggested my name in a form, but with "null" added, ie Joe null Bloggs. i'm sure i have never typed this in, so where did it come from? i'm suspicious that someone else has somehow typed it (though i