Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Participant
    Level: Master
    Posts: 485
    Venutius on in reply to: How can I best achieve my perfect single photo view? #55540

    I have fixed it:

    class-mpp-admin-settings-page.php line 625:

    Was if (typeof(localStorage) !== 'undefined') {

    Now if (typeof(localStorage) !== 'null') {

    Now I can get back to understanding why MediaPress is not loading the right size photo, or the photo.php template file.

  • Participant
    Level: Master
    Posts: 485
    Venutius on in reply to: How can I best achieve my perfect single photo view? #55539

    On the MediaPress settings page, the contnt loads, but then then all tabs are hidden, and I get the following error:

    [2025-06-17 11:20:37] - Javascript Message: Uncaught Error: Syntax error, unrecognized expression: #038; - URL: https://brigantesnation.com/wp-admin/load-scripts.php?c=0&loadchunk_0=jquery-core,jquery-migrate,utils,wp-hooks,jquery-ui-core,underscore,moxiejs,plupload,jquery-ui-mouse,jquery-ui-sortable,jquery-t&loadchunk_1=ouch-punch&ver=c6d0b1135633ba322c1db55348037e4b - Line: 2
    

    I thought it was because the ampersand was being misprinted, but now I understand that this printed behaviour is correct, and that some js on this page is failing to recognise that content.

  • Participant
    Level: Master
    Posts: 485
    Venutius on in reply to: How can I best achieve my perfect single photo view? #55536

    Ok, learning every day 🙂

    It seems that having an ampersand printed as # 0038 ; is expected behaviour, and that it is some js, that is not recognising that expected expression that is failing. it is an html decode issue.

  • Participant
    Level: Master
    Posts: 485
    Venutius on in reply to: How can I best achieve my perfect single photo view? #55535

    I renamed the plugins directory and selected the 2021 theme and it is still happening.

  • Participant
    Level: Master
    Posts: 485
    Venutius on in reply to: How can I best achieve my perfect single photo view? #55531

    Yes, this is not Mediapress, Mediapress is affected because the js for the settings reveal is looking for an & in the link string, and can’t find it. but the same thing seems to be happening to all the backend pages. I’ll wait till later tonight and do another plugin deactivation session. It has to be a plugin somewhere.

  • Participant
    Level: Master
    Posts: 485
    Venutius on in reply to: How can I best achieve my perfect single photo view? #55525

    & symbols are being swapped for & # 0 3 8; – remove the spaces, your wordpress refuses to print those when placed together. It seems related to checking for block based content in wptexturise.

    • This reply was modified 9 months ago by Venutius.
  • Participant
    Level: Master
    Posts: 485
    Venutius on in reply to: How can I best achieve my perfect single photo view? #55524

    That was my bad, it turns out.

    Things are going from bad to worse. I now have a situation where the js fails only on the MPP settings page. But, the failures seem to be due to WordPress deciding that all & symbols on the page need to be swapped to & currently this in only happening on the MPP settings page, but I had to deactivate a news-ticker plugin that was doing the same thing.

    I’m not stressing, though, the front end is still working as it was. It is missing the zoom, but, it’s loading the wrong image and there is nothing to zoom.

    I did deactivate all plugins, and nothing changed..

  • Participant
    Level: Master
    Posts: 485
    Venutius on in reply to: How can I best achieve my perfect single photo view? #55523

    Line 183 of shortcode-gallery-list.php has a crash bringing typo – 'class' => 'mpp-gallery',

    In the original file, the end comma is a full stop.

  • Participant
    Level: Master
    Posts: 485
    Venutius on in reply to: How can I best achieve my perfect single photo view? #55522

    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.

  • Participant
    Level: Master
    Posts: 485
    Venutius on in reply to: How can I best achieve my perfect single photo view? #55521

    This is the gallery (bottom of the page) I was looking at.