Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
533 views
in Q2A Core by

 

Hi there. I already have a website. My site is this one HERE and I need to add Q&A. At the moment I have something working but I need the functionalities in a Q&A script. The Q&A will be at the bottom of the index page or a separate page but linked to index page. In addition I need to process payments through paypal (I already have a business account) and and do a little face lift of the site. Basically the site should work like Justanswer.com   - someone asks a question – pays a deposit – and I answer the question – we can chat with the client on the site and the client is happy. However in this case I do all the answers and there is no need for rating. All questions asked are made public. I reply to the ones the  client pays. Im looking for someone who can do this for me and we can chat about the fee. Please have a quick look at the site first HERE and if you can do it please PM or email me HERE.

1 Answer

0 votes
by

Hi, 

i find this way :

1- download this plugin : https://github.com/svivian/q2a-widget-anywhere

than you can choose where you want to show your button

2- add this code inside the widgets when you activate the plugin and remplace the red text

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <!-- Identify your business so that you can collect the payments. -->
    <input type="hidden" name="business"
        value="xxxxxxxxxx@xxxxx.com"> // your email here
    <!-- Specify a Donate button. -->
    <input type="hidden" name="cmd" value="_donations">
    <!-- Specify details about the contribution -->
    <input type="hidden" name="item_name" value="add you title here"> // Header title
    <input type="hidden" name="item_number" value="add the reason here"> // Slogan
    <input type="hidden" name="currency_code" value="USD"> // Currency
    <!-- Display the payment button. -->
    <input type="image" name="submit" border="0"
    alt="PayPal - The safer, easier way to pay online">
    <img alt="" border="0" width="1" height="1"
</form>
 
That it !

Claude

by
Just for precaution, PayPal API has been modified so just cross check before use it.
...