houseofhands
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Forms for ACF] From Email Address in NotificationsI still don’t see it, because in my case the FROM name + address in AF are not fixed. The FROM is the name + address of whoever fills out the form. So I use the ‘insert field’ to select the email field. Do you see what I mean?
In the meantime I will tinker around with the code you’ve provided. Thanks for that!
Forum: Plugins
In reply to: [Advanced Forms for ACF] From Email Address in NotificationsHi Fabian,
Thanks for your reply!
That’s exaclty the solution I was looking for, but I’m not sure how to target the (Advanced Forms) from address field.
Can you give me some pointers?
- This reply was modified 4 years, 4 months ago by houseofhands.
Forum: Plugins
In reply to: [Advanced Forms for ACF] Group in GroupThank you, Fabian!
That helped indeed … it works now.
“nested_group_field” can also be “any_given_name” and when used in the form notification as “{any_given_name}” it displays the field in the subgroup.
For others with the same issue: use the code above in the functions.php or another included_once template.Forum: Plugins
In reply to: [Advanced Forms for ACF] Group in GroupI added a
{
at the end of line 1, so the code now looks like this:function nested_group_merge_tag( $output, $tag ) { if ( 'nested_group_field' != $tag ) { return $output; } $top_level_group_name = 'group1'; $second_level_group_name = 'group2'; $sub_field_name = 'field'; $top_level_value = af_get_field( $top_level_group_name ); return $top_level_value[ $second_level_group_name ][ $sub_field_name ]; } add_filter( 'af/merge_tags/resolve', 'nested_group_merge_tag', 10, 2 );
But still … after correcting the code, it still does not work “out-of-the-box” after changing the 3 variables.
Also … what format do I use in the form notifications?
Something like this?{field:group_name[sub_group_name][sub_field]}
Forum: Plugins
In reply to: [Advanced Forms for ACF] Group in GroupActually … this describes my question better:
{field:group_name[sub_group_name[sub_field]]}
Forum: Plugins
In reply to: [Advanced Forms for ACF] Set current user email as $headers FromHi Fabian,
Thanks for your response.
The code does not work. It does not change the From header.My main goal was to identify the current logged in user, so I used the filter af/form/email/content (source: https://advancedforms.github.io/filters/af-form-email-content/).
The code below I’m using now meets my goal.
/* Identify user sending this form - put this in functions.php ------------------------------------------------------------------ */ function display_name_in_content( $content, $email, $form, $fields ) { // Add some extra text to the end of the content $current_user = wp_get_current_user(); $displayname = $current_user->display_name; $content .= ' This message is send by ' . $displayname; return $content; } add_filter( 'af/form/email/content/key=FORM_KEY', 'display_name_in_content', 10, 4 );
Thanks again!
Same here.
I updated to 0.12.1 and all’s well now.
Thanks for the quick fix!
Same here.
I updated to version 0.12 and my site broke. Only the header + header logo are visible, everything else is gone.
I tested and updated to 0.12 on 3 of my site, all had the same issue.
I resolved this by uploading version 0.11
For now … I’m sticking with version 0.11
Note: my sites are all WP + Genesis Framework.
Forum: Plugins
In reply to: [WooCommerce Grid / List toggle] Displays code on frontendSame issue here.
string(4) “grid”
This shows up at the bottom left after installing and activating plugin WooCommerce Grid / List toggle.
Forum: Reviews
In reply to: [Genesis Connect for WooCommerce] v0.9.10 breaks my siteHi Nick, thanks for the quick reply! I’ve figured out that one should update to v0.9.10, AFTER update to Woocommerce v3.3 … that part was not clear.
I’ll wait for Woocommerce v3.3 and change my 1 star rating to 5, cause this plugin has worked perfectly and your quick response deserves a thumbs up!
- This reply was modified 7 years, 1 month ago by houseofhands.
Hello Bojan,
Sorry for my delayed reply, but I was troubleshooting the issue I have with the Media Library. The issue only occurs in Grid mode. In List mode there is no problem.
This issue was somehow first triggered by the WP Smush plugin and was solved as soon as WP Smush was disabled. Later the issue occurred even with WP Smush uninstalled.It turns out that this is a wide spread WP problem, with several provided solutions that do not resolve my issue.
So I’m still looking and installed WP Smush again on all my sites. Which is working flawless by the way. Good job!
So please discard my low rating. Your plugin works fine!
Forum: Plugins
In reply to: [Weekly Class Schedule] Failed to add schedule entry (just updated)The import/update button worked. I lost all my entries I made so far though … but it worked. So, even a clean install requires an import/update before you get started. Thanks!
Forum: Plugins
In reply to: [Weekly Class Schedule] Failed to add schedule entry (just updated)Just installed 3.0.6 for the first time on a clean WordPress 3.8.1 installation. Add classes, instructors and location. Also created a blank page with [wcs]. Also tried [wcs layout=list] and [wcs location=”my location”] on this page. In Schedule Management I keep getting “Failed to add schedule entry” … whatever I try. I also removed and re-installed the plugin as suggested. Am I missing something?