2014-03-09, 22:47:05
Hello!
My 1st post in this forum.
I’m using I18N Gallery/Cycle plugin, thanks mvlcek!!. I want to keep this plugin intact (easy upgrade). I’ve already done css changes to my style.css. I’m using my own navigation arrows (images) and to change them I have to edit plugin_cycle.php:
<a class="prev" href="<?php i18n_gallery_pic_link($gallery,$pic>0 ? $pic-1 : $count-1); ?>"><img src="<?php echo $SITEURL; ?>plugins/i18n_gallery/images/cycle/prev.png" alt=""/></a>
<a class="next" href="<?php i18n_gallery_pic_link($gallery,$pic<$count-1 ? $pic+1 : 0); ?>"><img src="<?php echo $SITEURL; ?>plugins/i18n_gallery/images/cycle/next.png" alt=""/></a>
I cannot write php myself, but it looks like those prev.png and next.png are hardcoded in plugin_cycle.php. Is there any way to change arrows without changing plugin_cycle.php? I so hoped to get all chages via css..
Thanks!
My 1st post in this forum.
I’m using I18N Gallery/Cycle plugin, thanks mvlcek!!. I want to keep this plugin intact (easy upgrade). I’ve already done css changes to my style.css. I’m using my own navigation arrows (images) and to change them I have to edit plugin_cycle.php:
<a class="prev" href="<?php i18n_gallery_pic_link($gallery,$pic>0 ? $pic-1 : $count-1); ?>"><img src="<?php echo $SITEURL; ?>plugins/i18n_gallery/images/cycle/prev.png" alt=""/></a>
<a class="next" href="<?php i18n_gallery_pic_link($gallery,$pic<$count-1 ? $pic+1 : 0); ?>"><img src="<?php echo $SITEURL; ?>plugins/i18n_gallery/images/cycle/next.png" alt=""/></a>
I cannot write php myself, but it looks like those prev.png and next.png are hardcoded in plugin_cycle.php. Is there any way to change arrows without changing plugin_cycle.php? I so hoped to get all chages via css..
Thanks!