orenstransitpage
Forum Replies Created
-
PS the uninstall/reinstall instructions I found were over 2 years old, though I did find these instructions, too: https://www.imagely.com/docs/how-to-rollback-a-version/. If following those instructions is what I need to do, I’ll give that a try. If it is a different process, tell me about that and I’ll follow those instructions instead. TIA!
Cais,
Thank you for all your help with this!
The style sheets are showing up in the drop down, as seen here.
<img src=https://orenstransitpage.com/screenshot.png>
I did install NextGen Gallery on a single site environment and the problems cropped up after I changed it over to multisite. I did some searching for instructions on how to uninstall and reinstall NGG without losing my data (not the photos themselves also but the galleries, albums, captions, etc.). I have over 7000 photos in the galleries on my site, so if an uninstall results in complete data loss I have quite a mess on my hands.
I’m holding off on the update of NGG that came out today until this is resolved, unless you think that upgrading the plugin will solve my problems somehow.
Thanks again!
Cais, the URL of the CSS I’m trying to use is orenstransitpage.com/public_html/wordpress/wp-content/ngg_styles/nggallery333.css
I attempted to see if W3 Total Cache had remnants on my server and .htaccess tonight, but it seems those are all gone. My next step is likely trying to overwrite the css.min files with the attributes I want, but that seems like it would only be a temporary solution at best.
Cais,
They are located in /wp-content/ngg-styles/, they were there prior to launching multisite when everything went haywire. I can post the exact URL of the CSS I want to be using later if that would be helfpui (I’m in the office at the moment whereas my website files are on the computer at home).
Oren
So I added the !important directive, I cleared out all the custom CSS files that I had uploaded, and I’m still getting the minified version of the site (and can’t select the updated CSS file that I want from the drop down in the network settings. Is there a way to just disable minification in this plugin outright? Or is something else still wrong? TIA!
Forum: Networking WordPress
In reply to: 404 Errors on Network DashboardStill getting a 404 error, so that doesn’t seem to have done anything. Was I supposed to reset the permalink on the Oren’s Transit Page dashboard? There isn’t a reset permalink option from the network dashboard as far as I can tell.
Thanks. I was able to get those options, but the CSS I’ve selected doesn’t seem to be the one loading. Instead, it loads a minified version of a CSS that doesn’t appear to be the one I’ve selected to use. Might something else be at play now?
Looks like this is a problem again. I updated the plugin, the descriptions disappeared, I uploaded a new php file (see below) with the description command to the legacy folder, set the basic thumbnails to render the associated template in the legacy folder referenced above, and the descriptions are still not showing up. Any thoughts at this juncture? Thanks, in advance!
<?php
/**
Template Page for the gallery overviewFollow variables are useable :
$gallery : Contain all about the gallery
$images : Contain all images, path, title
$pagination : Contain the pagination contentYou can check the content when you insert the tag <?php var_dump($variable) ?>
If you would like to show the timestamp of the image ,you can use <?php echo $exif[‘created_timestamp’] ?>
**/
?>
<?php if (!defined (‘ABSPATH’)) die (‘No direct access allowed’); ?><?php if (!empty ($gallery)) : ?><div class=”ngg-galleryoverview ngg-template-caption” id=”<?php echo $gallery->anchor ?>”>
<?php echo $gallery->description ?>
<?php if ($gallery->show_slideshow) { ?>
<!– Slideshow link –>
<div class=”slideshowlink”>
slideshow_link) ?>”>
<?php echo $gallery->slideshow_link_text ?>
</div>
<?php } ?><!– Thumbnails –>
<?php $i = 0; ?>
<?php foreach ( $images as $image ) : ?><div id=”ngg-image-<?php echo $image->pid ?>” class=”ngg-gallery-thumbnail-box” <?php echo $image->style ?> >
<div class=”ngg-gallery-thumbnail” >
imageURL) ?>”
title=”<?php echo esc_attr($image->description) ?>”
<?php echo $image->thumbcode ?> >
<?php if ( !$image->hidden ) { ?>
<img title=”<?php echo esc_attr($image->alttext) ?>” alt=”<?php echo esc_attr($image->alttext) ?>” src=”<?php echo nextgen_esc_url($image->thumbnailURL) ?>” <?php echo $image->size ?> />
<?php } ?>
<span><?php if (!$image->hidden) { echo $image->caption; } ?></span>
</div>
</div>
<?php if ( $image->hidden ) continue; ?>
<?php if ( $gallery->columns > 0 && ++$i % $gallery->columns == 0 ) { ?>
<br style=”clear: both” />
<?php } ?>
<?php endforeach; ?><!– Pagination –>
<?php echo $pagination ?></div>
<?php endif; ?>
Thanks, this seems to have worked.