anielsen
Forum Replies Created
-
I think I’m getting the same thing. Here is a screenshot of what I’m getting: https://i47.tinypic.com/2wdbzeq.jpg
I get the same spinning wheel no matter if I’m trying to insert a Gallery, Album or Picture.
Here is my setup:
WP 3.3.2
NextGEN Gallery Plugin 1.9.3
Firefox 13.0.1 (Mac OS X 10.6.8)
Chrome 19.0.1084.56 (Mac OS X 10.6.8)
Firefox 12.0 (Windows 7)
Internet Explorer 9.0.8112.16421 (Windows 7)Thanks for the tip!
Just tried it and it works, except it doesn’t seem to honor the ex_cats list. So if a Post is in 6 different categories and 5 of those are in the ex_cats list I want it to only show the one left over category.
And in addition to the ex_cats, I would hope that it would honor the in_same_cat and ex_cats_method values to further limit the resulting category names.
I wish I knew more PHP so I could look at the code and a) figure out if this was even possible and b) help make it possible :-/
Thanks for the reply and I can understand why “x of y” isn’t currently possible, but is it possible to echo the name of the category that the plugin has keyed in on for the Next/Previous?
I tried messing around with the ‘return’ => ‘object’ and ‘return’ => ‘output’ but they both just returned nothing/blank.
This code works, but requires I add every Category ID that I want to exclude as we add more Categories:
<div id="next-previous-nav"> <?php if (previous_post_link_plus( array( 'order_by' => 'post_date', 'loop' => false, 'link' => "Previous", 'tooltip' => 'Previous letter', 'in_same_cat' => true, 'ex_cats_method' => 'diff', 'ex_cats' => '35493, 27136, 35316, 596, 455, 42965, 42968, 35502, 35504, 35500, 476, 1, 42963, 293', ) ) ); else echo "<em>This is the first page in this section</em>"; ?> | <?php if (next_post_link_plus( array( 'order_by' => 'post_date', 'loop' => false, 'link' => "Next", 'tooltip' => 'Next letter', 'in_same_cat' => true, 'ex_cats_method' => 'diff', 'ex_cats' => '35493, 27136, 35316, 596, 455, 42965, 42968, 35502, 35504, 35500, 476, 1, 42963, 293', ) ) ); else echo "<em>This is the last letter in the section</em>"; ?> </div>
This code doesn’t differentiate between when Category 35505 ends and 42971 begins, the Next>> just keeps on going:
<div id="next-previous-nav"> <?php if (previous_post_link_plus( array( 'order_by' => 'post_date', 'loop' => false, 'link' => "Previous", 'tooltip' => 'Previous letter', 'in_cats' => '35505, 42971, 42973', 'ex_cats_method' => 'diff', ) ) ); else echo "<em>This is the first page in this section</em>"; ?> | <?php if (next_post_link_plus( array( 'order_by' => 'post_date', 'loop' => false, 'link' => "Next", 'tooltip' => 'Next letter', 'in_cats' => '35505, 42971, 42973', 'ex_cats_method' => 'diff', ) ) ); else echo "<em>This is the last letter in the section</em>"; ?> </div>
Thanks for the great plugin and taking the time to help me out!
I am getting the same error.
We recently upgraded our WordPress server to 3.3 and the NextGEN plugin to 1.9.1.
Here are some screenshots if they help:
If I upload the files individually they upload fine.