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: 212
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 190
Total: 190

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Empire

Pages: [1] 2 3
1
Support / Re: Site errors that needs to be fixed, Support
« on: July 19, 2015, 09:16:33 am »
Just to update you.

I set my theme to the default smf theme and appears to be no errors.. But then I did test it out by using a phone so don't count on it

2
Support / Re: Site errors that needs to be fixed, Support
« on: July 19, 2015, 02:29:52 am »
That's what I do use, The XHTML test link. It's tested by validator.w3.org

Check it yourself http://baysidegamers.com/gallery/

Be good that 5 or more are fixed so that I don't see 51 errors.. lol https://wiki.whatwg.org/wiki/Presentational_elements_and_attributes


3
Support / Site errors that needs to be fixed, Support
« on: July 18, 2015, 09:17:00 pm »
Howdy SMFHacks

I have site errors that needs to go thought and to be fixed, Most of them is from the designed of the theme and the others are from your modifications, like the gallery prop and the download prop and many other of your products that I have installed.

I already have already fixed around 4 to 5 errors so fair and the little help from the designer of the theme.

Now I want my site to don't have any god damn errors, and so since I don't know much about the code of your products you might help me out

Errors from the gallery page https://validator.w3.org/nu/?doc=http%3A%2F%2Fbaysidegamers.com%2Fgallery%2F
Errors from the Download page https://validator.w3.org/nu/?doc=http%3A%2F%2Fbaysidegamers.com%2Fdownloads%2F

thanks

4
Support / Re: Color background In Category
« on: June 18, 2015, 01:55:20 am »
Try this attached file

thanks  ;D looks 500% better now

5
Support / Re: Color background In Category
« on: June 17, 2015, 02:13:59 am »
See if this file helps
thanks,

With the view images link on members profile.. it leads to a list of images that they uploaded. that needs fixing.

6
Support / Re: Color background In Category
« on: June 16, 2015, 03:04:02 am »
For image 1
Would require modifying gallery2.template.php and in the image_listing function
In the tr tag for the main picture loop add class="windowbg"

For image 3
Change titlebg to catbg in those bottom links in the image_listing area


If you need help attach your gallery2.template.php file

I'm having problems finding the line

7
Support / Color background In Category
« on: June 14, 2015, 04:48:04 am »
I have change the site theme color, and as from the images in the attachments you will see that the background white is no going (image 1).  Before I have change the theme color it was white! and after it's no longer there.

The main page is alright as seen in image 2 

One image 3, as you can see that the word/links are not easy to read, so I like it to be black and easy to read.

I'm using ZGames theme by the way

8
Support / Re: Karma Option update
« on: May 06, 2015, 08:14:55 pm »
Replace all
Code: [Select]
$message['member']
With
Code: [Select]
$memberContext[$memCommID]

All that did is added Dot points next to them

9
Support / Re: Karma Option update
« on: May 06, 2015, 12:08:22 am »
Just an remainder that it needs to work with the Karma Statistic, so if anyone hit the up... I can see who like what image and so on. If that option works


Thanks

10
Support / Re: Karma Option update
« on: May 06, 2015, 12:05:23 am »
You would need to modify gallery.template.php and downloads.template.php and find the code that displays the profilebox then change it to the same code that the karma mod is using.
Found it alright and changed it, but The images does not show or it works.

I have not done the Download pro just Yet
Code: [Select]
// Is karma display enabled?  Total or +/-?
      if ($modSettings['karmaMode'] == '1')
         echo '
      <br />
      ', $modSettings['karmaLabel'], ' ', $memberContext[$memCommID]['karma']['good'] - $memberContext[$memCommID]['karma']['bad'], '<br />';
      elseif ($modSettings['karmaMode'] == '2')
         echo '
      <br />
      ', $modSettings['karmaLabel'], ' +', $memberContext[$memCommID]['karma']['good'], '/-', $memberContext[$memCommID]['karma']['bad'], '<br />';

      // Is this user allowed to modify this member's karma?
      if ($memberContext[$memCommID]['karma']['allow'])
         echo '
      <a href="', $scripturl, '?action=modifykarma;sa=applaud;uid=', $memberContext[$memCommID]['id'], ';sesc=', $context['session_id'], '">', $modSettings['karmaApplaudLabel'], '</a>
      <a href="', $scripturl, '?action=modifykarma;sa=smite;uid=', $memberContext[$memCommID]['id'],  ';sesc=', $context['session_id'], '">', $modSettings['karmaSmiteLabel'], '</a><br />';

