Tagged: futures, mediapress
It is not picking up the photo.php template at all, and is just showing a standard image page I reckon – here’s the address it is going to: /gallery/the-yorkshire-dales/media/p1110837. That is not my post link structure.
I’ll revert to the old version, and see if it is something I’ve done.
Hi George,
I will test with v1 and 2 both and write back in the day today.Regards
BrajeshHi George,
The path to overwrite photo.php isyour-current-active-theme/mediapress/default/gallery/media/views/photo.php
Here is a screenshot showing it in twentytwentyfive theme.
https://i.ibb.co/674SJBJQ/media-photo-php.png
Regards
BrajeshHi George,
Can you point me to the url structure(how are you accessing media). You are probably not accessing it via MediaPress views.Regards
BrajeshI’m getting to it 🙂
Can I suggest the following change to the loading page for all of your MediaPress add-on plugins. It fixes a typo, and inadvertent crashes 🙂
//exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } //exit if MediaPress is not loaded If ( if ( ! class_exists( 'MediaPress') ) { exit; }
Hi George,
Thank you for the suggestion. Our new addons already have a compatibility check mechanism(either using function_exists or hooking to mpp_..actions), some of the older do have the issue. We are going through all of our addons, expect around 10 addon updates per month from now on.Regards
BrajeshThe link shown in the Gallery Grid view is
https://brigantesnation.com/gallery/moulton-henge/media/moulton-henge-1m-lidar1-national-library-of-scotland-2/
The link address I arrive at once I click this is
https://brigantesnation.com/gallery/moulton-henge/media/moulton-henge-1m-lidar1-national-library-of-scotland-2
But here is the wrap for that image – not an mpp in sight.
https://brigantesnation.com/wp-content/uploads/2025/06/Screenshot-2025-06-15-204848.png
I modified the plugin template for shortcode/grod-photo.php
/** * * Photo list in shortcode grid view * You can override it in yourtheme/mediapress/default/shortcodes/grid-photo.php * */ $query = mpp_shortcode_get_media_data( 'query' ); $lightbox_enabled = ! empty( $atts['lightbox'] ) ? 1 : 0; $lightbox_class = $lightbox_enabled ? 'mpp-shortcode-lightbox-enabled' : 'zoooom'; $media_ids = join( ',', $query->get_ids() );
This adds my zoom function to the gallery grid view, but if I enable the lightbox, and get nothing, just the attachment page, no lightbox, no description.
You must be logged in to reply to this topic.