Results 1 to 10 of 1988

Hybrid View

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

    Default Re: Link Manager 3.0 Support Thread

    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

  2. #2
    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.

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

    Default Re: Link Manager 3.0 Support Thread

    Okie.

    Thanks Clyde.

  4. #4

    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

  5. #5
    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....

  6. #6
    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

  7. #7
    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 ...

 

 

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

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