Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/14/2014 in all areas

  1. Instead of writing WebFlake Cereal about topics that pop up in my
    2 points
  2. You would have to us an if statement in possibly 3 templates. In board index > boardindextemplate if you don't want them to know they exist. In forum view > forumindextemplate if you don't want them to see the topic listings In topic view > topicviewtemplate if you don't want them to see the actual topic posts use something like this if <if test="enoughPoints :|:$this->memberData['pp_reputation_points'] > 49"> at the top of topicviewtemplate and </if> at the very bottom. Look at the other templates and if you need help on where to put the if. You can also add an else at the bottom to give them a message like this adding any styles you would like.. <else /> <h4> you need 50 reputation points to view this forum..</h4></if> The above if is for all forums for certain forums you can use this in the topicviewtemplate Below is for your selected forums by forum id number. <if test="enoughPoints :|:!in_array($forum['id'],array(47,54,75)) || $this->memberData['pp_reputation_points'] > 49"> The numbers represent the forum id numbers. <else /> <h1> 50 Reputation points required to view forum {$forum['id']} </h1> </if>
    1 point
  3. Happens a lot. Bad programming so you can use ftp and edit the initdata.php file changing this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING ); to this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING );
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...