ELAN42///
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Category have one post? show it like a single postis it so hard ?
should be a basic feat …
Ok I understood the problem:
In the “Path to the Imagerotator (URL):” field you have to insert the complete url (with https://) of the swf file.I know that URL is written … but Alex you should put an example in the right so it’s clearer !
I think it’s a new bug of 1.6 …. was working before the upgrade.
Now I can no more test this.
The swf path is correctly set.I’m already using default style …
I think the problem is php side, I get a wheel spinning forever and there is no html code in the page that shows the images names/link.
This is what [slideshow id=2] puts out:
<div style=”height: 300px; width: 400px;” class=”ngg-slideshow” id=”ngg-slideshow-2-624-1″>
<div style=”height: 300px; width: 400px;” class=”ngg-slideshow-loader” id=”ngg-slideshow-2-624-1-loader”>
<img alt=”” src=”https://www.ivbc.it/wp-content/plugins/ELAN-ngg-CURRENT/images/loader.gif”>
</div></div>
<script defer=”defer” type=”text/javascript”>
jQuery(“#ngg-slideshow-2-624-1″).nggSlideshow( {id: 2,fx:”fade”,width:400,height:300,domain: “https://www.ivbc.it/”,timeout:5000});
</script>Nothing else.
What do you mean by “Use default theme”?
Forum: Themes and Templates
In reply to: Multiple Loops problem: make plugins parse their special tagsMy problem is that using that functions (like the_content) I find post duplicates with my new query, because it’s not the first but the second one.
So I made a query to find only the right ID of the right post, and I hoped to take out it’s content only.
What can I do?
Forum: Themes and Templates
In reply to: Multiple Loops problem: make plugins parse their special tagsOk, but how do I pass $post_id_7 to the_content() ?
Forum: Plugins
In reply to: Using Media File’s attributesAlex? ??
Forum: Themes and Templates
In reply to: Check in the Loop if a post is password protectedThe “if” block works, it understands if a post is password protected.
However $post->post_excerpt;
is empty.Do someone knows why? Do I have to take some global variable before this code?
Forum: Fixing WordPress
In reply to: Changed tables names : error at loginOh I found that several more steps have to be done:
https://tdot-blog.com/wordpress/6-simple-steps-to-change-your-table-prefix-in-wordpressThat’s not a smart thing … to use table prefixes inside table contents.
Forum: Fixing WordPress
In reply to: Changed tables names : error at loginp.s. just the login don’t works, the “front website” works with it’s theme.
Forum: Themes and Templates
In reply to: Should be Easy: know how much posts there are inside a categoryThank you very much kitty !!!
Now I don’t need pages anymore …
Forum: Themes and Templates
In reply to: Should be Easy: know how much posts there are inside a categoryThank you t31os_
This is for sure cleaner code, but it’s not counting the posts in the sub-categories of that category.
How can I do?
Forum: Themes and Templates
In reply to: Should be Easy: know how much posts there are inside a categoryThis works but it’s not recursive:
(int) get_category($CATEGORY_ID)->category_count;The crash is on query_posts
I tryed also with:
<?php query_posts(array(‘cat’=>1,’paged’=>$paged)); ?>