Hello
I just installed beans to my /localhost/wordpress folder. http://localhost/wordpress/wp-content/uploads/img.jpg
This is the original source of image but in front end image source looks like: http://localhost/wp-content/uploads/beans/images/img.jpg
How can I change the featured Image path for take my ฤฑmage folder source take corretly? Thank you.
Hello everybody! Solved the problem, Changed
$edit = apply_filters( 'beans_post_image_edit', **false** );
to true at
Path: lib/templates/fragments/post.php
Hi lIkay and welcome to Beans community ๐
You should never modify Beans core files as your changes would be overwritten next time you update Beans, just like it you would never modify WordPress Core files.
Beans automatically resize the post images to avoid loading oversized images. If you do not wish to used this, you should use the beans_post_image_edit
filter in your child theme functions.php
instead of modifying the core file. Here is the code snippet to trun image editing off:
add_filter( 'beans_post_image_edit', '__return_false' );
Happy coding,
PS: I moved your intro message in the Say hello and introduce yourself thread ๐
Hello. Thank you for answer ๐ Nice to meet you. ๐