WP Company
Forum Replies Created
-
Hi @61pixels,
I wasn’t able to reproduce the issue. However, I’ve implemented your suggested code changes, and everything still appears to be working correctly. I hope this has helped on your end as well after updating. Please let us know if you need anything further.
Hi @61pixels,
Thanks for submitting your ticket. We’ll look into this issue and let you know as soon as an update is rolled out.
Forum: Plugins
In reply to: [Media Focus Point] Focus point settings appear on random pageHello @vixperth ,
Some time has passed since our new update which remedied this issue. I will mark this issue as resolved.
If the issue persists, please let us know. If you enjoy using our plugin, consider leaving us a review!
Forum: Plugins
In reply to: [Media Focus Point] Focus point settings appear on random pageHello @vixperth ,
Thank you for bringing this to our attention. We have just updated our plugin to try and remedy this issue.
Could you confirm for us that, after updating, the issue is no longer present?
Hello @make-carlos ,
Thank you for using our plugin and for bringing this issue to our attention. Your screenshot helped us pinpoint where the issue came up.
We have just pushed a new update which should fix this problem.Consider leaving us a review if you enjoy using our plugin!
Hello @timwakeling-1 ,
Thank you for using our plugin and for bringing this issue to our attention.
We have just pushed a new update which should fix this problem.Consider leaving us a review if you enjoy using our plugin!
Forum: Reviews
In reply to: [Media Focus Point] This should be a core functionalityThank you for your review!
Your comment on wide images incited us to check the behaviour ourselves and we agree that it could be improved. We just pushed a new update which aims to remedy this issue.
Forum: Plugins
In reply to: [Media Focus Point] .close.button CSS style interferes with default WP CSSThank you for mentioning this to us.
We just pushed a new update to our plugin in which all our classes and corresponding selectors have been properly prefixed to address this issue.
Consider leaving us a review if you enjoy using our plugin!
Forum: Plugins
In reply to: [Media Focus Point] Do you have integration with elementor?Hello @juanjosezg ,
When you set a focus point on an image it will be applied to images placed via elementor.
However, due to the way elementor works, you will need to update any pages containing images using a focus point after changing the focus point of those images. They will keep using the old focus point otherwise.
Forum: Plugins
In reply to: [WooCommerce] Issue with Checkout.js Update in Version 9.7.1@serafinnyc that didn’t work unfortunate.
Forum: Plugins
In reply to: [WooCommerce] Issue with Checkout.js Update in Version 9.7.1This is the development environment: https://avv.wpcompany.nl/locatie-datum?course=3832
When you checkout this product and continue after the address you get this message.
I know we have a customised checkout, but when i use a different theme I get the same issue.Schreenshot: https://i.ibb.co/pjmVW11k/Screenshot-2025-03-11-at-09-52-44.png

- This reply was modified 1 year, 3 months ago by WP Company.
Forum: Plugins
In reply to: [Media Focus Point] Using focus point in templateWe believe this new addition resolved your issue. If you find that you still have problems please open another ticket.
If you enjoy using our plugin, consider leaving a review.
- This reply was modified 1 year, 4 months ago by WP Company.
- This reply was modified 1 year, 4 months ago by WP Company.
Forum: Plugins
In reply to: [Media Focus Point] Using focus point in templateThe plugin previously only applied it to the <img> element.
Thanks to your feedback, we’ve added a new function in the latest update (1.3) that now also applies it to background images, like this:
<div class="myelement" style="<?= MFP_Background($image_id); ?>">
</div>This update adds the cover, background-image, and background-position.If you’d like to add it without the background-image, you can use this:
<div class="myelement" style="<?= MFP_Background($image_id, false); ?>">
</div>We hope this update makes things easier for you. If you have any feedback, feel free to let us know.
Forum: Plugins
In reply to: [Media Focus Point] Using focus point in templateYes ofcourse. You can use like this:
$image_id = get_post_thumbnail_id() ?? null;
if($image_id) {
$image = wp_get_attachment_image($image_id, 'full');
echo $image;
}
<style>
img {
height: 200px;
width: 100%;
object-fit: cover;
}
</style>