faca5
Forum Replies Created
-
Forum: Plugins
In reply to: [Code Snippets] PHP 8.1 – eval()’d code on line 7Correct.
Error was in snipped.
Before:
if ( WC()->cart->total > $maximum ) {
After – solution:
if(isset(WC()->cart->total)) { if ( WC()->cart->total > $maximum ) {
Forum: Plugins
In reply to: [Code Snippets] PHP 8.1 – eval()’d code on line 7SOLVED!
Forum: Plugins
In reply to: [Polylang] Language switcher – navigation menu – Not showingProblem solved!
I have to add “Language switcher” from Options to display on left side.
Now I can add on new menu.
Forum: Plugins
In reply to: [Polylang] Language switcher – navigation menu – Not showingAccording to the latest posts from April 11, 2022 it should work.
https://polylang.pro/doc/the-language-switcher/#ls-in-menuForum: Plugins
In reply to: [Polylang] Language switcher – navigation menu – Not showingI have found this post from January 3, 2016.
https://polylang.pro/doc/i-cant-add-the-language-switcher-in-the-menus/Is possible to add manually in database?
What I need to do?
Allow user to check this options (turn on – default/off).
I dont know if your plugin add or it can remove X-Mail-From. It will be great that this line can be removed as additional setting.
Example:
X-Mail-from: the sender address from the original SMTP envelope.Thank you!
I already did.
You can add somekind of alert/notification for re-entering login data.
Imagine you have site when you redirect pay traffic and contact form with your SMTP plugin is crusual. No one know that contact form stop work it self if you have auto update. Re-testing entire site it doesn’t make sense for each “update”.
Problem was related with 1 product which wasn’t object.
Solution!
Add if(gettype($product) == ‘object’) {.
private function eec_get_visible_products( $product_ids ) : array { $data = []; $position = 1; foreach ( $product_ids as $key => $product_id ) { $product = wc_get_product( $product_id ); if(gettype($product) == 'object') { $data[$product->get_id()] = [ 'id' => (string) $product->get_id(), 'sku' => (string) $product->get_sku(), 'name' => (string) $product->get_name(), 'price' => (string) $product->get_price(), 'brand' => $this->get_brand_name( $product->get_id() ), 'category' => (array) $this->get_product_category( $product->get_id() ), 'quantity' => (int) 1, 'position' => (int) $position, ]; $position++; } } return $data; }
Forum: Fixing WordPress
In reply to: WP-ADMIN has been changed to custom nameHello.
> What are you trying to accomplish?
I need by-pass HTTP AUTH. Site will use external users.> Do no edit core files.
I need custom solution.If necessary I can rename all word “wp-admin” to “custom name” in all files.
I know WP upgrade won’t be possible any more.
I have tested a lot of plugins none of them work correct.Only this plugin I cannot test because functionality has only pro version.
https://www.ads-software.com/plugins/loginizer/“Rename WP-Admin URL – The Admin area in WordPress is accessed via wp-admin. With loginizer you can change it to anything e.g. site-admin”
Note: Folder “wp-admin” should be dynamic, changeable.
Forum: Fixing WordPress
In reply to: WP-ADMIN has been changed to custom nameHello.
I need to change “wp-admin” and not just “hide”.
I have already tried 109 plugins none of this works.
I found Loginizer plugin but basic version doesn’t have this functionality.
Note: There was no changes on .htaccess (only config, 2x files in wp-includes for CSS and JS and added new functions, duplicated wp-admin with new custom name).
Ok.
We have already fixed database size with removing old data.
Thank you!
Users who use WordFence has higher CPU usage of other users.
One of plugin WordFence or iThemes in the past it make database 3 GB but it should be only 200 MB.
We recommend that you do serveral testing on your plugin using high volume of traffic. Your plugin set to many record (connection) to MySQL database. CPU is higher then usual (lookup IP address etc…). This is just recommendation to improve your plugins because without all these problems is great.
I found. Page as “Dashboard” need to be assign on that membership level.
Thank you!
Forum: Plugins
In reply to: [LifterLMS - WP LMS for eLearning, Online Courses, & Quizzes] QuizHello.
It works. Thank you!