FlourishDNA
Forum Replies Created
-
Forum: Plugins
In reply to: [Shipping Zones by Drawing for WooCommerce] Conflict and In the Cart Issue@arosoft Hi, It is conflicting with either Dokan Pro or WooCommerce Conditional Shipping and Payments plugin. We use both plugins and after we deleted your plugin everything is back to normal.
Thank you
@wpmudev-support8 Thank you for replying. We are using Genesis version 3.2.1. The widget items started going missing all of a sudden so we started keeping backup of the widgets every time we make changes to it and restore them when they went missing. We have not yet noticed any pattern yet but from now I will observe it closely and report back to you when it happens.
well, we removed the “External Links” plugin from all of our clients’ website as it was causing conflict with other plugins as well. Now all the sites are running smoothly. I cannot enable the plugin for you as the conflict was caused on the production site.
@cryptex_vinci You might be able to provide me with a solution to a similar issue that I am facing.
How do I create an email placeholder for multiselect fields that has values in an array and place comma separated multiple values that are submitted by a user during registration? I have posted the question at https://www.ads-software.com/support/topic/multi-select-value-showing-as-array-text-in-the-email/ but no one seems to be able to reply to it.
Thank you
- This reply was modified 5 years, 5 months ago by FlourishDNA.
PS: I have uploaded the screenshots of the settings at https://imgur.com/a/UOz6p7a
Forum: Plugins
In reply to: [Autoptimize] White screen after enabling CriticalCSS.com API@optimizingmatters the blank page shows up on front end and only to the pages where I have added elements from the Ultimate Addons for WPBakery plugin.
Forum: Plugins
In reply to: [Autoptimize] White screen after enabling CriticalCSS.com APIForum: Plugins
In reply to: [Autoptimize] White screen after enabling CriticalCSS.com APIHi, It looks like there is a conflict with “Ultimate Addons for WPBakery Page Builder
” https://ultimate.brainstormforce.com/ plugin.Forum: Plugins
In reply to: [Autoptimize] White screen after enabling CriticalCSS.com API@optimizingmatters I contacted KnownHost support team and here is what they said.
Two issues seem to be unrelated to each other. He is talking about the error log that I sent to you earlier.
I confirmed error logging is working by putting a broken php script in, errors were logged to /home/mywebpage/public_html/error_log as expected.
I enabled wp_debug_log as well but the plugin is simply not producing any errors.
I tried PHP 7.3 also but there was no difference.
Forum: Plugins
In reply to: [Autoptimize] White screen after enabling CriticalCSS.com API@optimizingmatters This is the only error log I could find.
[2019-06-04 13:42:14 -0400] warn [restartsrv_mysql] The system is unable to find systemd configuration for the 'mysql' service... at /usr/local/cpanel/Cpanel/ServiceManager/Base.pm line 1398. Cpanel::ServiceManager::Base::_build_service_manager(Cpanel::ServiceManager::Services::Mysql=HASH(0x113d8a8)) called at /usr/local/cpanel/3rdparty/perl/528/lib/perl5/cpanel_lib/x86_64-linux-64int/Cpanel/Class/Meta/Attribute.pm line 274 Cpanel::Class::Meta::Attribute::__ANON__(Cpanel::ServiceManager::Services::Mysql=HASH(0x113d8a8)) called at /usr/local/cpanel/Cpanel/ServiceManager/Base.pm line 493 Cpanel::ServiceManager::Base::BUILD(Cpanel::ServiceManager::Services::Mysql=HASH(0x113d8a8), HASH(0xc1ce90)) called at /usr/local/cpanel/3rdparty/perl/528/lib/perl5/cpanel_lib/x86_64-linux-64int/Cpanel/Class/Object.pm line 49 Cpanel::Class::Object::BUILDALL(Cpanel::ServiceManager::Services::Mysql=HASH(0x113d8a8), HASH(0xc1ce90)) called at /usr/local/cpanel/3rdparty/perl/528/lib/perl5/cpanel_lib/x86_64-linux-64int/Cpanel/Class/Object.pm line 41 Cpanel::Class::Object::new("Cpanel::ServiceManager::Services::Mysql", "service", "mysql") called at /usr/local/cpanel/Cpanel/ServiceManager.pm line 86 Cpanel::ServiceManager::new("Cpanel::ServiceManager", "service", "mysql") called at bin/restartsrv_base.pl line 129 scripts::restartsrv_base::__ANON__() called at /usr/local/cpanel/3rdparty/perl/528/lib/perl5/cpanel_lib/Try/Tiny.pm line 97 eval {...} called at /usr/local/cpanel/3rdparty/perl/528/lib/perl5/cpanel_lib/Try/Tiny.pm line 88 Try::Tiny::try(CODE(0x113d128), Try::Tiny::Catch=REF(0xbd27a8)) called at bin/restartsrv_base.pl line 181 scripts::restartsrv_base::run("--check", "--notconfigured-ok") called at bin/restartsrv_base.pl line 76 ==> cpsrvd 11.80.0.12 started ==> cpsrvd: loading security policy....Done ==> cpsrvd: Setting up SSL support ... Done ==> cpsrvd: transferred port bindings: 10,11,12,3,4,5,6,7,8,9 ==> cpsrvd: bound to ports [2019-06-04 13:42:15 -0400] info [cpsrvd] version 11.80.0.12 online
Forum: Plugins
In reply to: [Autoptimize] White screen after enabling CriticalCSS.com API@optimizingmatters No php error log. When I right click and try to view the source of the white page it has nothing.
@ultimatemembersupport I have a custom field with meta key
business_locations
which has multi-select field. I am using below hooks to get the values but since it returns the multiple data as an array so{business_locations}
shortcode returns ‘Array” text as a value.SO, how do I deal with such fields to make it return each value with comma separated?
add_filter( 'um_template_tags_replaces_hook', 'my_template_tags_replaces', 10, 1 ); function my_template_tags_replaces( $replace_placeholders ) { // your code here $replace_placeholders[] = um_user('business_locations'); return $replace_placeholders; } add_filter( 'um_template_tags_patterns_hook', 'my_template_tags_patterns', 10, 1 ); function my_template_tags_patterns( $placeholders ) { // your code here $placeholders[] = '{business_locations}'; return $placeholders; }
Thank you
@ultimatemembersupport sorry for the trouble. I was able to make it work with the custom hooks. An example can be found below. Now I am able to use {company_name} in the email as a shortcode to get user-submitted value (Company name) in the email.
add_filter( 'um_template_tags_replaces_hook', 'my_template_tags_replaces', 10, 1 ); function my_template_tags_replaces( $replace_placeholders ) { // your code here $replace_placeholders[] = um_user('company_name'); return $replace_placeholders; } add_filter( 'um_template_tags_patterns_hook', 'my_template_tags_patterns', 10, 1 ); function my_template_tags_patterns( $placeholders ) { // your code here $placeholders[] = '{company_name}'; return $placeholders; }
@ultimatemembersupport if possible could you give me one example? I am still learning WordPress and would help a lot.
Thank you for the awesome plugin.
WordPress Version 5.1.1 and WooCommerce version 3.6.2