ELAN42///
Forum Replies Created
-
WordPress seems to crash without giving any textual output (blank page).
No errors in the php log file.The included file is the common-like index.php with loop and everything else.
What can I do to put easily and without redundant code the post of a category in a page?
Forum: Plugins
In reply to: How to make a mother page not-clickable?There must be a solution/plugin …
Forum: Plugins
In reply to: How to make a mother page not-clickable??
don’t tell me the only way is to use a static menu even if WP have dynamic content …
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] NGG Translation with “language switcher” pluginIs the new version of NGGallery lang_switch compatible?
Can someone insert the “apply_filters” in the code?
Forum: Plugins
In reply to: Bug?: About the more tagCan’t find a solution:
the_excerpt() takes out also the text after the more tag.
the_content(”,TRUE,”) strips the <!–more–> tag in a strange way, so in the end the_contents puts out:
<p> <span id="more-334"/> </p> <p>after the more tag</p>
At least if WordPress did not strip the more tag with that span, I could make a sub_str (all – content) to get the REAL excerpt.
Like that it’s useless…
Whan can I do? It’s impossible that no-one found a solution to this…
Forum: Plugins
In reply to: Bug?: About the more tagI still can’t understand why the output of the_excerpt() don’t stops at the “more” tag but endures 55 words.
What is the purpose of this?
How do I resolve the problem?Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Really strange bug in “scan folder” functionThe problem was caused by the fact that NGG suddently created a new gallery with the same name of the previous.
I removed it and tryed to fix things, with success.
The fact I recently changed the path from:
files/galleries/galleryname
to:
files/galleries/galleryname/Was related to this problem.
After some chmods and chowns I managed to fix things, but NGG also deleted all the pictures but (lucky me) I had a backup.
Forum: Themes and Templates
In reply to: Get a page (by ID) with a PHP call in the templateisn’t that the right forum?
I tried and it works, often, but in certain cases it doesn’t.
For example if the plugin is called somewhere, like when you are browsing a gallery’s pictures so you’re in a page like “?album=1&gallery=1” it doesn’t work.
That is the code: echo nggShowAlbum(1,null);
This displays correctly the album in a normal page, but if I click on the gallery (so I browse the pictures) the function doesn’t work anymore.
I badly need to have AT THE SAME TIME the galleries on a menu and the pictures in the page’s content.
So what can I do?
no way?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Insert ALBUMS LIST in a pageOk it works for me.
You can look at
https://www.tagvenezia.com/prodotti/
https://www.10mgvenezia.com/prodotti/To see what the plugin does.
If someone is considering this plugin useful I will publish the entire code, after I polish it a bit.
Bye
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Insert ALBUMS LIST in a pageI did it ??
I taken some code from ngg-functions and some I created.
I created a “%%ALBUMS%%” tag that, used in a page, creates dinamically a list of the albums with the galleries contained in them.The links still have some problems, but I’m working on it.
You can see the plugin in action here:
https://www.tagvenezia.com/prodotti/To work well I would need two new fields in the database, album table:
– image for album preview
– slug of the PAGE that links to the albumActually the albums link is, for example:
https://www.tagvenezia.com/prodotti/gioielli-in-vetro/Because I don’t know wich album links to wich page, I’m going to to that:
if the name of the album is GIOIELLI IN VETRO, my plugin will link the album to:
[actualpage]+”gioielli-in-vetro” (the slug for a page called like that).That is the html generated code, I like it very much and it’s very expandable with CSS:
<div class="elan-ngg-albums"> <ul id="elan-ngg-album-1" class="elan-ngg-album"> <li class="elan-ngg-album-name">Gioielli in Vetro</li> <li><a href="/prodotti/?album=1&gallery=1" class="elan-ngg-album-link">galleria A</a></li> <li><a href="/prodotti/?album=1&gallery=2" class="elan-ngg-album-link">galleria B</a></li> <li><a href="/prodotti/?album=1&gallery=3" class="elan-ngg-album-link">galleria C</a></li> <li><a href="/prodotti/?album=1&gallery=6" class="elan-ngg-album-link">galleria F</a></li> <li><a href="/prodotti/?album=1&gallery=7" class="elan-ngg-album-link">galleria G</a></li> </ul> <ul id="elan-ngg-album-2" class="elan-ngg-album"> <li class="elan-ngg-album-name">Vasi in Vetro</li> <li><a href="/prodotti/?album=2&gallery=4" class="elan-ngg-album-link">galleria D</a></li> </ul> <ul id="elan-ngg-album-3" class="elan-ngg-album"> <li class="elan-ngg-album-name">Accessori in Vetro</li> <li><a href="/prodotti/?album=3&gallery=5" class="elan-ngg-album-link">galleria E</a></li> </ul> </div>
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] (combo) plugins that improves NextGEN Gallery?A list of NGG-related plugins should be done… ??
No-one haves it?
??
Forum: Fixing WordPress
In reply to: Database Error: bug into the 2.6?Thank you whiteshadow ??