News:

SMF 2.1.4 has been released! Take it for a spin! Read more.

Main Menu

Ad Management mod

Started by SMFHacks.com Team, January 30, 2006, 08:41:19 PM

Previous topic - Next topic

AllanD

thanks, but every time I try I get generators and not something I could edit in the coding.
Check out this great sites.
KnD Hosting

mamadmankan

ok ive been trying to add this mod to my website/forum

so i got this

QuoteCore Theme
   Execute Modification   ./Themes/core/BoardIndex.template.php   Test failed
   1.   Add Before   ./Themes/core/BoardIndex.template.php   Test successful
   2.   Add After   ./Themes/core/BoardIndex.template.php   Test failed
   Execute Modification   ./Themes/core/Display.template.php   Test failed
   1.   Add After   ./Themes/core/Display.template.php   Test successful
   2.   Replace   ./Themes/core/Display.template.php   Test successful
   3.   Replace   ./Themes/core/Display.template.php   Test failed
   Execute Modification   ./Themes/core/MessageIndex.template.php   Test failed
   1.   Add After   ./Themes/core/MessageIndex.template.php   Test successful
   2.   Replace   ./Themes/core/MessageIndex.template.php   Test failed


so i went into this

Quote2.   Add After   ./Themes/core/BoardIndex.template.php   Test failed

found this

Code: (Find) [Select]
<tbody class="divider">
<tr>
<td colspan="4"></td>
</tr>
</tbody>';



Code: (Add After) [Select]

echo '<tbody><tr><td colspan="4">';
//Display ads Between cats
if (function_exists("show_category"))
{
$ads = show_category($category['id']);
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}
echo ' </td></tr></tbody>';


but i couldnt find the first part

<tbody class="divider">
<tr>
<td colspan="4"></td>
</tr>
</tbody>';


i couldnt find that any idea how i can find it ? or help installing this

Kindred

are you even using the core theme? If not, ignore that and continue
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

villasg

Hi i run in my smf 1.1.17 ( greek language ) the  "Ad Managment  2.3" , need to upgrade in 3.0 ?
And if yes how  ( unistall the previus and install the new mod ? or hav a update pack ? ) .
Thanks a lot

Bigguy

I don't think there is an upgrade package for this. (I could be wrong) You will probably have to uninstall it then re-install the new version IF it is compatible with your SMF version.

vbgamer45

If going from 2.3 to 3.0 I would suggest an uninstall and then a new install.
Community Suite for SMF - Grow your forum with SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com - Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

iain sherriff

HI
Using default theme 2.0.3 and version 3 of the mod.
I have "enable Ads" unchecked for some membergroups but they can still see the Ads. What have I missed /

thanks
SMF 2.0.12

mamadmankan

Quote from: Kindred on January 11, 2013, 07:49:24 AM
are you even using the core theme? If not, ignore that and continue

whats the core themes ?

SD-X

Quote from: mamadmankan on January 11, 2013, 01:55:21 PM
Quote from: Kindred on January 11, 2013, 07:49:24 AM
are you even using the core theme? If not, ignore that and continue

whats the core themes ?
The core theme is the default one that comes with SMF itself.

Arantor

QuoteThe core theme is the default one that comes with SMF itself.

Um, no, no it isn't.

SMF 2.0 comes with two themes, one called Curve, one called Core. The one called Curve is the default theme.
Holder of controversial views, all of which my own.


Kindred

Sugar...
the Core theme comes with SMF but is only the default for 1.1.x
Curve is the default for 2.0.x
Most people never use core with 2.0.x because it is outdated (it uses many many tables instead of divs, etc)
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

SD-X

Quote from: Kindred on January 11, 2013, 02:05:44 PM
Sugar...
the Core theme comes with SMF but is only the default for 1.1.x
Curve is the default for 2.0.x
Most people never use core with 2.0.x because it is outdated (it uses many many tables instead of divs, etc)
A lot of people call Curve "default" and "core" even today. I also never said a version. I said SMF. :P

iain sherriff

#6932
Hi again.
I have changed over to Ad seller Pro and that controls membergroups fine..........not sure, maybe Ad Managment doesnt anyway ?

Anyway It works well now
SMF 2.0.12

mamadmankan

Quote from: mamadmankan on January 11, 2013, 02:51:40 AM
ok ive been trying to add this mod to my website/forum

so i got this

QuoteCore Theme
   Execute Modification   ./Themes/core/BoardIndex.template.php   Test failed
   1.   Add Before   ./Themes/core/BoardIndex.template.php   Test successful
   2.   Add After   ./Themes/core/BoardIndex.template.php   Test failed
   Execute Modification   ./Themes/core/Display.template.php   Test failed
   1.   Add After   ./Themes/core/Display.template.php   Test successful
   2.   Replace   ./Themes/core/Display.template.php   Test successful
   3.   Replace   ./Themes/core/Display.template.php   Test failed
   Execute Modification   ./Themes/core/MessageIndex.template.php   Test failed
   1.   Add After   ./Themes/core/MessageIndex.template.php   Test successful
   2.   Replace   ./Themes/core/MessageIndex.template.php   Test failed


so i went into this

Quote2.   Add After   ./Themes/core/BoardIndex.template.php   Test failed

found this

Code: (Find) [Select]
<tbody class="divider">
<tr>
<td colspan="4"></td>
</tr>
</tbody>';



Code: (Add After) [Select]

echo '<tbody><tr><td colspan="4">';
//Display ads Between cats
if (function_exists("show_category"))
{
$ads = show_category($category['id']);
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}
echo ' </td></tr></tbody>';


but i couldnt find the first part

<tbody class="divider">
<tr>
<td colspan="4"></td>
</tr>
</tbody>';


i couldnt find that any idea how i can find it ? or help installing this

can i please get support on this

can someone help me ?? the code doesnt exist in the PHP if i even try to edit it ??

any help

vbgamer45

What I do is look at the default theme find where that code is at. Then look at the custom theme and make a similiar edit in the same region.
Community Suite for SMF - Grow your forum with SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com - Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

mamadmankan

Quote from: vbgamer45 on January 12, 2013, 11:01:35 PM
What I do is look at the default theme find where that code is at. Then look at the custom theme and make a similiar edit in the same region.

well i cant find the code in that theme ?? i dont understand sorry

1.) so right now i have my installed theme that i want the custom theme
2.)i tried to install this mod in my custom theme
3.) i tried to install this mode and in some PHP files i dont find the code or it says the code doesnt exist ......???

please help

vbgamer45

You have to find a similar area.
I do also offer a paid theme install service as well
Community Suite for SMF - Grow your forum with SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com - Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

python01

I am fairly new to the SMF and this is the first mod that I am trying to install.
Since I am not using the default template I have tried to do manual installation. Once all the files were modified I got error message saying that the proper table in my database is missing. Can someone provide information what columns have to be set up in the table?
Or any other way to create that table?
Walter.

vbgamer45

For custom themes. First do the complete install and use the option to install on all themes.

Then for any failures try to install on that server.
Community Suite for SMF - Grow your forum with SMF, Gallery,Store,Classifieds,Downloads,more!

SMFHacks.com - Paid Modifications for SMF

Mods:
EzPortal - Portal System for SMF
SMF Gallery Pro
SMF Store SMF Classifieds Ad Seller Pro

python01

Where is the option to install on all themes? Dont see the theme I am using in that section.
I am using MysticJade theme by DzinerStudio and this theme is not even listed in the "Install in other themes" section.
I also peeked into /themes/mysticjade_20a directory and I did not see any directories matching the ones in the manual installation instructions for this mod, what should be my next step?

Advertisement: