kees78
Forum Replies Created
-
I just send a support ticket through the website including a system report.
Hi,
Thanks for the explaination, although it is not really what my question is about.
What is the specific purpose of this function, which variables can be accesses, and at what point is the filter active?
Hi,
We use elementor to build this website. There is no “Mobile mode” on the widget settings. Maybe i can send the login details to one of your developers so they can check themselves?
Hello,
Any news on this one?
The problem is with the select field with label “Plaats”.
I tried the other two options as well. Native is not what we want, Wooselect is not working either (just tested).
- This reply was modified 10 months, 2 weeks ago by kees78.
Forum: Plugins
In reply to: [Yoast SEO] Yoast not excluding cpt from sitemapOk for anybody running in the same problem: i found out that the sitemap option is stored in the options database under wpseo_titles. So if you want to programmatically remove your custom post type from indexation, use this function:
function remove_sitemap_cpt() { $yoast_settings = array(); $cpt = 'your-custom-cpt'; //fill in your cpt if(!empty(get_option('wpseo_titles'))){ $yoast_settings = get_option('wpseo_titles'); } if(isset($yoast_settings['noindex-'.$cpt]) && empty($yoast_settings['noindex-'.$cpt])){ $yoast_settings['noindex-'.$cpt] = true; update_option('wpseo_titles',$yoast_settings); } } add_action('admin_head','remove_sitemap_cpt');
- This reply was modified 10 months, 2 weeks ago by kees78.
Forum: Plugins
In reply to: [Yoast SEO] Yoast not excluding cpt from sitemaphi,
i know i can turn it off in the settings, but i want to do it programmatically for reasons of automation. Somehow the filter provider does not work. How come?
Forum: Plugins
In reply to: [Yoast SEO] Yoast not excluding cpt from sitemapSorry weekend in between. Yes the cpt is showing in the yoast content types. But i want to programmatically exclude it from the sitemap. The function does not prevent this however. How to proceed?
Hello? Anybody?
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] extend table classSorry little typo. I changed the file bulk-table.php. Sending it to you now.
I have increased it to 2048M, max of the server, but still the same…
Forum: Plugins
In reply to: [WooCommerce] Error updating product lookup tableHere it is:
AH01071: Got error 'PHP message: PHP Fatal error: Uncaught TypeError: Argument 4 passed to Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore::insert_lookup_table_data() must be of the type int, null given, called in /var/www/vhosts/xxxxx/httpdocs/wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/LookupDataStore.php on line 400 and defined in /var/www/vhosts/xxxxxx/httpdocs/wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/LookupDataStore.php:620\nStack trace:\n#0 /var/www/vhosts/xxxxx/httpdocs/wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/LookupDataStore.php(400): Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore->insert_lookup_table_data()\n#1 /var/www/vhosts/xxxxx/httpdocs/wp-content/plugins/woocommerce/src/Internal/ProductAttributesLookup/LookupDataStore.php(363): Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore->create_data_for_simple_product()\n#...', referer: https://xxxxx/wp-admin/admin-ajax.php?action=as_async_request_queue_runner&nonce=5ca60b5e27
Sorry, turned out a field was set as hidden, mandatory but not auto filled.
After changing, error disappeared.Forum: Plugins
In reply to: [Facebook for WooCommerce] external merchant setting is nullHi,
It actually turned out the problem is solved, probably because it was caused by another conflict: out of max execution time for various woocommerce plugins.
Since increasing the max_execution_time, error disappeared.Kind regards, Kees