
Originally Posted by
wtashby
Thanks, that fixed that problem. However, My Submit Link button is not showing up, and when I click on properties for the image (the infamous red x) I get this path:
Any thoughts?
open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php
Find this line of code (around line 126)
Code:
<div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div>
and replace it with this line:
Code:
<div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_IMAGE_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div>
Bookmarks