sinister1981
Member
Posted 1 year ago #
Any one else noticed the 'Edit page' link at the foot of the page now directs to the slider settings??
I have the slide on the home page with the shortcode, now when I hit the edit page link I should be directed to the home page in wp-admin, instead I am directed to edit the slide show. Any idea how to fix this?
http://wordpress.org/extend/plugins/responsive-slider/
alexculshaw
Member
Posted 10 months ago #
Hi sinister1981,
I found this problem too - go to line 273 in plugins/responsive-slider/responsive-slider.php and insert wp_reset_query(); on a new line after the endif; and before the curly brace - see below:
</div><!-- #featured-content -->
<?php endif;
wp_reset_query();
}
This fixed it for me.