kees78
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Widgets ESI settings not saving and not workingWe use the classic widgets editor but it doesnt work either?
THanks, i have mailed.
Forum: Plugins
In reply to: [Cloudinary - Deliver Images and Videos at Scale] error sync class fileI cannot send 255MB attachments however. Is it not more convienant for you guys to login to the website? I can send user details?
Forum: Plugins
In reply to: [Cloudinary - Deliver Images and Videos at Scale] error sync class fileI downloaded the tables. 255MB in total. How would you like me to reach out to you?
Forum: Plugins
In reply to: [Cloudinary - Deliver Images and Videos at Scale] error sync class fileHey Loic,
I cannot generate the system report because whenever i activate cloudinary, the site crashes.
Do you still want me to sent an email?
Hi,
It seems a bit tricky for us to post this sensitive data on a public forum. Is there a way to pass this privately?
I have trouble posting all that information here, visible for all visitors.
- This reply was modified 1 year, 1 month ago by kees78.
We are not using wpml neither loco translate or any other of these plugins.
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 2 years, 5 months ago by kees78.
Ok 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 2 years, 6 months ago by kees78.