And this is what I added.

Code: [Select]
// Is karma display enabled?  Total or +/-?

            $context['show_karmastat'] = allowedTo('karmalog_view') && empty($modsettings['karmapermiss']);

         if ($modSettings['karmaMode'] == '1')
            echo '
                        <li class="karma">', (!empty($modSettings['karmadescmod']) && !empty($modSettings['karmalabellink']) && $context['show_karmastat']) ? '<a href="'. $scripturl . '?action=ownkarma;u='. $message['member']['id'] .'">'. $modSettings['karmaLabel'] .'</a>' : $modSettings['karmaLabel'] ,' ', $message['member']['karma']['good'] - $message['member']['karma']['bad'], '</li>';

         elseif ($modSettings['karmaMode'] == '2')
            echo '
                        <li class="karma">', (!empty($modSettings['karmadescmod']) && !empty($modSettings['karmalabellink']) && $context['show_karmastat']) ? '<a href="'. $scripturl . '?action=ownkarma;u=' . $message['member']['id'] . '">'.$modSettings['karmaLabel'].'</a>' : $modSettings['karmaLabel'] ,  ' +', $message['member']['karma']['good'], '/-', $message['member']['karma']['bad'], '</li>';


         // Is this user allowed to modify this member's karma?
         if ($message['member']['karma']['allow'])
            echo '
                        <li class="karma_allow">
                           <a href="', $scripturl, '?action=modifykarma;sa=applaud;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.' . $context['start'], ';m=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $modSettings['karmaApplaudLabel'], '</a>
                           <a href="', $scripturl, '?action=modifykarma;sa=smite;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';m=', $message['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $modSettings['karmaSmiteLabel'], '</a>
                        </li>';

11
Support / Karma Option update
« on: May 03, 2015, 02:26:59 am »
I have updated my Karma option, Improved it more for the posts on the forums. I have the Karma Description Mod. From the images you see I have up and down images.

Anyway I wanted that option for the comments in the Gallery pro and the download pro to. So that way it does not look blend. it will look all the same 

12
Support / Re: Seeing Double
« on: April 26, 2015, 09:00:49 pm »
Maybe...try and see it what happens.
All fixed, With no errors. still seeing Karma Stats Double

13
Support / Re: Seeing Double
« on: April 26, 2015, 08:35:46 pm »
When you install the SMF patch you shouldn't have to reinstall anything...If you install them again it will cause files to double up.

Sources/QueryStrings.php for Simple Audio Video Embeder.

You will need scan the template files such as Display.template.php find the duplicate code.
Can I just delete Display.template.php and replace the backup Display.template.php

14
Support / Seeing Double
« on: April 26, 2015, 02:18:53 am »
I have upgraded to the new patch (SMF 2.0.10). And had to install all  modifications that most files are from here (SMFhacks). All going good apart from errors after errors, of which i'm fixing. However I some help  8)

AS from the attachments, you can see it's all double. The Karma Stats, View Gallery, the Total Badges and social network. I know that two off them are not by you, but it's something that you guys probably have an fix.

Last thing, on my footer it says (Simple Audio Video Embedder) I removed that months ago and for some reasons I can't find the code to remove it again

15
Support / close label URL...
« on: April 08, 2015, 09:22:48 pm »
Just a little error that needs fixing, and I'm posting here as there might be other members with the same error.

404 error for this image, The URL is messed up. For an example how mine was set up like http://www.sample.com/gallery/gallery/images/closelabel.gif

needs to be http://www.sample.com/gallery/images/closelabel.gif 

how did the gallery/gallery apper to happen like that

Pages: [1] 2 3

+- 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