• hi @ all

    i use WordPress 3.3.2. and the responsive Theme Origin and had been very happy to find this pretty slideshow – plugin, perfect for my needs.

    But when i tried to have multiple meteor slideshows (all with different shortcode like [meteor_slideshow slideshow=”xxx”]) it happened that only the first made one, placed on the “home”-page, is shown allready.

    Addionally i use the Plugin Polylang for the multilinual functionality. (and else NextGEN Gallery, Widget Logic Visual + Contact Form 7)

    This Polylang seems to make simply only different pages in this four languages i need. But if i want a slideshow to show on these pages too (with a specific shortcode like “slideshow=”yyy”) there will happen nothing. The data for that slideshows aren′t inserted in these pages …

    Does anyone have an idea please, why the other 3 slideshows aren′t shown?

    https://www.ads-software.com/extend/plugins/meteor-slides/

Viewing 4 replies - 1 through 4 (of 4 total)
  • I just quickly tested the plugin meteor slides with polylang and it works quite well. I created one slideshow in French, translated it in English. Did the same for some slides (pictures are automatically synchronized by Polylang between translations).

    Then I created a post with the shortcode [meteor_slideshow slideshow=”slideshow-fr”] and its translation with [meteor_slideshow slideshow=”slideshow-en”] (slideshow-fr and slideshow-en are the slugs I gave to my slideshows) and everything works.

    I just noticed a glitch in the admin ui: the languages columns do not appear in the slides panel (it’s OK in the slideshows panel).

    @ JLeuze

    I found the reason for the glitch:
    In your function meteorslides_edit_columns, you completely overwrite the array of columns created in WP_Posts_List_Table:get_columns. So you not only delete the columns created by WP (which I expect you want to do), but also delete the columns added by other plugins.

    I suggest that you add the following lines before returning the array:

    $meteor_columns = apply_filters( 'manage_posts_columns', $meteor_columns, 'slide' );
    $meteor_columns = apply_filters( "manage_slide_posts_columns", $meteor_columns );

    Plugin Author Josh Leuze

    (@jleuze)

    @chouby Thanks for sharing that, I haven’t tested the custom columns with custom columns from other plugins. I try that out and see about adding it.

    Plugin Author Josh Leuze

    (@jleuze)

    @aundc Are you still having problems getting the translated shortcodes to work?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Meteor Slides] only one of multiple slideshows is shown’ is closed to new replies.