Y tenés que
agregar el parámetro a cada llamado que hacés a .prettyPhoto().
Un ejemplo con los primeros:
Código Javascript
:
Ver original$("area[rel^='prettyPhoto']").prettyPhoto({social_tools: false});
$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'li ght_square',slideshow:3000, autoplay_slideshow: true,social_tools: false});
$(".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'fast',slideshow:1 0000, hideflash: true,social_tools: false});
Eso quitaría los botones. Si querés usar botones propios, tenés que definir tu HTML. Algo así:
Código Javascript
:
Ver originalvar social_HTML = '<div><a href="http://www.google.com.ar/">Google</a></div>';
$("area[rel^='prettyPhoto']").prettyPhoto({social_tools: social_HTML});
$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'li ght_square',slideshow:3000, autoplay_slideshow: true,social_tools: social_HTML});
$(".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'fast',slideshow:1 0000, hideflash: true,social_tools: social_HTML});
Está todo en la documentación del plugin. Leé ahí :)