Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
CustomBooks
Is there any way to put the "View All Links" link in a tab at the top of the page? So the top of the page would have tabs labeled "Home" "Log Out" "Links" "Contact Us" "My Account" "Checkout"... How to do this?
open includes/templates/YOUR_TEMPLATE/common/tpl_header.php
AND
add additional links to suit your needs.
Re: Link Manager 3.0 Support Thread
Can you be more specific as to what code to insert where in this file? I don't know how to make the Link tab. Here's my preferred order for the top tabs: (Home-Contact Us-Links (on the left side) followed by Log In/Out-My Account-Checkout-View Cart (on the right side).
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
CustomBooks
Can you be more specific as to what code to insert where in this file? I don't know how to make the Link tab. Here's my preferred order for the top tabs: (Home-Contact Us-Links (on the left side) followed by Log In/Out-My Account-Checkout-View Cart (on the right side).
Since this involves making changes to your template files it should be posted in the appropriate support thread for the template you are using.
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
Since this involves making changes to your template files it should be posted in the appropriate support thread for the template you are using.
Will do! Sometimes the problem seems to cross forum threads, such as this - I still need to know how to make a Links tab to point to Link Managers' "View All Links"...what is the link code for "View All Links" ?
Re: Link Manager 3.0 Support Thread
Hi Clyde,
How can I change the color of the 'Image Title/Description' titles on the links page? It's currently black.
Also I noticed you released V3.5.2 recently, what are the changes made? and also are their any special requirements when upgrading?
Thanks.
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
gaffettape
Hi Clyde,
How can I change the color of the 'Image Title/Description' titles on the links page? It's currently black.
Also I noticed you released V3.5.2 recently, what are the changes made? and also are their any special requirements when upgrading?
Thanks.
open includes/templates/YOUR_TEMPLATE/css/links.css
add the following declaration:
.productListing-heading {
color: #000; /* change this to your selected color*/
}
most of the changes were made to the admin side of the mod including changing "file-open" to use a curl option to obtain url information.
Just follow the upgrade instructions.
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
clydejones
open includes/templates/YOUR_TEMPLATE/css/links.css
add the following declaration:
.productListing-heading {
color: #000; /* change this to your selected color*/
}
most of the changes were made to the admin side of the mod including changing "file-open" to use a curl option to obtain url information.
Just follow the upgrade instructions.
Nice one,
cheers Clyde :smile:
Re: Link Manager 3.0 Support Thread
First off, thanks very much for making this mod available and providing support.
The install went smoothly. The one problem that I have is getting category descriptions to show up. I've searched through this thread, looked through the php files included with the mod, checked my database to ensure that the descriptions are showing up at least there, but I'm stymied (and my knowledge of php, mysql, and the 'under the hood' stuff is pretty limited).
I've created a couple of categories and entered descriptions. When I click on a category, the links show up fine, but instead of the description I get this:
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.
Any help would be greatly appreciated.
Re: Link Manager 3.0 Support Thread
Quote:
Originally Posted by
iCarp
First off, thanks very much for making this mod available and providing support.
The install went smoothly. The one problem that I have is getting category descriptions to show up. I've searched through this thread, looked through the php files included with the mod, checked my database to ensure that the descriptions are showing up at least there, but I'm stymied (and my knowledge of php, mysql, and the 'under the hood' stuff is pretty limited).
I've created a couple of categories and entered descriptions. When I click on a category, the links show up fine, but instead of the description I get this:
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.
Any help would be greatly appreciated.
That text is from the define_links.php file and has nothing to do with the category descriptions
Re: Link Manager 3.0 Support Thread
Thank you very much for your prompt reply.
I know that the define_links.php file has nothing to do with the category descriptions. What I don't understand is why that is showing up rather than the category description I've entered when I click on a links category. That is my problem and why I made my initial post.