Page 27 of 199 FirstFirst ... 1725262728293777127 ... LastLast
Results 261 to 270 of 1988
  1. #261
    Join Date
    Jun 2006
    Posts
    403
    Plugin Contributions
    0

    help question Re: Link Manager 3.0 release

    Hello, Clyde:

    Thank you for your answer for "submit links" to "log in" page question. I fixed it already.

    Now on "Submit links" page, all titles like "Submit your link", "website detail", "Your contact information" are missing.... how to get them back?

    Also on "View all links" page, the "submit link" button is missing. But I did carefully uploaded all the files to my server.....

    Thank you for your help!

  2. #262
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by lina0962 View Post
    Hello, Clyde:

    Thanks for your promt answer.

    Now on "Submit links" page, all titles like "Submit your link", "website detail", "Your contact information" are missing.... how to get them back?

    Thank you for your help!
    go to your admin -> configuration -> links manager

    set the registered customers option to false

  3. #263
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by lina0962 View Post
    Hello, Clyde:

    Thank you for your answer for "submit links" to "log in" page question. I fixed it already.

    Now on "Submit links" page, all titles like "Submit your link", "website detail", "Your contact information" are missing.... how to get them back?

    Also on "View all links" page, the "submit link" button is missing. But I did carefully uploaded all the files to my server.....

    Thank you for your help!
    I think this is probably a stylesheet issue.

    open links_submit.css find this declaration

    legend {font-family:verdana, arial, helvetica, sans-serif; font-size:1.1em; color: #000; font-weight:bold; margin-bottom:5px; padding:3px; background:#fff url(../images/form.png) repeat-x center left;}

    change the highlighted portion as indicated

  4. #264
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by lina0962 View Post
    Hello, Clyde:

    Thank you for your answer for "submit links" to "log in" page question. I fixed it already.

    Now on "Submit links" page, all titles like "Submit your link", "website detail", "Your contact information" are missing.... how to get them back?

    Also on "View all links" page, the "submit link" button is missing. But I did carefully uploaded all the files to my server.....

    Thank you for your help!
    Find the following line of code (there are two of them)

    PHP Code:
    <div class="forward"><?php echo '<a href="' zen_href_link(FILENAME_LINKS_SUBMITzen_get_all_get_params()) . '">' zen_image_button(BUTTON_SUBMIT_LINKBUTTON_SUBMIT_LINK_ALT) . '</a>'?></div>
    and replace them with the following

    PHP Code:
    <div class="forward"><?php echo '<a href="' zen_href_link(FILENAME_LINKS_SUBMITzen_get_all_get_params()) . '">' zen_image_button(BUTTON_IMAGE_SUBMIT_LINKBUTTON_SUBMIT_LINK_ALT) . '</a>'?></div>

  5. #265
    Join Date
    Jun 2006
    Posts
    403
    Plugin Contributions
    0

    email error One more question......

    Quote Originally Posted by clydejones View Post
    Find the following line of code (there are two of them)

    PHP Code:
    <div class="forward"><?php echo '<a href="' zen_href_link(FILENAME_LINKS_SUBMITzen_get_all_get_params()) . '">' zen_image_button(BUTTON_SUBMIT_LINKBUTTON_SUBMIT_LINK_ALT) . '</a>'?></div>
    and replace them with the following

    PHP Code:
    <div class="forward"><?php echo '<a href="' zen_href_link(FILENAME_LINKS_SUBMITzen_get_all_get_params()) . '">' zen_image_button(BUTTON_IMAGE_SUBMIT_LINKBUTTON_SUBMIT_LINK_ALT) . '</a>'?></div>
    Sorry for keep bugging you and asking you questions.....

    One last question: where is the codes located? which file? Thank you very much!:-)

    By the way, I like your link manager very much. Great constribution!

    Lina

  6. #266
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by lina0962 View Post
    Sorry for keep bugging you and asking you questions.....

    One last question: where is the codes located? which file? Thank you very much!:-)

    By the way, I like your link manager very much. Great constribution!

    Lina
    Open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php

  7. #267
    Join Date
    Jun 2006
    Posts
    566
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    i'm running version 2 and i did a crazy hackjob on it, to get rid on the images and description, now it seems to work fine on FF but not on IE6. any thing i should do to the code to tweak it a bit more.

    http://www.gorillagear.ca/index.php?main_page=links

  8. #268
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by MB1 View Post
    i'm running version 2 and i did a crazy hackjob on it, to get rid on the images and description, now it seems to work fine on FF but not on IE6. any thing i should do to the code to tweak it a bit more.

    http://www.gorillagear.ca/index.php?main_page=links
    Based on your description, I have no idea what kind of "hackjob" you did so I'm afraid I can't help.

  9. #269
    Join Date
    Jun 2006
    Posts
    566
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    i went into one tpl_links_default and took out the code in red
    Code:
    // create column list
        $define_list = array('LINK_LIST_IMAGE' => LINK_LIST_IMAGE,
                             'LINK_LIST_DESCRIPTION' => LINK_LIST_DESCRIPTION, 
                             'LINK_LIST_COUNT' => LINK_LIST_COUNT);
    Code:
     $select_column_list .= 'l.links_image_url, ld.links_title, ';
              break;
            case 'LINK_LIST_DESCRIPTION':
              $select_column_list .= 'ld.links_description, ';
              break;
    took off some code to the submit file so people wouldn't post an image and description now i have to pull some code on the help file also. anyways it doesn't seem to line up great anymore inside the borders and in IE the click count seems off
    Last edited by MB1; 16 Apr 2007 at 05:21 AM.

  10. #270
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by MB1 View Post
    i went into one tpl_links_default and took out the code in red
    Code:
    // create column list
        $define_list = array('LINK_LIST_IMAGE' => LINK_LIST_IMAGE,
                             'LINK_LIST_DESCRIPTION' => LINK_LIST_DESCRIPTION, 
                             'LINK_LIST_COUNT' => LINK_LIST_COUNT);
    Code:
     $select_column_list .= 'l.links_image_url, ld.links_title, ';
              break;
            case 'LINK_LIST_DESCRIPTION':
              $select_column_list .= 'ld.links_description, ';
              break;
    took off some code to the submit file so people wouldn't post an image and description now i have to pull some code on the help file also. anyways it doesn't seem to line up great anymore inside the borders and in IE the click count seems off
    try adding this declaration to your stylesheet.css

    .linkListing-data{width:33%;font-size:1em;}

 

 

Similar Threads

  1. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 PM
  2. v154 News Box Manager v2.0.0 [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 84
    Last Post: 19 Jan 2021, 04:17 PM
  3. Download File Manager Support Thread
    By balihr in forum All Other Contributions/Addons
    Replies: 24
    Last Post: 17 Aug 2017, 10:32 PM
  4. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM
  5. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR