Forum Replies Created

Viewing 15 replies - 31 through 45 (of 74 total)
  • Plugin Author justinesmithies

    (@justinesmithies)

    Send me your details to justine AT exousialinux DOT org and I’ll fix it.

    Justine

    Plugin Author justinesmithies

    (@justinesmithies)

    Have you done the following ?

    Turn on Instant Payment Notification in PayPal and add your URL to your PayPal Profile IPN settings.

    Regards,
    Justine

    Plugin Author justinesmithies

    (@justinesmithies)

    Can you do me a favour please ?
    Can you make a test page with nothing on it but the donate extra form for me to look at too ?

    Thanx
    Justine

    Plugin Author justinesmithies

    (@justinesmithies)

    Yeah you could use a snippet.
    I will get the code to you just might be a few days.
    Really busy with work and bug fixes just now.

    Justine

    Plugin Author justinesmithies

    (@justinesmithies)

    Hmm its definately something to do with your theme.
    Leave it with my and i’ll try and find an answer for you.

    Plugin Author justinesmithies

    (@justinesmithies)

    I think i will have a fix for the recurring payments just shortly and will release a new version.

    @popsmith

    You only have the shortcodes on your page because you did not put them in using the html editor. It seems you used the visual editor.
    Remove them .
    Also you are using the wrong shortcodes.

    If you look at the raw html you have the shortcodes wrapped :

    <p><code>[donatewall]</code></p>
    <p><code>[donortotal]</code></p>

    You just need to add [donorwall] & [donatetotal]

    Please use the Donate Extra support forum for Donate Extra issue.

    Justine

    @popsmith Forget Donate Plus if you search here for Donate Extra that is the fork i am developing and it fixes all your issues.

    Justine

    Forum: Plugins
    In reply to: [Donate Extra] Suggestions
    Plugin Author justinesmithies

    (@justinesmithies)

    Ok i’ll add that one to my ever expanding todo list.

    Thanx
    Justine

    Plugin Author justinesmithies

    (@justinesmithies)

    @[email protected] & @globalaperta

    Version 1.98 should fix both your issues.

    Justine

    Plugin Author justinesmithies

    (@justinesmithies)

    No problem ??

    Change this line from :

    <p class="submit"><input type="image" src="'.$button.'" border="0" name="submit" alt="">

    To

    <p class="submit"><input type="image" src="'.$button.'" style="background-color: transparent;" border="0" name="submit" alt="">

    And if that helps too , please feel free to make a donation to show your support of Donate Extra .

    Thanx
    Justine

    Plugin Author justinesmithies

    (@justinesmithies)

    Also make the <div style="height: 10px;">

    read

    <div style="height: 0px;">

    Justine

    Plugin Author justinesmithies

    (@justinesmithies)

    Sorry try moving the closing `</div>’ so it looks like this :

    $output .= '
    <div style="height: 10px;">
    <input type="hidden" name="notify_url" value="'.$notify.'">
    <input type="hidden" name="item_name" value="'.$dextra['donate_desc'].'">
    <input type="hidden" name="business" value="'.$dextra['paypal_email'].'">
    <input type="hidden" name="lc" value="US">
    <input type="hidden" name="no_note" value="1">
    <input type="hidden" name="no_shipping" value="1">
    <input type="hidden" name="rm" value="2">
    <input type="hidden" name="return" value="'.$tyurl.'">
    <input type="hidden" name="currency_code" value="'.$dextra['paypal_currency'].'">
    <input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted"></div>
    <p class="submit"><input type="image" src="'.$button.'" border="0" name="submit" alt="">
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></p>
    </form>';

    Let me know if that helps ?

    Justine

    Plugin Author justinesmithies

    (@justinesmithies)

    Can you two try this please ? @comax@gmx.net @globalaperta

    Edit your donate-extra.php file and look for this section of code.

    $output .= '
    <input type="hidden" name="notify_url" value="'.$notify.'">
    <input type="hidden" name="item_name" value="'.$dextra['donate_desc'].'">
    <input type="hidden" name="business" value="'.$dextra['paypal_email'].'">
    <input type="hidden" name="lc" value="US">
    <input type="hidden" name="no_note" value="1">
    <input type="hidden" name="no_shipping" value="1">
    <input type="hidden" name="rm" value="2">
    <input type="hidden" name="return" value="'.$tyurl.'">
    <input type="hidden" name="currency_code" value="'.$dextra['paypal_currency'].'">
    <input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted">
    <p class="submit"><input type="image" src="'.$button.'" border="0" name="submit" alt="">
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></p>
    </form>';

    Change it to :

    $output .= '
    <div style="height: 10px;">
    <input type="hidden" name="notify_url" value="'.$notify.'">
    <input type="hidden" name="item_name" value="'.$dextra['donate_desc'].'">
    <input type="hidden" name="business" value="'.$dextra['paypal_email'].'">
    <input type="hidden" name="lc" value="US">
    <input type="hidden" name="no_note" value="1">
    <input type="hidden" name="no_shipping" value="1">
    <input type="hidden" name="rm" value="2">
    <input type="hidden" name="return" value="'.$tyurl.'">
    <input type="hidden" name="currency_code" value="'.$dextra['paypal_currency'].'">
    <input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHosted">
    <p class="submit"><input type="image" src="'.$button.'" border="0" name="submit" alt="">
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></p>
    </form></div>';

    All i have done is add the div at the top and bottom with a height style.

    Let me know if it fixes your two pages as i can fix it by trying Chromiums code inspector on your pages.
    Strange though as it doesnt affect my them but then it could have something to do with the fact i’m using a full page and your not ?

    Justine

    Plugin Author justinesmithies

    (@justinesmithies)

    Will get a look at it tonight. I see a common issue between yourself [email protected] & globalaperta .
    Hopefully will have a fix for you both later.

    Justine

Viewing 15 replies - 31 through 45 (of 74 total)