Results 1 to 10 of 1988

Hybrid View

  1. #1
    Join Date
    Dec 2005
    Location
    Perth, Western Australia, Australia
    Posts
    781
    Plugin Contributions
    0

    red flag Re: Link Manager 3.0 release

    I tried changing the newly added link to the second category, it didn't show up. I changed it to the third category, it did show up. But this is the wrong category. What's going on?
    The Team Behind DealByEthan.com | Curating unique finds for a discerning community. Committed to a seamless and inspiring shopping experience. Connect with us: https://linktr.ee/dealbyethan


  2. #2
    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 dealbyethan.com View Post
    I tried changing the newly added link to the second category, it didn't show up. I changed it to the third category, it did show up. But this is the wrong category. What's going on?
    What link am I looking for?

    I see 19 links in the third category (all on one page)

    I see 27 links in the first category (on two pages)

    I see 172 links in the second category (on 9 pages)

  3. #3
    Join Date
    Dec 2005
    Location
    Perth, Western Australia, Australia
    Posts
    781
    Plugin Contributions
    0

    red flag Re: Link Manager 3.0 release

    Title: ###### Hotel
    URL: http://www.gaypedia.com/
    Category: Accommodation & Travel
    Description: GayPedia.com: Optimum information for
    ###### hotels and ############## hotels, when you
    are looking for a complete visit for ######
    or ############## entertainment places

    I have put it back to the desired category but it does not show up.
    The Team Behind DealByEthan.com | Curating unique finds for a discerning community. Committed to a seamless and inspiring shopping experience. Connect with us: https://linktr.ee/dealbyethan


  4. #4
    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 dealbyethan.com View Post
    Title: ###### Hotel
    URL: http://www.gaypedia.com/
    Category: Accommodation & Travel
    Description: GayPedia.com: Optimum information for
    ###### hotels and ############## hotels, when you
    are looking for a complete visit for ######
    or ############## entertainment places

    I have put it back to the desired category but it does not show up.
    Try this and see if it makes a difference:

    just unzip the file and upload the entire admin folder to your server.

    Attachment 4085
    Last edited by clydejones; 31 Dec 2009 at 02:32 AM.

  5. #5
    Join Date
    Dec 2005
    Location
    Perth, Western Australia, Australia
    Posts
    781
    Plugin Contributions
    0

    red flag Re: Link Manager 3.0 release

    I uploaded the file into the admin folder. But nothing has changed. I still can't add and show a link.
    The Team Behind DealByEthan.com | Curating unique finds for a discerning community. Committed to a seamless and inspiring shopping experience. Connect with us: https://linktr.ee/dealbyethan


  6. #6
    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 dealbyethan.com View Post
    I uploaded the file into the admin folder. But nothing has changed. I still can't add and show a link.

    check your PM

  7. #7
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Is there a way to set the number of links to be listed per page? I would like to limit it to 5 or so per page to decrease load time.

    Thanks!!!

  8. #8

    Default Message stack warning

    Clyde, I have modified this mod to be used to upload recipes. No images are necessary for the recipes, so can you tell me how to turn off the message stack error "Warning: no file uploaded"? See here http://www.ncwheatmontanacoop.com/or...e=links_submit
    I got rid of the default banner message but can't figure out how to get rid of the other one.

    Also, is there a way for the recipes to keep their formatting without me having to go into the admin and format it with HTML? It's all coming out one big blob of text with no line breaks. Our recipe submitters don't all know HTML.

    Thanks!

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

    Default Re: Message stack warning

    Quote Originally Posted by Doodlebuckets View Post
    Clyde, I have modified this mod to be used to upload recipes. No images are necessary for the recipes, so can you tell me how to turn off the message stack error "Warning: no file uploaded"? See here http://www.ncwheatmontanacoop.com/or...e=links_submit
    I got rid of the default banner message but can't figure out how to get rid of the other one.

    Also, is there a way for the recipes to keep their formatting without me having to go into the admin and format it with HTML? It's all coming out one big blob of text with no line breaks. Our recipe submitters don't all know HTML.

    Thanks!
    Amy,

    I'm not sure which files you've modified (and/or whether you changed the names of the files) but I can give you a general outline of what you need to do based on the original Link Manager file names and locations.

    first you'll need to modify includes/modules/pages/links_submit/header_php.php

    at about line 14 delete/comment out the following line of code:

    Code:
     require(DIR_WS_CLASSES . 'upload.php');
    Next delete the folllowing section of code beginning at around line 81 - 98
    Code:
    // BOF Upload an image when form field is filled in by user		 
           if ($links_image = new upload('links_image_url')) {
              $links_image->set_destination(DIR_WS_IMAGES . LINK_IMAGE_DIRECTORY);
              if ($links_image->parse() && $links_image->save()) {
                $links_image_name = LINK_IMAGE_DIRECTORY . $links_image->filename;
              }
               if ($links_image->filename != '') {
                $db->Execute("update " . TABLE_LINKS . "
                              set links_image_url = '" . $links_image_name . "'
                              where links_id = '" . (int)$links_id . "'");
    		  }else { // Use default image if form field is left blank
    		             $links_image_name = LINK_IMAGE_DIRECTORY . DEFAULT_LINK_IMAGE;
                 $db->Execute("update " . TABLE_LINKS . "
                             set links_image_url = '" . $links_image_name . "'
                              where links_id = '" . (int)$links_id . "'");
    				$messageStack->add_session('header', WARNING_DEFAULT_FILE_UPLOADED, 'success');			  
               }
    		}
    save the file and upload to your server.

    Next open includes/modules/YOUR_TEMPLATE/link_listing.php

    Find the following section of code at around line 73 - 76

    Code:
               if (DISPLAY_LINK_DESCRIPTION_AS_LINK == 'true') {
                $lc_text = '<a href="' . zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' . $listing_query->fields['links_title'] . '</a><br /><a href="' . zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' . $listing_query->fields['links_description'] . '</a>';
                 } else {
               $lc_text = '<a href="' . zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' . $listing_query->fields['links_title'] . '</a><br />' . $listing_query->fields['links_description']; }
    replace this section with the following code:
    Code:
               if (DISPLAY_LINK_DESCRIPTION_AS_LINK == 'true') {
                $lc_text = '<a href="' . zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' . $listing_query->fields['links_title'] . '</a><br /><a href="' . zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' . nl2br($listing_query->fields['links_description']) . '</a>';
                 } else {
               $lc_text = '<a href="' . zen_get_links_url($listing_query->fields['links_id']) . '" target="_blank">' . $listing_query->fields['links_title'] . '</a><br />' . nl2br($listing_query->fields['links_description']); }
    Save the file and upload to your server.

    Let me know if you need additional assistance.

 

 

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