darrelly84
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms + Stripe] Plugin causing Price Field to lose dollar signMine cleared up once I got the stripe API settings put in. It was losing the $ and . before, but once I got the info setup in the stripe settings, the price is now displaying correctly. Go figure.
Forum: Plugins
In reply to: [Gravity Forms + Stripe] Plugin causing Price Field to lose dollar signI think I’m going to have to break down and pay the $25 for support as well. My brain is fried.
Forum: Plugins
In reply to: [Gravity Forms + Stripe] Plugin causing Price Field to lose dollar signI’m seeing the same thing. I can only assume it’s a javascript error of some kind, but I can’t pinpoint it. I thought it might be a theme conflict, but doesn’t seem to be. Any idea on this?
Thanks, Skuran, but this isn’t doing what I need it to. I’m running an events calendar site, so the post date is a future date. I need the posts to expire on their post date, but not at their post time. For example, if I make a post for tomorrow, I need that post to expire tomorrow, but not until 11:59pm. Any idea how to make this happen?
Forum: Plugins
In reply to: [WordPress Social Login] Debug Error in Wp-AdminSeeing the same thing here. Anyone have an idea?
Forum: Plugins
In reply to: [The Future Is Now] custom post typesHad the same issue. Figured it out. Replace the plugin’s main code with this:
function publish_future_events_now($depreciated, $post) { wp_publish_post($post); } remove_action('future_shows', '_future_post_hook'); add_filter( 'wp_insert_post_data', 'futurenow_do_not_set_posts_to_future' ); function futurenow_do_not_set_posts_to_future( $data ) { if ( $data['post_status'] == 'future' && $data['post_type'] == 'shows' ) $data['post_status'] = 'publish'; return $data; }
Replacing “shows” (my custom post type) with yours. Working for me.
Forum: Plugins
In reply to: [Gigs Calendar] Shortcode?I’d really love a shortcode as well. I want to insert the calendar in a specific part of a page.
I found a workaround, but it’s not perfect. I post all of my gigs to a certain category called “events”, then use a category post plugin with a shortcode to get them to show up where I want. The only problem is that the post isn’t deleted after the date passes, so I have to manually go delete the post to get it to disappear. I’m sure I could use another plugin to get those to delete automatically, but it’s a pain. I love the way the gigs calendar lays things out, just wish I could use a shortcode to insert it.