pascal.k
Forum Replies Created
-
Forum: Plugins
In reply to: [Official CleverReach? Plugin for WooCommerce] DeinstallationI reached the Clever Reach support.
Solution: You have to deaktivate the plugin in WP backend, then remove the plugin data and reinstall. Then you can complede the installation wizard again. This worked for me. Connecting the plugin with an existing subsciber list ist not posible at this moment.
Thank you, that helped me! Here’s some code. It’s still expandable.
add_filter( 'gform_notification', 'your_suffix_repeater_email_recipients', 10, 3 ); function your_suffix_repeater_email_recipients( $notification, $form, $entry ){ if ( $notification['name'] == 'Name of your email notification' ) { $repeater = unserialize($entry[115]); // Change you repeater ID $emails = array(); foreach( $repeater as $entrys ){ $emails[] = $entrys[121][1]; // Change you email field ID } $recipients = implode(',', $emails); $notification['toType'] = 'email'; $notification['to'] = $recipients; } return $notification; }
Hi, I have the same problem. I can select the repeater email field in my notifications as receiver, but there were no email sended to. Presumably because the code can’t select the right email field from the selected repeater field. Is there any solution to fix this? And why does no one answer here?
Forum: Plugins
In reply to: [Broken Link Checker] Advanced Custom Fields – Repeater FieldYes. I fond the error. There was a space between “html:” and “repeater…“. This needs to be replaced. Then this is working fine. It’s surely not best practice, but it works fine.
Solution:
html:repeaterfieldname_fieldid_fieldname
html:repeaterfield_1_content html:repeaterfield_2_content html:repeaterfield_3_content html:repeaterfield_4_content html:repeaterfield_5_content html:repeaterfield_7_content html:repeaterfield_8_content ...
Forum: Plugins
In reply to: [Broken Link Checker] Advanced Custom Fields – Repeater FieldBut there is only HTML or single URL saved at wp_postmeta. When I search my wp_postmeta table to “repeaterfield_1_content” I only see HTML code.
Is there no solution I can use these meta_key to be checked by BLC?
My idea was to add these meta_keys to “BLC Settings > Custom fields”. But it’s not working. This is the setting I used:html: repeaterfield_1_content html: repeaterfield_2_content html: repeaterfield_3_content html: repeaterfield_4_content html: repeaterfield_5_content html: repeaterfield_7_content html: repeaterfield_8_content
Forum: Plugins
In reply to: [Tidio – Live Chat & AI Chatbots] #tidio-chat-header-online | display:noneSome note: The Chat needs to be opened in frontpage. If it’s closed the header is showing up. Opened it’ hidden.
Forum: Plugins
In reply to: [Email Post Changes] No Messages from Custom FieldsThis could it be! Found this online. I think this can be the answer. Email Post Changes is probably working correct.
https://support.advancedcustomfields.com/forums/topic/wordpress-3-6-revisions-custom-fields-no-longer-tracked/page/2/#post-7446