1
Support / Re: User Galleries .. Are inaccessible usual users
« on: November 22, 2008, 07:49:58 am »
Check the permissions for that membergroup.
|
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. 1
Support / Re: User Galleries .. Are inaccessible usual users« on: November 22, 2008, 07:49:58 am »
Check the permissions for that membergroup.
2
Support / Description« on: November 21, 2008, 08:39:55 pm »
When adding/editing a gallery, there's this field:
Description: (BBC codes are supported) I am attempting to use the [ html ] normal HTML code [ /html ] but the function doesn't seem to work...what BB Codes are supported in that field? I looked here, but realize this may not be the same supported functions: http://docs.simplemachines.org/index.php?topic=57 3
General SMF Forum / Re: I've got a few more questions...« on: September 11, 2008, 10:46:14 pm »
You might be better suited posting these questions at the mother ship (nothing against this site at all).
http://www.simplemachines.org/ SMFHacks is just one of the brilliant minds behind the magic of SMF. 4
General SMF Forum / Re: How to Change Background Image in SMF 1.1.5?« on: September 09, 2008, 06:45:09 am »
That's a relative link. Compared to where your CSS is, the image is 4 folders up.
![]() 5
General SMF Forum / Re: How to Change Background Image in SMF 1.1.5?« on: September 08, 2008, 09:48:11 pm »
Then it's either
background-image: url(../../../Clouds_Background.gif); or background-image: url(../../../../Clouds_Background.gif); 6
General SMF Forum / Re: How to Change Background Image in SMF 1.1.5?« on: September 08, 2008, 05:32:13 pm »
Where exactly is that image? I can't seem to find it:
Clouds_Background.gif http://slo-vpilots.com/Forum/Themes/Slo-V/images/Clouds_Background.gif http://slo-vpilots.com/Forum/Themes/Slo-V/Clouds_Background.gif http://slo-vpilots.com/Forum/Themes/Clouds_Background.gif http://slo-vpilots.com/images/Clouds_Background.gif Relative to your CSS, it should be here: http://slo-vpilots.com/Forum/Themes/Slo-V/Clouds_Background.gif 7
Support / Re: Multiple Gallery buttons« on: September 07, 2008, 10:49:16 pm »
OK, good security measure considering what you offer. In this case, can you PM me an email address qayyom? I'll email the file.
8
General SMF Forum / Re: Help needed« on: September 06, 2008, 10:46:56 am »
Profile Comments mod:
http://custom.simplemachines.org/mods/index.php?mod=436 Enhanced Profile http://custom.simplemachines.org/mods/index.php?mod=1348 9
General SMF Forum / Re: Help needed« on: September 06, 2008, 10:41:36 am »
You are using a custom theme. When installing mods, you may or may not see the results on a custom theme.
10
Support / Re: Multiple Gallery buttons« on: September 06, 2008, 08:28:20 am »
Right above your last post.
11
Support / Re: Multiple Gallery buttons« on: September 05, 2008, 06:54:44 am »
Looks like you had two. I pulled one. Hope this works for you!
12
Support / Re: Multiple Gallery buttons« on: September 04, 2008, 06:43:10 am »If you have more than one of those in your template just remove them and then only one of the buttons will show. Leave only one instance of the code above in the template file. If you attach your index.template.php file, I'm sure someone will edit it for you. 13
SMF Gallery Lite / Re: The classic installation questions« on: September 03, 2008, 04:56:09 pm »
I hope you have a backup of your default SMF theme because you shouldn't have overwritten that one. How about a link to your site (PM if you don't want to reveal it publicly)? Second thing is to look under /Themes/default/languages/ and look for a Modifications.english.php file. Also, look in the /Themes/YaBBSE*/languages folder. Is there a Modifications.english.php file there? Attach both of those if they both exist. I made up the YaBBSE folder as I'm not really familiar with it. I'm also thinking that I asked for the wrong file. I'm not really sure how the behind the scenes thing works.
14
SMF Gallery Lite / Re: The classic installation questions« on: September 02, 2008, 09:16:55 pm »
There is no real formula for adding mods that require tabs (except for each custom theme). I've attached an edited version of your file. I don't have any permission conditions around the tab. Should you need something like this, simply add this snippet of code immediately after this line:
// Show the [gallery] button. Code: [Select] if ($context['user']['is_logged']) That will require any user to be logged in to even see the gallery tab. As far as the Admin settings, there should be a Gallery Configuration link under the Configuration area. I'm not familiar enough with the theme you are using. Does it have it's own ModSettings.php file? 15
SMF Gallery Lite / Re: SMF Gallery Lite Help Information« on: September 01, 2008, 04:29:37 pm »
Depending on the mods you have installed this may or may not work.
Look for something like this: Code: [Select] if (in_array($context['current_action'], array('search', 'admin', 'calendar', 'profile', 'mlist', 'register', 'login', 'help', 'pm'))) Add 'gallery', to the list, something like this: Code: [Select] if (in_array($context['current_action'], array('gallery', 'search', 'admin', 'calendar', 'profile', 'mlist', 'register', 'login', 'help', 'pm'))) The add this code to the place where you want the Gallery link to appear (slightly below where the above code is): Code: [Select] // The [gallery]! Hope that works. |
|