gearsdigital
Forum Replies Created
-
Forum: Plugins
In reply to: [Front-end Editor] WP Minify problem & QUESTIONI’ve figured it out. Maybe it was a caching problem… These Minfy Settings solved the Problem for me.
If someone run into the same problem here are the listed files. Just copy and paste.
JavaScript:
editorCSS:
ext-all.css
Link.css
aloha.css
table.css
xtheme-gray.cssDont forget to clean the WP-Minify Cache manually.
Regards
Forum: Plugins
In reply to: [Front-end Editor] WP Minify problem & QUESTIONSame Problem here… this how it looks
Excludig the Front-End Editor Scripts + CSS does not work. Any suggestions?
Forum: Fixing WordPress
In reply to: How to set a default parent pageThank you.
Forum: Fixing WordPress
In reply to: Thumbnail Teaser for PageI found a solution my own. It’s a WordPress core feature.
Just add this to your Themes function.php
add_theme_support( 'post-thumbnails', array( 'page' ) );
After that you can call the Thumbnail like this in your Template.
<?php the_post_thumbnail(array(133, 92)); ?>
You could pass any data with
$gallery->pagelink
(for example). To see what is the value of$gallery
you need to do something like thisprint_r($gallery->pagelink);
Otherwise you will find some more informations in every file within the view folder in your NGG Plugin directory.
Craig,
is there a way to display galleries like this
https://example.com/photos/galleryname
and any further galleryhttps://example.com/photos/other-galleryname
?https://example.com/photos/
should be an overviewpage of all Galleries.Currently i got urls like this one:
https://example.com/photos/photos/galleryname
.
The first photos section is a wp-page where i call the album[album id=1 template=extend]
.The name of the Album is also photos… Any suggestions?You’ll find the whitespace in all of the 4 changed files. I’ve used a clean WP3 Install (german localization) to test it out. It seems to be reproducable.
He Craig,
you should remove the trailing whitespace in your files after the closing (
?>
) Php Bracket. I’ve got some “Headers allready sent” Errors. After removing the whitespace it works like a charm ??Thanks for your work.