Hi Juan,
I hope you are well today and thank you for your questions.
– How can I disable image upload? I want to allow only image URLs.
You can do this by adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin.
http://ww.wp.xz.cn/plugins/simple-custom-css
div#bpfb_tmp_photo {
display: none;
}
– When I post a big image and it doesn´t fit the window width, the image is cutted. I would like to know how to fix this, so the image gets resized.
I have tested it on my test site and found the image is not getting cut but resized to the thumbnail image size and on clicking the thumbnail image on activity page it’s displaying the large original image in pop up.
If you want to change the size of thumbnail image then you can do by defining the constant BPFB_THUMBNAIL_IMAGE_SIZE having value as IMAGE WIDTH X IMAGE HEIGHT as displayed below.
define('BPFB_THUMBNAIL_IMAGE_SIZE', '300 X 150');
The best place to define the above constant is in the wp-config.php file just above the following statement.
/* That's all, stop editing! Happy blogging. */
Please advise if you have more questions.
Best Regards,
Vinod Dalvi