justinesmithies
Forum Replies Created
-
Forum: Plugins
In reply to: [Donate Extra] Sortcode with iFeatureAhha i see your using text widgets, in that case you can get the Snippets plugin and add this snippet to allow the text widgets to execute php too.
add_filter('widget_text', 'php_text', 99); function php_text($text) { if (strpos($text, '<' . '?') !== false) { ob_start(); eval('?' . '>' . $text); $text = ob_get_contents(); ob_end_clean(); } return $text; }
Then you can put the line from the previous post and run the shortcode from your text widget.
Forum: Plugins
In reply to: [Donate Extra] Sortcode with iFeatureCan the boxes in your theme execute shortcode ( php ) ?
You could always edit the php template and place this in the location to display the form.
<?php echo do_shortcode('[donateextra]'); ?>
Hope this helps ?
Justine
Forum: Plugins
In reply to: [Donate Extra] Sortcode with iFeatureAre you sure that your are placing the shortcode in the html box ?
Justine
Forum: Plugins
In reply to: [Donate Extra] Widget help requiredOk i am going to do a complete rewrite of the widgets code and put each one in its own php file to bring them upto date.
Please bear with me i know they currently are quite buggy.Forum: Plugins
In reply to: [Donate Extra] Donate Extra V2.0In the next relase i will be :
Adding the txn_id to the Donate Extra admin section so it will display at the end of all donations.
Any other suggestions welcome.
Forum: Plugins
In reply to: [Donate Extra] SuggestionsAdded to todo list.
Forum: Plugins
In reply to: [Donate Extra] Solving IPN issue onlySorry its took so long to get back to you.
In paypal.php change the line at the top to this.require("../../../wp-load.php");
Thats all that is required to fix the Paypal IPN issues , unless you have changed any other code.
Justine
Forum: Plugins
In reply to: [Donate Extra] Each element moving to the line below…Glad to have been a help to someone.
Thanx
JustineThanx MaureenT that worked for me too.
Forum: Plugins
In reply to: [Donate Extra] Each element moving to the line below…If you use the firebug plugin you can fix the issue using the modified snippets from below.
To make a permanant fix edit your donate-extra.php file and ammend the correct lines to look similar to what i have included below.<small style="position: relative; bottom: 30px; left: 220px;">(Currency: USD)</small>
<div style="position: relative; left: 220px; width: auto; bottom: 60px;"><div style="position : relative; top: 15px; left: 5px;">x</div><input type="text" style="width: 10px; position: relative; bottom: 5px; left: 20px;" value="1" id="p3" name="p3"> </div>
Hope that helps ?
Justine
Forum: Plugins
In reply to: [Donate Extra] PayPal payments not updating in my siteEmailed you back Aaron.
Forum: Plugins
In reply to: [Donate Extra] PayPal payments not updating in my siteI can see three transactions where the url was left blank which causes no comments to be passed on , and the sites url has been placed in the name field. The values show $25 USD .
That would cause an issue, thats why at the moment the plugin auto fills the url field with your sites URL to stop commants being lost. It gives the donar the option to change it to theirs if they are not happy.Forum: Plugins
In reply to: [Donate Extra] PayPal payments not updating in my siteOk Aaron email me then please and i’ll lok just now.
Forum: Plugins
In reply to: [Donate Extra] PayPal payments not updating in my siteP.S make paypal.php with chmod 644 which is :
read by owner
write by owner
read by group
read by othersForum: Plugins
In reply to: [Donate Extra] PayPal payments not updating in my siteAaron you said there is no info from the donations in your database etc.
I can see the donations along with the donars name and comments.So what exactly is missing ?
Can you please be more specific ?From your site you have the wall widget and it matches your Donate Extra admin page info .
Justine