• Resolved candy2012

    (@candy2012)


    this script conflicts with anything under the wordpress sun, especially with wordpress 3.3.1 itself …
    Not only it brakes the admin interface, it kills any kind of display in frontend as well.
    obviously a js/jquery conflict, I wonder when will developers consider those aspects when writing those codes?
    And yep, it IS this script. Once decativated everything is back on track!

    http://wordpress.org/extend/plugins/global-posts-ordering/

Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author Rasso Hilber

    (@nonverbla)

    Hi Candy, doesn’t break anything in my installation, I also have 3.3.1 running. Of course, I ‘considered’ the aspects of unobtrusive scripting, but maybe I missed something. Do you have more information on what it breaks in your installation?

    Thread Starter candy2012

    (@candy2012)

    Hi,
    Can you for example clarify the mistery sorrounding the display of ONLY 5 posts (custom type) no matter how many I select in the settings !??! (I did select for ex 10!)
    The first 5 posts are ok, the 6th however is broken, instead of the thumbnail, the “it’s loading” image is displayed and of course the whole information correspoding to the 6th article is not pulled at all in any way.

    I have inserted your codes (as I said, the fists 5 posts from that post-type seem to be OK) starting with the 6th is’t all broken ..
    Wicked nr. 6 or what !??!

    Thanks

    Error on page /wp-admin/admin.php?page=global_posts_ordering:

    Warning: _() expects exactly 1 parameter, 2 given in /home/denrojde/public_html/wp-content/plugins/global-posts-ordering/global-posts-ordering.php on line 153

    How to solve this error?

    Plugin Author Rasso Hilber

    (@nonverbla)

    @ candy2012: if you use the function get_posts in your template, wordpress defaults to 5 posts and ignores the settings in the admin area. You have to set the variable “numberposts” to a number of your choice or -1 for all posts:

    $args = array(
       "post_type"=>array("my_post_type_1", "my_post_type_2"),
       "orderby"=>"menu_order",
       "order"=>"ASC",
       "numberposts"=>-1
    );
    $posts = get_posts($args);

    Also, you could use the methods described on the postMash Installation Page. Hope this helps.

    Plugin Author Rasso Hilber

    (@nonverbla)

    @ Ivankovaiko: Solved this error message in Version 0.9.1

    Thread Starter candy2012

    (@candy2012)

    @nonverbla

    wow! I think that broke the witchcraft spell, you know?
    I have my posts displaying now !

    Thanks wizard 🙂

    /wp-admin/admin.php?page=global_posts_ordering
    He writes that:

    Here you can change the global order of , and .

    Sorry, no posts to available yet!

    Plugin Author Rasso Hilber

    (@nonverbla)

    @ Ivankalko: It seems like you have given the wrong post types to the plugin. Re-Check if they actually exist. You can check if the plugin works at all by using it with the built-in post types:

    if ( class_exists("global_posts_ordering") ) {
       $global_posts_ordering = new global_posts_ordering(array("post", "page"));
    }

    Hi,

    I have installed the plugin and I have seen my options that are showing the re-order option, however there is one that is not showing it.

    Could you please help me figuring out what could be?

    Please check the following images:

    1. In this link http://208.106.232.226/errors/globalpostorder1.JPG you’ll see the options that have the re-order (circled in red)

    2. Here, http://208.106.232.226/errors/globalpostorder2.JPG you’ll see the one that basically I need to change the order and it’s not showing the re-order option.

    Thanks
    Best Regards

    Hi,

    Has anyone been able to take a look at the links attahed in the above email?

    Thanks
    Regards

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘[Plugin: Global Posts Ordering] Conflicts , does not work properly’ is closed to new replies.