Leia Scofield
Forum Replies Created
-
I reached out to their payment processor (Paddle), who is also trying to get in touch with the developer. They offered to refund the transaction. I got in touch with them by replying to the original receipt email whose subject starts with “Your Table Rate Shipping Plus (Single License) Receipt”.
Same issue.
Forum: Plugins
In reply to: [Volunteer Sign Up Sheets] Repeated remindersOhhh, I wonder if that is it. The client did a import of events through a CSV import plugin. The date formats that came in were incorrect and had to be modified in the database through queries. I wonder if we lost something important in all that translation. Will check that and report back!
Forum: Plugins
In reply to: [Volunteer Sign Up Sheets] Repeated reminders“reminder1_sent value was NOT getting updated from 0 to 1 (false to true) after the reminder was sent, and so my plugin doesn’t think the reminder was sent every time it checks and will continue to do its job and trigger those emails every hour”
The user that reported this is signed up for an event on October 17, with 5 and 1 day reminders. Shouldn’t his reminder1_sent value stay at 0 until October 12?
Forum: Plugins
In reply to: [Volunteer Sign Up Sheets] Repeated remindersIt worked great in our dev environment, but not in production. I’ll try to get you some more answers. Unfortunately, it’s not my production server, so might be a bit limited.
Forum: Plugins
In reply to: [Volunteer Sign Up Sheets] Repeated remindersThis is happening on my site as well. One of our users reported getting an hourly email for an event that shouldn’t have a reminder until October 12.
Same issue here. Latest versions of WP and ShareThis.
Forum: Plugins
In reply to: [WP-Admin Icons] Error when activatedI ran into a similar issue because my database tables have a different table prefix. I was able to clear the errors by modifying line 50 of wp-admin-icons-init.php.
FROM:
$result = mysql_query("SELECT option_value FROM wp_options WHERE option_name = 'siteurl'");TO:
global $wpdb; $result = mysql_query("SELECT option_value FROM $wpdb->options WHERE option_name = 'siteurl'");Forum: Plugins
In reply to: [Plugin: Custom Field Template} White screen when inserting media into post.I am also having this issue. WP 3.0.1, CFT 1.7.5.
Error: win.send_to_custom_field is not a function
Source File: http://DOMAINNAME.com/wp-admin/media-upload.php?type=image&tab=gallery&post_id=1476
Line: 4Forum: Themes and Templates
In reply to: how to make subpages trigger menu item as current?In your CSS, have the style you apply to the page when it is current also apply to a class of “current-page-ancestor”.
Example CSS:
li.current_page_item a, li.current-page-ancestor a { font-weight:bold; }Forum: Plugins
In reply to: [Plugin: Twitter Tools] Function FsockopenI’m getting the same error. WP 2.6, Twitter Tools plugin.