jamescl
Forum Replies Created
-
Hi,
Have tested this version and the issue is resolved.
Thanks!
Forum: Plugins
In reply to: [Jetpack VideoPress] Requirement to share site data unnecessaryYour squeeze page makes direct comparisons with Vimeo and YouTube – https://jetpack.com/videopress/ , so I had assumed that you could directly compare the products.
It seems strange to me to design a product that collects more data than necessary to deliver the particular service (i.e. video hosting) – and to me seems like a breach of data privacy principles, but I guess I’ll have to choose a different product.
Forum: Plugins
In reply to: [Jetpack VideoPress] Support on jetpack.com not available for paid customershi,
there’s no question mark on jetpack.com – do you mean the wordpress.com?
This is what I see – https://pasteboard.co/PqB6YgXt7jWz.png – I’ve now cancelled my sub for videopress, but the message and upgrade button were there when I had purchased the sub.
Forum: Plugins
In reply to: [Jetpack VideoPress] Requirement to share site data unnecessaryHi,
I understand that you don’t share data with others, but I would be sharing data with you that as far as I can ascertain is not needed to provide a video service. The fact that vimeo or youtube does not demand user data is proof of this.Your gdpr page says
We respect the GDPR’s principles of minimizing the amount of data we collect,
which is an outright lie as you are colleting much more information than you need to deliver this service.
Forum: Plugins
In reply to: [WooCommerce] Marketing tab unneeded / sets cookie without permissionThanks @seank123 ?? – good to know you can remove the marketing menu with code.
It’d be good to get a response from someone at automattic about the cookie and the location of this at the top level.
Forum: Plugins
In reply to: [WooCommerce] Marketing tab unneeded / sets cookie without permissionJust to add I have “Allow usage of WooCommerce to be tracked” unchecked – so not only have you failed to let me know about a cookie, you have actively ignored my preference.
- This reply was modified 4 years, 8 months ago by jamescl. Reason: type
Forum: Fixing WordPress
In reply to: Shortcut keys like alt-i and alt-b do not work cross blocksThanks for the reply – I have raised here
https://github.com/WordPress/gutenberg/issues/20568Hi,
Thanks for your help. I got it working by using
function jamescl_afi_posts_only( $content, $post_id ) {
if ( 'post' !== get_post_type( $post_id ) ){
return '';
}
return $content;
}
add_filter( 'wds_featured_images_from_video_filter_content', 'jamescl_afi_posts_only', 10, 2 );