mywpgirl
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Visual Composer – Header and Footer + Custom content“Other community members who may have faced your issue might be able to help you” Yes, that’s my hope, because I’ve been going back and forth with a VC rep for a week and at this point have zero hope of getting a useful answer from them.
Thanks for the help emgraphics. Your solution led me to finding that there’s actually a WooCommerce Services plugin that can be deactivated/deleted from the plugin screen.
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] Save Youtube ID in a custom fieldI know this thread is very old, but posting my answer to part 1 of OP’s question because it’s impossible to find the answer online.
This is the code that worked for me & saved the youtube ID as a custom field.
add_action('prso_gform_youtube_uploader_pre_update_meta', 'prso_get_youtube_id', 10, 2); function prso_get_youtube_id( $field_values, $form_data ) { $postID = $form_data[ 'gforms_entry' ]['post_id']; $videoID = $field_values[2][0]['video_id']; update_post_meta($postID, 'vidid', $videoID); }
This is what worked for me
add_action('prso_gform_youtube_uploader_pre_update_meta', 'prso_get_youtube_id', 10, 2); function prso_get_youtube_id( $field_values, $form_data ) { $postID = $form_data[ 'gforms_entry' ]['post_id']; $videoID = $field_values[2][0]['video_id']; update_post_meta($postID, 'vidid', $videoID); }
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] Get YouTube Video ID HookThis is what worked for me
add_action('prso_gform_youtube_uploader_pre_update_meta', 'prso_get_youtube_id', 10, 2); function prso_get_youtube_id( $field_values, $form_data ) { $postID = $form_data[ 'gforms_entry' ]['post_id']; $videoID = $field_values[2][0]['video_id']; update_post_meta($postID, 'vidid', $videoID); }
Forum: Plugins
In reply to: [Gravity Forms Advanced File Uploader] Get YouTube Video ID Hookjimdestruct101, were you able to figure this out? I’m also having troubles getting the youtube video ID.
Forum: Plugins
In reply to: [WooCommerce] Taxes set to use shipping address but using baseIt’s been 2 months and countless hours later and I’ve still not been able to fix this.
Taxes are set to be charge based on shipping address. (Same results if set to billing address.)
Example 1: Tax rules are set for Illinois. Base state set to Illinois.
Billing address and shipping address set to California.
Customer is charged IL taxes.Example 1: Tax rules are set for Illinois. Base state set to California.
Billing address and shipping address set to Illinois.
Customer is not charged Illinois taxes.