*

Recent

Recent Posts

Pages: 1 ... 6 7 [8] 9 10
71
Bug Report / Game Pack, Dead Links
« Last post by DTH on July 31, 2015, 05:31:07 PM »
HI

I purchased one of your game packs but after returning to the my products page and accepting the agreement it forwards to a dead link
72
V3.x / Signup question
« Last post by shark79 on July 16, 2015, 02:04:54 AM »
Hello everybody. Can we make a change to this option so we don't have :

Quote
Question:*
If you forgot your password!    
Answer:*
If you forgot your password!

It's easier for kids without this question/answer.
73
V3.x / My Menu on the footerbox
« Last post by outlaw16151 on July 15, 2015, 01:31:01 AM »
i was thinking, i want the mymenu.php to show up on the bottom footerbox, but for the life of me, i cant get it to work right, here is the code for mymenu,php.


Quote
<?php
echo'   <div class="side_nav">User Menu</div>
<div class="clear"></div>
   <div id="side_holder">

      <ul class=\'catmenu\'>';
            if($seo_on == 1){
               if(!isset($suserid)){
                  echo '<li ><a href=\''.$domain.'/login/\'>Login</a></li>
                  <li><a href=\''.$domain.'/signup/\'>Signup</a></li>';
               }else{
                  echo '<li ><a href=\''.$domain.'/myaccount/\'>My Account</a></li>
                  <li><a href=\''.$domain.'/myaccount/favorites/\'>Favorites</a></li>
                  <li ><a href=\''.$domain.'/logout/\'>Logout</a></li>';
               }
            }else{
               if(!isset($suserid)){
                  echo '<li ><a href=\''.$domain.'/index.php?action=login\'>Login</a></li>
                  <li ><a href=\''.$domain.'/index.php?action=signup\'>Signup</a></li>';
               }else{
                  echo '<li ><a href=\''.$domain.'/index.php?action=myaccount\'>My Account</a></li>
                  <li><a href=\''.$domain.'/index.php?action=myaccount&cmd=favorites\'>Favorites</a></li>
                  <li ><a href=\''.$domain.'/index.php?action=logout\'>Logout</a></li>';
               }
            }
            if($usrdata['user_level'] == 2){echo '<li><a href=\''.$domain.'/index.php?action=admin\'>Admin</a></li>';};
            if($usrdata['gamelevel'] >= 2) {echo '<li><a href=\''.$domain.'/index.php?action=gameadmin\'>Game Admin</a></li>';};
            if($usrdata['bloglevel'] >= 2) {echo '<li><a href=\''.$domain.'/index.php?action=blogadmin\'>Blog Admin</a></li>';};
      echo'</ul>
   </div>
<div style="clear:both"></div>';
?>

how would i get that to work in the footerbox, here is whats there now.
[/quote]<div id="footer_box">
<div id="footer_content">
<div class="footer_boxnav">Just Added</div>
<?php
      $count2 = 0;
         $latest2 = "SELECT * FROM fas_games  WHERE `active`='1' ORDER BY ID DESC";
         $latest1 = sqlcache('latest', $cachelife, $latest2);
         if(isset($latest1)){
            foreach($latest1 as $row2){
               $latestname = preg_replace('#\W#', '-', $row2['name']);
               if($row2['type'] == 1){
                  $img = "<img src='".$domain."/".$thumbsfolder."/".$row2["thumb"]."' alt='".$latestname."' title='".$latestname."' class='minithumb' />";
               }else{
                  $img = "<img src='".$row2["thumburl"]."' alt='".$latestname."' title='".$latestname."' class='minithumb' />";
               }
               if($count2<=8){
                        if ($seo_on == 1){
                           echo "<div class='footer_info'><a href='".$domain."/play/".$row2["ID"]."-".$latestname.".html'>".$img.titlelimit($row2["name"])."</a></div>";
                        }else{
                           echo "<div class='footer_info'><a href='".$domain."/index.php?action=play&amp;ID=" .$row2["ID"]. "'>".$img.titlelimit($row2["name"])."</a></div>";
                               }
                     }
               $count2++;
            }
            echo '<br />';
            if ($seo_on == 1){
               echo '&nbsp;<a href=\''.$domain.'/newest/\' title=\'Newest\'>View more >>></a>';}else{
               echo '&nbsp;<a href=\''.$domain.'/index.php?action=newest\' title=\'Newest\'>View more >>></a>';
            };
         }else{
            echo'No games have been added yet!';
         };
?>
</div>[/quote]
74
V3.x / Re: [Add On] Category Drop Down List
« Last post by outlaw16151 on July 07, 2015, 11:26:19 AM »
how about having the side_nav image included above the dropdown menu
75
V3.x / Re: adding a background image
« Last post by outlaw16151 on July 07, 2015, 02:36:47 AM »
Nevermind on the background image, its way too much trouble
76
V3.x / Re: adding a background image
« Last post by outlaw16151 on July 04, 2015, 12:25:42 AM »
ok  the image shows, but only goes down half way down the page
77
V3.x / Re: adding a background image
« Last post by am-fs on July 03, 2015, 09:41:15 PM »
change:
Code: [Select]
background: #333333;
to:
Code: [Select]
background: #FFFFFF url('images/background.png') repeat-x 0 top;

or:
Code: [Select]
background:#FFFFFF url('images/background.png') no-repeat top center;
78
V3.x / adding a background image
« Last post by outlaw16151 on July 03, 2015, 01:42:19 PM »
ok i want to add a background image instead of just the color background, but everything else i want to stay the same.
79
V3.x / Re: [Add On] AGF Game Feed
« Last post by BurimS on June 28, 2015, 05:13:23 PM »
sorry bro thank you i find the problem,

The problem is because i use free hosting for that i have test in a real host it works.

Regards
80
V3.x / Re: [Add On] AGF Game Feed
« Last post by am-fs on June 27, 2015, 11:14:27 PM »
check the path in the admin settings, it is there twice

it should be  =>  /home/a8450762/public_html/

not sure how or why the path is showing at the top of your site
Pages: 1 ... 6 7 [8] 9 10