chladog
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Forms for ACF] ‘Reply-To’ Field in NotificationsI think this should work ??
function filter_email_headers( $headers, $email, $form, $fields ) { $reply = af_get_field( 'email' ); if ($email['recipient_type'] == 'custom') $headers[] = 'Reply-To: '.$reply; return $headers; } add_filter( 'af/form/email/headers', 'filter_email_headers', 10, 4 );
Forum: Plugins
In reply to: [Advanced Forms for ACF] ‘Reply-To’ Field in NotificationsGet the value with ‘af_get_field()’:
function filter_email_headers( $headers, $email, $form, $fields ) { $reply = af_get_field( 'email' ); $headers[] = 'Reply-To: '.$reply; return $headers; } add_filter( 'af/form/email/headers', 'filter_email_headers', 10, 4 );
Forum: Plugins
In reply to: [Advanced Forms for ACF] Form resubmits on refreshThank you!
FYI my browser Chrome 61.0.3163.100 (default settings) doesn’t ask about resubmitting.
- This reply was modified 7 years, 4 months ago by chladog.
Forum: Plugins
In reply to: [Fly Dynamic Image Resizer] Retrieve dimensions of predefined image sizeThank you! You are the best!
Forum: Plugins
In reply to: [Advanced Forms for ACF] ‘Reply-To’ Field in NotificationsThank you for your consideration and temp. solution. I hope you manage to squeeze it there, maybe when conditional checkbox is met.
The filter works fine, but must be coded for the project. Cannot set source field as easy as clicking “Insert field” button and choosing from current form-available fields (for example “Your E-mail” form field).
Forum: Plugins
In reply to: [WooCommerce] [3.0] “Ordered items” missing from list of ordersThank you!
Forum: Plugins
In reply to: [WP Tiles] Error – Line 61 in MetaBox.phpThat did the trick. Thank you!
Forum: Plugins
In reply to: [WP Excel CMS] wp_excel_cms_get() function not workingI found out that files are generating in proper form, but in wrong order. As for my file I’m trying to target Sheet no.3 but i have to use no. 5 to get right values:
json file Excel_sheet_5.json is generated json of sheet #3
also
$data = wp_excel_cms_get(“Excel”, “5”); returns array for sheet #3.Forum: Plugins
In reply to: [WP Excel CMS] wp_excel_cms_get() function not workingHaving the same problem. After updating the wordpress it stopped working.
I tracked down the problem to the generating of the json, where I found out it doesn’t generate files like filename_sheet_2.json properly. Unfortunately I’m not that skillful to solve the problem.
Can anyone help, please?Forum: Plugins
In reply to: [Facebook Publish] Can't get posts or pages to show up on FacebookHello!
I have exactly same problem. All settings are right, authorized app. Publishing to my own timeline works, but that is useless for me, I need to publish to my page where im Administrator. I select page, it says “published”, but on Page absolutly no activity,nothing, NOT even post hidden, shown for moderators.