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

Recent Posts

Pages: 1 2 3 [4] 5 6 ... 10
31
Ahh I found my Post from 2013, this I need for SMF 2.1.4 Default Theme - Curve2

https://www.smfhacks.com/index.php/topic,7904.msg35814.html

Or can you please provide a mod? I would like to have as little manual intervention in the code as possible in the future, I'm getting older.


Code: [Select]
// SMF Gallery Recent Images on Index
 if (allowedTo('smfgallery_view'))
 {
 global $boardurl;
 
 
 
 
 // Check if the gallery url has been set if not use the default
 if(empty($modSettings['gallery_url']))
 $modSettings['gallery_url'] = $boardurl . '/gallery/';
 
 echo '

 
 <table cellspacing="0" cellpadding="5" border="0" align="center" width="100%" class="tborder">
 
 ';
 $rowlevel = 0;
 $maxrowlevel = 4;
 foreach ($context['gallery_recent'] as $picture)
 {
 
 if ($rowlevel == 0)
 echo '<tr>';
 
 
 echo '
 <td align="center"><a href="' . $scripturl . '?action=gallery;sa=view;id=' .$picture['id_picture'] . '"><img src="' . $modSettings['gallery_url'] . $picture['thumbfilename']  . '" alt="" /></a><br />
 <span class="smalltext">';
 echo $picture['title'] . ' - ' . $picture['profilelink'] ;
 if (!empty($modSettings['gallery_set_t_filesize']))
 echo $txt['gallery_text_filesize'] . $picture['filesize'] . '<br />';
 if (!empty($modSettings['gallery_set_t_date']))
 echo $picture['date'] . '<br />';
 echo '</span></td>';
 
 
 
 if($rowlevel < ($maxrowlevel-1))
 $rowlevel++;
 else
 {
 echo '</tr>';
 $rowlevel = 0;
 }
 }
 if($rowlevel !=0)
 {
 echo '</tr>';
 }
 echo '</table>';
 }
 // End SMF Gallery Recent Images on Index


There is already something like this for the gallery, but I would like to see the random pictures above the forum.

32
Ok, I renewed my Licence and its working now. I was on Gallery 9.0.5 and found another problem which was also with the Update fixed.  (IPV6 Edit Image)


Now I only have 2 problems left.

The gallery images with 3 of them next to each other do not fit in the view on the cell phone (Google Pixel Android 14, Firefox + Chrome), only when I look in landscape format does it work again. When I open the gallery, the images at the top of the view are the most recent. When I enter a category or just click on it to show all the latest ones, then the 3rd row on the right is completely outside the layout as in the 1st post.

I had a modification under SMF 2.0.19 that shows random images at the top of the forum. Where can I find the script?

I had to update SMF 2.0.19 because my provider wants me to switch to PHP 8.1 and then nothing works anymore. So I'm forced to update everything again. The board has been running since 2002 and is constantly being patched.

Thank you !
33
The mod should be working if you have the latest version.


I just viewed my site on mobile via iphone.
34
Hello, I am just upgrading my Forum to 2.1.4 and the MOD for Gallery Pro - Recents Images to overall header is no longer working ?

Is there an update ?

I also have Problems with the Default Theme Curve2 on an Mobile Phone. The Gallerie does not fit with 3 Images besides, the Background is with the 3. Image wrong if you scroll right.
35
Support / Re: No thumbnails on new uploads
« Last post by Tonyvic on March 29, 2024, 06:26:18 am »
Ok, thanks for checking.
I guess I will have to try to find out why some don't produce thumbs for my setup.
36
Support / Re: No thumbnails on new uploads
« Last post by SMFHacks on March 27, 2024, 02:10:41 pm »
Hmm was able to upload both and it created the thumbnails
https://www.smfhacks.com/demos21/index.php?action=gallery;sa=bulk;usercat=1

37
General SMF Forum / Re: Display the Contact Page for guests
« Last post by SMFHacks on March 27, 2024, 10:55:43 am »
Glad to have solved it!
38
General SMF Forum / Re: Display the Contact Page for guests
« Last post by andreios on March 27, 2024, 10:55:00 am »
Thank you, worked.
In my Modifications.german_informal.php were already strings but everything English.
39
General SMF Forum / Re: Display the Contact Page for guests
« Last post by SMFHacks on March 27, 2024, 10:38:03 am »
herere is the langauge translation from AI. you can put in your themes modifications.YOURLANGUAGE.php file

Code: [Select]
// Begin Contact Page Text Strings
$txt['smfcontact_contact'] = 'Kontakt';
$txt['permissionname_view_contact'] = 'Kontaktseite anzeigen';
$txt['permissionhelp_view_contact'] = 'Ermöglicht Mitgliedern das Anzeigen der Kontaktseite und das Senden von E-Mails.';
$txt['cannot_view_contact'] = 'Sie können die Kontaktseite nicht anzeigen.';
$txt['smfcontact_name'] = 'Ihr Name:';
$txt['smfcontact_subject'] = 'Betreff';
$txt['smfcontact_body'] = 'Nachricht';
$txt['smfcontact_emailaddress'] = 'Email Adresse';
$txt['smfcontact_sendemail'] = 'E-Mail senden';
$txt['smfcontact_messagesent'] = 'Ihre Nachricht wurde gesendet!';
$txt['smfcontact_messagesent_click'] = 'Ihre Nachricht wurde gesendet! Klicken Sie ';
$txt['smfcontact_messagesent_return'] = 'hier</a> um zum Board zurückzukehren.';
$txt['smfcontact_errname'] = 'Sie müssen Ihren Namen eingeben.';
$txt['smfcontact_errsubject'] = 'Sie müssen einen Betreff eingeben.';
$txt['smfcontact_errmessage'] = 'Sie müssen eine Nachricht eingeben.';
$txt['smfcontact_erremail'] = 'Sie müssen Ihre E-Mail-Adresse eingeben.';
$txt['smfcontact_errbademail'] = 'Sie haben keine gültige E-Mail-Adresse eingegeben.';
$txt['smfcontact_titlesent'] = ' - Nachricht gesendet.';
$txt['smfcontact_form'] = 'Kontaktformular für ';
$txt['smfcontact_formname'] = "Name: ";
$txt['smfcontact_formemail'] = "Email: ";
$txt['smfcontact_ip'] = "IP: ";
$txt['smfcontact_formmessage'] =  "Nachricht: \n";
$txt['smfcontactpage_email'] = 'Kontaktseite - Email: ';
$txt['smfcontactpage_board'] = 'Kontaktseite - Board zum Posten (Optional): ';
// END Contact Page Text Strings

40
General SMF Forum / Re: Display the Contact Page for guests
« Last post by andreios on March 27, 2024, 10:20:06 am »
Yes I downloaded the file again and replaced it but it look pretty much the same version 7.1.
I uninstalled and installed the new one.
On installation it said Modifications.german_informal.php "test successful".
Pages: 1 2 3 [4] 5 6 ... 10

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