Hi Katie. Thanks for reporting back.OK. So you have the Exec-PHP plugin installed, and you NEED the Full Button Code.
If those values are still showing up in the description at PayPal®, it's because they're not being evaluated into the values they represent. This would indicate to me that your editor is corrupting the Button Code somehow, or that the Exec-PHP plugin is not working on your installation of WordPress®.
Here are some additional things that I've seen as possible causes:1. You're using a NON-default editor for WordPress®?
( try using the default WordPress® editor instead, see if that helps )
2. In your WordPress® Settings -> Writing panel, do you have this box checked?
~ WordPress should correct invalidly nested XHTML automatically( if so, you MUST uncheck that box, it causes conflicts with the Exec-PHP plugin )
3. Are you on a Multisite Network installation? If so, you'll have all sorts of trouble with Exec-PHP due to the additional security restrictions that are enforced by Multisite mode. Placing this file into your /wp-content/mu-plugins/ directory may correct the issue for you.
Which contains this code snippet:
- Code: Select all
/*
Remove kses filters.
Attached to: add_action("init");
*/
function ws_plugin__remove_kses ()
{
if (current_user_can ("unfiltered_html"))
kses_remove_filters ();
}
/*
Add the actions.
*/
add_action ("init", "ws_plugin__remove_kses", 11);
add_action ("import_start", "ws_plugin__remove_kses");
If none of that helps, here are some additional things you could try:
1. Use this plugin to create your own custom Shortcode that will produce your custom Button Code.
http://wordpress.org/extend/plugins/shortcode-exec-php/2. Place the Button Code directly into your theme, instead of into the WordPress® editor.
~ Please let us know if any of these solutions work for you. ~ Good luck!