Recent Posts

Pages: 1 ... 6 7 [8] 9 10
71
Reports... / ADK Private mod and ADK Thankyou mod
« Last post by Test Administrator on February 01, 2012, 02:05:52 AM »
I can not seem to find any option to grant a thank you to a user... the admin setting is active, but I can't see an option on the front end.

I also can not find any option, anywhere, that refers to the Private post....   I can see the code present in post.template.php, but I can't find any option to turn it ON in admin and can't find any option to USE it in the front end.
72
Reports... / [REPORT] Message Prefix mod
« Last post by Test Administrator on February 01, 2012, 12:14:03 AM »
1- seems to be targeted to an older version of the post.template.php file. It looks for <td>, etc while the current 2.0.2 version uses <dt> and <dd>

2- Uses a replace to put the Select Prefix option in... but accidentally removes the Subject: field heading
73
Another Board / Welcome to the TSP Test Forum Suki...
« Last post by Test Administrator on January 31, 2012, 09:41:37 PM »
Welcome Suki,

this is the TSP Test forum.
Post your hello here.
74
Another Board / Welcome to the TSP Test Forum ethankcvds...
« Last post by Test Administrator on January 31, 2012, 09:19:58 PM »
Welcome ethankcvds,

this is the TSP Test forum.
Post your hello here.
75
Reports... / Idiocy of the pile of Copyright statements...
« Last post by Test Administrator on January 31, 2012, 04:41:49 PM »
Hide Tag Special By SMF Personal © 2011
Referrals System by CreateAForum.com
Enotify by CreateAForum.com

Since NONE of these are active ALL the time (at leats not from the user's point of view) there is **NO** reason that have them in the site footer on all pages.

The same goes for the Ad Manager mod from SMF Hacks as well...   even when the mod is inactive (no ad blocks showing at all), the copyright is displayed.

idiots.
76
Reports... / Portal blues...
« Last post by Test Administrator on January 31, 2012, 04:39:51 PM »
Ok, so it looks like several mods depend on some funky coding work within portals.
The clearest of these is the Single Category mod, which has some bypass code in it specifically for TPortal.
Unfortunately, I am not using TinyPortal, I am using EZPortal....   so I have to figure out how EZPortal defines itself in the code....  UGH
77
Reports... / Random Quote mod
« Last post by Test Administrator on January 31, 2012, 04:10:28 PM »
Installed fine, but there is a major error in the code of the mod itself

Code: (find in Load.php) [Select]
// This function generates a random quote. Created by the Random Quotes modification by Marcus "Nas" Forsberg.
function randomQuote()
{
  global $context, $txt, $modSettings;
 
  // Have the admin written any quotes to be used, and is the mod enabled?
  if (!empty($modSettings['random_quote']) && !empty($modSettings['random_quote_enable']))
  {

      // Seperate the quotes from each other.
      $quotes = explode("\n", $modSettings['random_quote']);

      // Number of different quotes
      $num_quotes = count($quotes)-1;

      // A random number
      $number = mt_rand(0,$num_quotes);

      // Store the stuff.
      $output = '<br />
      <div class="tborder" style="', !empty($modSettings['random_quote_custom_css'] ? $modSettings['random_quote_custom_css'] : 'padding: 5px;'), '">
        <span style="color:', !empty($modSettings['random_quote_label_color'] ? $modSettings['random_quote_label_color'] : '#000000'), '; font-weight: bold;">
          ',!empty($modSettings['random_quote_label_custom'] ? parse_bbc($modSettings['random_quote_label_custom']) : $txt['random_quote_label_standard']),'
        </span>
        ' , parse_bbc($quotes[$number]), '
      </div>';
  }
 
  else
  {
    $output = '';
  }

The error says that there is a problem with a comma on THIS line
      <div class="tborder" style="', !empty($modSettings['random_quote_custom_css'] ? $modSettings['random_quote_custom_css'] : 'padding: 5px;'), '">
78
Reports... / Advanced Footer Mod
« Last post by Test Administrator on January 31, 2012, 04:00:24 PM »
appears to be either a bug in the mod or a conflict with something else.

WAP2 is listed twice, while NOWAP is not listed at all.
79
Reports... / Re: Glossary Mod
« Last post by Test Administrator on January 31, 2012, 03:37:04 PM »
Figured it out during the re-install....

if the Statistics in jQuery mod is installed, the glossary won't work at all
80
Reports... / Urban Dictionary Mod...
« Last post by Test Administrator on January 31, 2012, 03:29:09 PM »
Appears to NOT install the language file. The file is in the mod archive, but is not copied into the language folder when the mod is installed (had to manually place the file)
Pages: 1 ... 6 7 [8] 9 10