Page 187 of 199 FirstFirst ... 87137177185186187188189197 ... LastLast
Results 1,861 to 1,870 of 1988
  1. #1861
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by andrewnguyen View Post
    Hi Clyde,

    Thanks heaps for your link manager 3.0 module. My links exchange is so easy to managed now. REAL COOL!.

    Just wondering. in Admin links count. Its seem to be "0" all the time, even though there have been lots of clicks with the links.

    I have also enable in Configuration>Links Manager>Enable Click Count to true, but it still not counting.

    Beside that i enable the Display Link Click Count to 1 for browser view and it still appear "0".

    Can you let me know whats missing? Or other option i've forgot.

    Thanks Clyde.
    Andrew
    If you read through the thread, you'll see that the links count is disabled. Hopefully it will be restored in a future release.

  2. #1862
    Join Date
    Mar 2011
    Location
    VIC, AU
    Posts
    57
    Plugin Contributions
    6

    Default Re: Link Manager 3.0 Support Thread

    Okie.

    Thanks Clyde.

  3. #1863

    Default Re: Link Manager 3.0 Support Thread

    Try this for the click count:

    Open includes/functions/links.php

    Replace:
    Code:
    ////
    // Return the links url
      function zen_get_links_url($identifier) {
      global $db;
        $link = $db->Execute("select links_id, links_url from " . TABLE_LINKS . " where links_id = '" . (int)$identifier . "'");
        $links_string = $link->fields['links_url'];
        return $links_string;
      }
    With:
    Code:
    ////
    // Return the links url
      function zen_get_links_url($identifier) {
      global $db;
        $link = $db->Execute("select links_id, links_url from " . TABLE_LINKS . " where links_id = '" . (int)$identifier . "'");
        if(ENABLE_LINKS_COUNT == 'true') {
            $links_string = zen_href_link(FILENAME_REDIRECT, 'action=link&goto=' . $link->fields['links_id']);
        } else {
    	$links_string = $link->fields['links_url'];
        }
        return $links_string;
      }
    Save and close.

    Open includes/modules/pages/redirect/header.php

    Find:
    Code:
      case 'banner':
      $banner_query = "SELECT banners_url
                       FROM " . TABLE_BANNERS . " 
                       WHERE banners_id = :bannersID";
    
      $banner_query = $db->bindVars($banner_query, ':bannersID', $_GET['goto'], 'integer');
      $banner = $db->Execute($banner_query);
      if ($banner->RecordCount() > 0) {
        zen_update_banner_click_count($_GET['goto']);
        zen_redirect($banner->fields['banners_url']);
      }
      break;
    Add After:
    Code:
      case 'link':
      $link_query = "SELECT links_url
    				 FROM " . TABLE_LINKS . "
    				 WHERE links_id = :linksID";
      $link_query = $db->bindVars($link_query, ':linksID', $_GET['goto'], 'integer');
      $link = $db->Execute($link_query);
      if($link->RecordCount() > 0) {
    	require(DIR_WS_FUNCTIONS . 'links.php');   
    	zen_update_links_click_count($_GET['goto']);
    	zen_redirect($link->fields['links_url']);
      }
      break;
    Save and close.

    Don't forget to switch Enable Click Count to true under Configuration > Links Manager

  4. #1864
    Join Date
    Jan 2009
    Posts
    45
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Hello,
    could you help me ?
    I have links_manager_v3-5-3c and all banner images are in /images/links_image/ its posible to use my partners destination like src="http://test.com/ikon88x31.jpg" thank you for reply....

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

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by Lopi View Post
    Hello,
    could you help me ?
    I have links_manager_v3-5-3c and all banner images are in /images/links_image/ its posible to use my partners destination like src="http://test.com/ikon88x31.jpg" thank you for reply....
    no this is not possible

  6. #1866
    Join Date
    Jan 2009
    Posts
    45
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Thank you .. and its posible to add button in admin/others/links for check all links not only one ;) ? thank you ...

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

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by Lopi View Post
    Thank you .. and its posible to add button in admin/others/links for check all links not only one ;) ? thank you ...
    no you will need to check each link individually

    This is the default for links manager.

  8. #1868
    Join Date
    Jan 2011
    Posts
    17
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    i need help..my problem is i don't know how to add categories to the drop down menu in link manager 3.5.3 using zen 1.3.9h... I have searched threads to no avail please help ..please

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

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by mitchellcurtisjohnso View Post
    i need help..my problem is i don't know how to add categories to the drop down menu in link manager 3.5.3 using zen 1.3.9h... I have searched threads to no avail please help ..please
    admin -> extras -> link categories

    click the "new category" button

    fill in the information on the next page and click the "save" button

  10. #1870
    Join Date
    Jan 2011
    Posts
    17
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    admin -> extras -> link categories in file manager or zen cart ?

 

 

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