Cerveza
Forum Replies Created
-
Forum: Plugins
In reply to: [Sponsors Carousel] The plugin does not work under WP 3.6.1His patch doesn’t fix the common jQuery issue, only the mediabutton which I also posted in my previous post.
Forum: Plugins
In reply to: [Sponsors Carousel] Not possible to add images anymoreFix:
Open up sponsors-coursel.php
On line 369 you will find the following code:
echo _media_button(__(‘Add an Image’), ‘images/media-button-image.gif?ver=20100531’, ‘image’,$scwp_plugin_name);
replace with:
echo media_buttons(__(‘Add an Image’), ‘images/media-button-image.gif?ver=20100531’, ‘image’,$scwp_plugin_name);
Forum: Reviews
In reply to: [Sponsors Carousel] Patch for 3.5.2This plug-in is out-to-date but there are several plugin fixes.
Open up sponsors-coursel.php
1. First fix: add media button not appearing
On line 369 you will find the following code:echo _media_button(__(‘Add an Image’), ‘images/media-button-image.gif?ver=20100531’, ‘image’,$scwp_plugin_name);
replace with:
echo media_buttons(__(‘Add an Image’), ‘images/media-button-image.gif?ver=20100531’, ‘image’,$scwp_plugin_name);
2. Second fix: common jquery issue (interfering with other jquery plugins within your installation)
On line 68 you will find the function sponsors_carousel_enqueue_scripts, within this function delete the following code:// jquery
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, ($plugin_url . ‘/jquery-1.4.2.min.js’), false, ‘1.4.2’);
wp_enqueue_script(‘jquery’);Forum: Plugins
In reply to: [Sponsors Carousel] The plugin does not work under WP 3.6.1This plug-in is out-to-date but there are several plugin fixes.
Open up sponsors-coursel.php
1. First fix: add media button not appearing
On line 369 you will find the following code:echo _media_button(__(‘Add an Image’), ‘images/media-button-image.gif?ver=20100531’, ‘image’,$scwp_plugin_name);
replace with:
echo media_buttons(__(‘Add an Image’), ‘images/media-button-image.gif?ver=20100531’, ‘image’,$scwp_plugin_name);
2. Second fix: common jquery issue (interfering with other jquery plugins within your installation)
On line 68 you will find the function sponsors_carousel_enqueue_scripts, within this function delete the following code:// jquery
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, ($plugin_url . ‘/jquery-1.4.2.min.js’), false, ‘1.4.2’);
wp_enqueue_script(‘jquery’);Forum: Plugins
In reply to: [Sponsors Carousel] jQuery updateOpen sponsor-carousel.php
On line 68 you will find the function sponsors_carousel_enqueue_scripts, within this function delete the following code:
// jquery
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, ($plugin_url . ‘/jquery-1.4.2.min.js’), false, ‘1.4.2’);
wp_enqueue_script(‘jquery’);Try again.