picture from Admin
:unsure:
Thanks
Printable View
picture from Admin
:unsure:
Thanks
Make sure you've uploaded the images folder that was included with Links Manager
Great mod. Is there a way to disable the upload image feature?
Can someone assist pls.
tk u
download and install the fix from this thread
www.zen-cart.com/forum/showpost.php?p=631171&postcount=1197
Thank you worked
Another question, when you click view all links, I wanted to add text content on that page where categories show. Which page is that?
tks
Isn't there a notice at the top of the page that reads:
Quote:
This content is located in the file at: /languages/english/html_includes/YOUR_TEMPLATE/define_links.php
You can quickly edit this content via Admin->Tools->Define Pages Editor, and select define_links from the pulldown.
Clyde,
Thank you for reply. Maybe I was not clear, sorry. I know you can add text to define_links.php and define_links_submit.php. What I'm I want to is, I want to disable the sidebox fetaure and just add a link to the bottom of my site that says Link Partners using ezPages. That I know how to do. When you Click the Link Partners it takes you to "View All Links" Page. This page has all the catergories in it. I wanted to add text content on top of the View All Links page. Hope this is clear and you can assist. Tks :)
Clyde regarding above I wanted to have a section for the view all links so I can edit it in Define Page Editor. I'm not that experienced in PHP and tried to look at the files to try to replicate this info, but I didn't want to mess things up. Hope you can help. tks again
You'll need to edit a couple of files to work this out.
First
open includes/languages/english/YOUR_TEMPLATE/links.php
add the following define statement: (of course you can add any text you wish.)
define('TEXT_INSTRUCTIONS', '<p>Select a category in order to view the associated Links</p>');
save the file and upload to your server.
Second
open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php
at about line 14 find the following section of code:
Immediately below this add the following:Code:<?php echo HEADING_TITLE; ?>
Save the file and upload to your serverCode:<?php echo TEXT_INSTRUCTIONS; ?>
Hope this helps