Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4257
Latest: Alex998.
New This Month: 1
New This Week: 0
New Today: 0
Stats
Total Posts: 43295
Total Topics: 7523
Most Online Today: 230
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 228
Total: 228

Author Topic: Exclude Actions  (Read 4100 times)

0 Members and 1 Guest are viewing this topic.

Offline Stanyy

  • Bad Emails DO NOT EMAIL
  • Member
  • *
  • Posts: 2
    • View Profile
Exclude Actions
« on: August 25, 2015, 04:50:04 pm »
How do I prevent ads from showing up on certain actions?

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16452
    • View Profile
Re: Exclude Actions
« Reply #1 on: August 25, 2015, 05:03:57 pm »
You would need to modify the code to to do that.
Source/Adseller2.php

Find
Code: [Select]
if (isset($_SESSION['login_url']))
unset($_SESSION['login_url']);

if (isset($_SESSION['old_url']))
unset($_SESSION['old_url']);

Add after
Code: [Select]
if (isset($_REQUEST['action']))
{
    if ($_REQUEST['action'] == 'youractionheretoskip')
      return false;

}
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline Stanyy

  • Bad Emails DO NOT EMAIL
  • Member
  • *
  • Posts: 2
    • View Profile
Re: Exclude Actions
« Reply #2 on: August 28, 2015, 07:09:12 am »
Hi, thanks for the quick reply.

I tried the code but it didnt work.

I slightly changed it to this one and it seemed to work:

Code: [Select]
if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'youractionheretoskip')
        return false;

Is the above code safe to use?
Also, how do i exclude multiple actions?

Thank you.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16452
    • View Profile
Re: Exclude Actions
« Reply #3 on: August 28, 2015, 04:59:34 pm »
Should be safe
Multiple you can either copy and paste it or do something like
Code: [Select]
$skipActionList = array('action1','action2','action3');
if (isset($_REQUEST['action']) && in_array($_REQUEST['action'],$skipActionList) == true)
        return false;
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

 

Related Topics

  Subject / Started by Replies Last post
1 Replies
3457 Views
Last post March 11, 2010, 04:03:20 pm
by SMFHacks
10 Replies
6541 Views
Last post April 07, 2011, 06:49:16 am
by Wickedgood
0 Replies
3473 Views
Last post February 08, 2014, 04:22:38 am
by Cmely
4 Replies
5484 Views
Last post February 14, 2014, 11:54:34 pm
by Diego Andrés
2 Replies
2852 Views
Last post January 30, 2017, 12:27:48 pm
by shuban

+- Recent Topics

Please Help! by SMFHacks
April 17, 2024, 08:04:55 am

Rate own images by fvlog19
April 11, 2024, 10:56:53 am

Tidy Child Boards on 2.1.4 by SMFHacks
April 04, 2024, 03:54:12 pm

Problems SMF 2.0.19 > 2.1.4 SMF Gallery Pro - Recents Images to overall header by Michel68
March 30, 2024, 12:41:08 pm

Can't DROP 'id_member'; check that column/key exists Datei: by SMFHacks
March 30, 2024, 11:58:20 am

No thumbnails on new uploads by Tonyvic
March 29, 2024, 06:26:18 am

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

Powered by EzPortal