Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter dmorton2

    (@dmorton2)

    also iv noticed while using just one carousel its using the default settings and showing images from all categories even tho iv put the name of just one cat.

    Same issue I am facing now. both using different name. I used php template code.

    Please help me.

    Thread Starter dmorton2

    (@dmorton2)

    Any update with this?
    its a shame this feature dose not work other than this its a great plugin!

    if you could let me know will this be fixed in the next update release and when?

    thanks

    I’m also having this issue.

    same issue… looks like I will need to hack the plugin to make it work the way it’s supposed to… There seems to be an error for an illegal post type call in admin… so not sure if that is any issue, also illegal headers are called with this plugin.

    Notice: Undefined variable: post_id in /Users/joshflayhart/Sites/BIG/aidt/wp-content/plugins/kiwi-logo-carousel/kiwi_logo_carousel_admin.php on line 198
    
    Warning: Cannot modify header information - headers already sent by (output started at /Users/joshflayhart/Sites/BIG/aidt/wp-content/plugins/kiwi-logo-carousel/kiwi_logo_carousel_admin.php:198) in /Users/joshflayhart/Sites/BIG/aidt/wp-includes/pluggable.php on line 1121

    So I did a bit of debugging and not sure if this exactly solves the issue, but it is working for me.

    On line 124 I changed the function code under
    function kiwi_logo_carousel_shortcode( $atts, $content = null ) {

    from

    extract( shortcode_atts( array(
    		'id' => 'default',
    	), $atts ) );

    to

    foreach($atts as $id){
    		extract( shortcode_atts( array(
    			'id' => $id,
    		), $atts ) );
    	}

    Seemed to fix the issue. Was kinda silly when the atts were already there, but weren’t being applied.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘same carousel shown when using the 2 on a page’ is closed to new replies.