Page 52 of 199 FirstFirst ... 242505152535462102152 ... LastLast
Results 511 to 520 of 1988
  1. #511
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    Wow, I feel stupid! I dont know how I missed a few of those! Anyways it works now Do you know of a banner manager module or can I incorperate something like that into your links manager? If I can then how would it be done?

    Thanks!

  2. #512
    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 oxicottin View Post
    Wow, I feel stupid! I dont know how I missed a few of those! Anyways it works now Do you know of a banner manager module or can I incorperate something like that into your links manager? If I can then how would it be done?

    Thanks!
    Open admin -> extras -> links

    There is an option for including an image for the link:
    "image URL"
    You can use that to include a "banner" for the link.

  3. #513
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    Thanks!!!

  4. #514
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    Clyde, How would I go about adding a section in the area you fill out for submitting a link? I want an area that asks for the link to the persons banner just like and right under the Reciprocal Page Details section.

    Thanks!

  5. #515
    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 oxicottin View Post
    Clyde, How would I go about adding a section in the area you fill out for submitting a link? I want an area that asks for the link to the persons banner just like and right under the Reciprocal Page Details section.

    Thanks!
    Add the necessary define statements for that field to:
    includes/languages/english/extra_definitions/links_manager_defines.php

    Add the code necessary to draw the field in:
    includes/templates/YOUR_TEMPLATE/templates/tpl_links_submit_default.php

  6. #516
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    Clyde, I have no Idea where to even begin with the .php files you suggested altering. I have very minimal experience (Newbie) with .php,xtml,html ect... I tried finding the reciptical area in the php files and copy and pasted the code below it and renamed the recipical areas with name banner image. when I looked at it in the browser is just said there were an error in the file? What exactly do I have to alter to get this to work? Thanks!!

  7. #517
    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 oxicottin View Post
    Clyde, I have no Idea where to even begin with the .php files you suggested altering. I have very minimal experience (Newbie) with .php,xtml,html ect... I tried finding the reciptical area in the php files and copy and pasted the code below it and renamed the recipical areas with name banner image. when I looked at it in the browser is just said there were an error in the file? What exactly do I have to alter to get this to work? Thanks!!
    Just sent you a PM

  8. #518
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    Clyde, I keep getting an Parse error: syntax error, unexpected $end in tpl_links_submit_default.php on line 130. I added this code:

    Code:
    </fieldset>
             
    <?php if (SUBMIT_LINK_REQUIRE_RECIPROCAL == 'true') { ?>
    <fieldset>
    <legend><?php echo CATEGORY_RECIPROCAL; ?></legend>
    <label class="inputLabel" for="links_reciprocal_url"><?php echo ENTRY_LINKS_RECIPROCAL_URL; ?></label>
    <?php echo zen_draw_input_field('links_reciprocal_url', 'http://') . '&nbsp;' . (zen_not_null(ENTRY_LINKS_RECIPROCAL_URL_TEXT) ? '<span class="alert">' . ENTRY_LINKS_RECIPROCAL_URL_TEXT . '</span>': ''); ?>
    </fieldset>
    
    <?php if (SUBMIT_LINK_REQUIRE_BANNER == 'true') { ?>
    <fieldset>
    <legend><?php echo CATEGORY_BANNER; ?></legend>
    <label class="inputLabel" for="links_banner_url"><?php echo ENTRY_LINKS_BANNER_URL; ?></label>
    <?php echo zen_draw_input_field('links_banner_url', 'http://') . '&nbsp;' . (zen_not_null(ENTRY_LINKS_RECIPROCAL_URL_TEXT) ? '<span class="alert">' . ENTRY_LINKS_BANNER_URL_TEXT . '</span>': ''); ?>
    </fieldset>
    
    <?php
      }
    ?>
    what am I doing wrong? Thanks!

  9. #519
    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 oxicottin View Post
    Clyde, I keep getting an Parse error: syntax error, unexpected $end in tpl_links_submit_default.php on line 130. I added this code:

    Code:
    </fieldset>
             
    <?php if (SUBMIT_LINK_REQUIRE_RECIPROCAL == 'true') { ?>
    <fieldset>
    <legend><?php echo CATEGORY_RECIPROCAL; ?></legend>
    <label class="inputLabel" for="links_reciprocal_url"><?php echo ENTRY_LINKS_RECIPROCAL_URL; ?></label>
    <?php echo zen_draw_input_field('links_reciprocal_url', 'http://') . '&nbsp;' . (zen_not_null(ENTRY_LINKS_RECIPROCAL_URL_TEXT) ? '<span class="alert">' . ENTRY_LINKS_RECIPROCAL_URL_TEXT . '</span>': ''); ?>
    </fieldset>
    <?php
      }
    ?>
    <?php if (SUBMIT_LINK_REQUIRE_BANNER == 'true') { ?>
    <fieldset>
    <legend><?php echo CATEGORY_BANNER; ?></legend>
    <label class="inputLabel" for="links_banner_url"><?php echo ENTRY_LINKS_BANNER_URL; ?></label>
    <?php echo zen_draw_input_field('links_banner_url', 'http://') . '&nbsp;' . (zen_not_null(ENTRY_LINKS_RECIPROCAL_URL_TEXT) ? '<span class="alert">' . ENTRY_LINKS_BANNER_URL_TEXT . '</span>': ''); ?>
    </fieldset>
    
    <?php
      }
    ?>
    what am I doing wrong? Thanks!
    Add the highlighted portion as indicated above

  10. #520
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Link Manager 3.0 release

    That worked great! Now I only have the new banner section in the submit portion of your module. What other files need modifyed to inclue the "Banner" addition? like when they submit it I dont see the banner entry in the admin section... What file do I have to alter to include the banner entry so I can get thier banner url?

    Thanks!

 

 

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