MiKeZZa
Forum Replies Created
-
This is caused by Avada Core I see. Is there anything I can do now? I really need that one.
Forum: Plugins
In reply to: [Visual Portfolio, Photo Gallery & Post Grid] Filter not visibleI have some categories in portfolio Categories. But my portfolio items are in ‘Visual Portfolio – Portfolio items’. And there I can’t find a way to connect them to a category. So I think that’s the issue…?
Forum: Fixing WordPress
In reply to: Which plugin is this?It looks like that plugin only adds 1 filter option, not 2 or 3 filters like I need…
So anyone has an other option maybe?
Forum: Fixing WordPress
In reply to: Which plugin is this?What do you mean? A custom theme with this build in or something? So it’s not a plugin? Right?
And is there a plugin or something that can achieve something like this?
Forum: Fixing WordPress
In reply to: Looking for a plugin with difficulty barI was not aware of that @jdembowski. Thank you for changing.
Forum: Plugins
In reply to: [WooCommerce] Importing attribute not workingBut in the example file they are doing this:
Id …….. Attribute 1 name Attribute 1 value(s)
So that is 1 line per product. And with an header it makes 2, indeed. But then you have this, right?
ID;Attribute 1 name;Attribute 1 value(s)
4109;Aantal spelers;1That is what I’ve tried, but doesn’t work…
Am I wrong?
Forum: Plugins
In reply to: [WooCommerce] Importing attribute not workingI’m sorry @kellymetal. I really don’t understand what to do. How do I make 2 rows of it? https://github.com/woocommerce/woocommerce/wiki/Product-CSV-Import-Schema#csv-columns-and-formatting is talking about ‘column name’ but when a column name is given to the second column it can’t hold name and value I guess?
So how do I have to split my file when I have this:
ID Attribute 1 Name Waarde eigenschap 1
3874 Aantal spelers 2I can’t imagine and way to have it working with 2 columns. Maybe it’s a little dumb, but I can’t find any example and the URL gives nice documentation for what you can do when you are started. But when you don’t know where to start…..
Forum: Fixing WordPress
In reply to: Site down at only 40 users?In my weblogs I unfortianately can’t go back 3 days…
What I see today is really really really many times this warning:
[Sun Jul 26 00:11:56.684539 2020] [proxy_fcgi:error] [pid 92607:tid 139919491446528] [client 94.110.197.22:56787] AH01071: Got error ‘PHP message: PHP Warning: count(): Parameter must be an array or an object that implements Countable in /wp-content/plugins/review-builder/com/core/ActiveRecord.php on line 409\n
I will turn on logging in WordPress now, but I don’t know if the same things will happen when site is not so busy…
Forum: Plugins
In reply to: [WooCommerce] Set default order status ”You are awesome! Works great!
Forum: Plugins
In reply to: [WooCommerce] Set default order status ”Ok @imazed. Sounds good. But I want it to be set to a status where the order can be edited. So that’s ‘pending payment’, right?
So how am I going to do that?
/** * Plugin Name: My First Plugin * Plugin URI: http://www.mywebsite.com/my-first-plugin * Description: Change order status by default to * Version: 1.0 * Author: Erwin Slob * Author URI: https://www.eswebmedia.nl */ #<editor-fold defaultstate="collapsed" desc="Default Status as Pending"> function action_woocommerce_payment_complete( $order_id ) { if( ! $order_id ) return; $order = wc_get_order( $order_id ); $order->update_status( 'pending' ); }; // add the action add_action( 'woocommerce_payment_complete', 'action_woocommerce_payment_complete', 10, 3 ); #</editor-fold>But I’m not sure about this. What must the status be? Is pending correct? Your example gives wc-print-invoice, but I can’t find out where this is coming from…
Forum: Plugins
In reply to: [WooCommerce] Imported custom propertyDo you have a tip for me @riaanknoetze? As I said I really don’t understand what to change…
Forum: Fixing WordPress
In reply to: Speeding up siteStrange… I’ve never experienced this and can’t reproduce this….
Bedankt 😉
Forum: Fixing WordPress
In reply to: Speeding up siteEvery plugin does something we need at this moment. And yes some do duplicate things, but gives best results in Google Speedrank…
So I don’t know where to start. So that’s why I was hoping to have some test results about plugins that could tell me where to investigate some time and where not…
For the 500 error; I want to figure that out, but where you see it? How can I simulate it?
Forum: Fixing WordPress
In reply to: Speeding up siteWell if I can make the site a little faster I would like to do that. And when I can find 1 or 2 plugins that cause this I would like to eliminate them.
I didn’t get a 500 error on my screen once… How to do you get them?
Forum: Fixing WordPress
In reply to: Speeding up siteOk. So you say; don’t do anything and keep it this way?