IndikatorDesign
Forum Replies Created
-
Thanks a lot, for your clarification. I will give it a try.
But there is another thing. I need to add a password field to a complex form. Since you cannot choose a password field from the field settings, I tried to use a text field. The problem:
This string:
JL)!t&Fq0dE%%hWoq3jG7
becomes this string and I cannot disable sanitizing:
JL)!t&Fq0dE%%hWoq3jG7
Not sure why it adds “
amp;
“, but it do not work.This hasn’t any affect: https://wpmudev.com/forums/topic/forminator-workaround-for-password-field/
Thanks
Forum: Plugins
In reply to: [Autoptimize] jQuery not optimizedI have done it. Thank you very much and best regards from the Allg?u Frank ??
Forum: Plugins
In reply to: [Autoptimize] jQuery not optimizedThis makes sense. Checked it and now it works also for jQuery in combo with your Async plugin and set jQuery also to defer.
Thanks Frank!
Forum: Plugins
In reply to: [W3 Total Cache] Can’t enable Opcode CacheAnd you can select it in the menu.
Forum: Plugins
In reply to: [WP Console - WordPress PHP Console powered by PsySH] React errorHello Edi,
yes it works with the hotfix. Thanks
Forum: Plugins
In reply to: [WP Console - WordPress PHP Console powered by PsySH] React errorIt seems that it was an incorrect declaration of a function in a script I was trying to test.
Now it works.
Thanks for your great job. Really useful.
WP 6.0
WP Console 2.2.1PHP Notice: Undefined property: WPConsole\Core\Console\RestController::$prefix in /var/www/vhosts/folder.de/domain.com/public_html/wp-content/plugins/wp-console/includes/Core/Console/RestController.php(137) : eval()'d code on line 7
Hello Dimitris,
thanks for sharing this script. I will definitely give it a try ??
Best regards.
- This reply was modified 5 years, 3 months ago by IndikatorDesign.
Forum: Plugins
In reply to: [Amazon Pay WooCommerce payment gateway] SubscriptionsWhat means soon?
We could really use a working solution right now ??
Forum: Plugins
In reply to: [Amazon Pay WooCommerce payment gateway] SubscriptionsYes, recurring processes with the official solution sold on woocommerce.com..
1. When is your solution available?
2. Can it be selected from the other payment options as usual? We do not want to work with an external button, as it is specified by the official extension.
- This reply was modified 5 years, 7 months ago by IndikatorDesign.
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] Recurring Payments – SubscriptionsGibt es hier Neuigkeiten zu, ob das funktioniert?
Wenn ja, unterstützt das auch automatische Verl?ngerungen?
Forum: Plugins
In reply to: [Nav Menu Roles] All menu items are displayed if you are not logged inHello helgatheviking,
sorry for the late answer. I have used “Home”, “Shop” and “My Account” for all users in the main menu, so this does not seem to be the problem. Maybe in my case the problem is that I am working with a multisite environment with a folder structure. Or maybe it’s really a conflict with Divi itself.
In my case, I can work in my own solution with the titles because I use different sites for different languages. It’s the cleanest and most powerful solution. I don’t like multilingual plugins because they slow down all processes and they causing a lot of problems.
So for me it’s the best way to work with my own solution and extend it as needed. So you can mark the contribution as solved for me. Unless of course “elliotbetancourt” still has questions.
Best regards, Bruno
Forum: Plugins
In reply to: [Nav Menu Roles] All menu items are displayed if you are not logged inI don’t know why it happens, but I have written my own solution and that works very well:
// filter hook inside the initialize function add_filter( 'wp_get_nav_menu_items', [ $this, 'hideMenu' ], 99, 2 ); // The function itself /** * Hide menu items for different roles * * @since 1.0.0 */ public function hideMenu( $items, $menu ) { $index = 0; $remove = []; foreach ( $items as $key => $item ) : switch ( $item->title ) : case 'Title 1' : if ( ! get_user_meta( wp_get_current_user()->ID, 'my_meta_key', true ) ) $remove[] = $index; break; case 'Title 2' : case 'Title 3' : if ( ! current_user_can( $this->whatever ) ) $remove[] = $index; break; endswitch; $index++; endforeach; foreach ( array_reverse( $remove ) as $key => $val ) : unset( $items[$val] ); endforeach; return $items; } // end hideMenu