General support topic for Aeva Media (Latest release: July 28, 2010)

Started by Nao 尚, October 14, 2007, 04:28:15 PM

Previous topic - Next topic

LinK187


mrtrc266

Quote from: LinK187 on April 13, 2010, 08:32:38 PM
does anyone know how to add the gallery button to this theme?

http://custom.simplemachines.org/themes/index.php?lemma=718

I'm assuming that you're using SMF 1.1.11 since that's that latest version of this theme?

It will be very helpful to use the Mods Parser on the Mods Home Page. Select the version of Aeva that you're using then from the drop down list select the version of SMF you're using. Then you can see what edits need to be done. This will also come in handy for many more Mods.

In this case it says ....

Find /Themes/default/index.template.php
// the [member] list button
Add before
   // Aeva Media
   // Recalculate number of unseen items
   global $user_info;

   if (!empty($user_info['aeva_unseen']) && $user_info['aeva_unseen'] == -1)
   {
      global $sourcedir;
      require_once($sourcedir . '/Aeva-Subs.php');
      aeva_loadSettings();
   }

   $aeva_unseen = !allowedTo('aeva_access_unseen') || empty($user_info['aeva_unseen']) || $user_info['aeva_unseen'] == -1 ? 0 : $user_info['aeva_unseen'];

   if (allowedTo('aeva_access'))
      echo ($current_action == 'media' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '', '
            <td valign="top" class="maintab_', $current_action == 'media' ? 'active_back' : 'back', '">
               <a href="', $scripturl, '?action=media">', isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media', $aeva_unseen ? '</a> <a href="' . $scripturl . '?action=media;sa=unseen">[<b>' . $aeva_unseen . '</b>]' : '', '</a>
            </td>', $current_action == 'media' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


LinK187

Quote from: mrtrc266 on April 14, 2010, 01:05:20 AM
Quote from: LinK187 on April 13, 2010, 08:32:38 PM
does anyone know how to add the gallery button to this theme?

http://custom.simplemachines.org/themes/index.php?lemma=718
Use the Mods Parser on the Mods Home Page. Select the version of Aeva that you're using then from the drop down list select the version of SMF you're using. Then you can see what edits need to be done. This will also come in handy for many more Mods.

In this case it says ....

Find /Themes/default/index.template.php
// the [member] list button
Add before
   // Aeva Media
   // Recalculate number of unseen items
   global $user_info;

   if (!empty($user_info['aeva_unseen']) && $user_info['aeva_unseen'] == -1)
   {
      global $sourcedir;
      require_once($sourcedir . '/Aeva-Subs.php');
      aeva_loadSettings();
   }

   $aeva_unseen = !allowedTo('aeva_access_unseen') || empty($user_info['aeva_unseen']) || $user_info['aeva_unseen'] == -1 ? 0 : $user_info['aeva_unseen'];

   if (allowedTo('aeva_access'))
      echo ($current_action == 'media' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '', '
            <td valign="top" class="maintab_', $current_action == 'media' ? 'active_back' : 'back', '">
               <a href="', $scripturl, '?action=media">', isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media', $aeva_unseen ? '</a> <a href="' . $scripturl . '?action=media;sa=unseen">[<b>' . $aeva_unseen . '</b>]' : '', '</a>
            </td>', $current_action == 'media' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';



i did this first..to no avail. i got my friend to add it manually.. i guess the theme isn't very standard... now a new problem... there's no text for the aeva options in smf permissions section... there were there a couple days ago... i've checked modifications.english.php, modifications.english-utf8.php and ManagePermissions.php... i can't see anything wrong...

mrtrc266

I just installed that theme and did the edits and it works fine. If your missing the text in your admin panel or anywhere else (like the button) then more than likely it's a language issue.

Make sure this is in the files you mentioned above /Themes/default/languages/Modifications.english.php and /Themes/default/languages/Modifications.english-utf8.php

// Aeva Media extra strings
$txt['aeva_gallery'] = isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media';
$txt['aeva_home'] = 'Home';
$txt['aeva_unseen'] = 'Unseen';
$txt['aeva_profile_sum'] = 'Summary';
$txt['aeva_view_items'] = 'View items';
$txt['aeva_view_coms'] = 'View comments';
$txt['aeva_view_votes'] = 'View votes';
$txt['aeva_gotolink'] = 'Details';
$txt['aeva_zoom'] = 'Zoom';
$txt['permissiongroup_aeva'] = 'Aeva Media';
$txt['permissiongroup_simple_aeva'] = 'Aeva Media';
$txt['permissionname_aeva_access'] = 'Access Gallery';
$txt['permissionname_aeva_moderate'] = 'Moderate Gallery';
$txt['permissionname_aeva_manage'] = 'Administrate Gallery';
$txt['permissionname_aeva_access_unseen'] = 'Access unseen area';
$txt['permissionname_aeva_search'] = 'Search in Gallery';
$txt['permissionname_aeva_add_user_album'] = 'Add Albums';
$txt['permissionname_aeva_add_playlists'] = 'Add User Playlists';
$txt['permissionname_aeva_auto_approve_albums'] = 'Auto-approve Albums';
$txt['permissionname_aeva_moderate_own_albums'] = '<span style="border-bottom: 1px #888 dashed" title="Delete any comments/items on own albums, and delete own albums.">Moderate own Albums</span>';
$txt['permissionname_aeva_viewprofile'] = 'View anyone\'s Gallery profile';
$txt['cannot_aeva_viewprofile'] = 'You cannot view Gallery profiles';
// End Aeva Media strings

LinK187

Quote from: mrtrc266 on April 14, 2010, 01:35:05 AM
I just installed that theme and did the edits and it works fine. If your missing the text in your admin panel or anywhere else (like the button) then more than likely it's a language issue.

Make sure this is in the files you mentioned above /Themes/default/languages/Modifications.english.php and /Themes/default/languages/Modifications.english-utf8.php

// Aeva Media extra strings
$txt['aeva_gallery'] = isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media';
$txt['aeva_home'] = 'Home';
$txt['aeva_unseen'] = 'Unseen';
$txt['aeva_profile_sum'] = 'Summary';
$txt['aeva_view_items'] = 'View items';
$txt['aeva_view_coms'] = 'View comments';
$txt['aeva_view_votes'] = 'View votes';
$txt['aeva_gotolink'] = 'Details';
$txt['aeva_zoom'] = 'Zoom';
$txt['permissiongroup_aeva'] = 'Aeva Media';
$txt['permissiongroup_simple_aeva'] = 'Aeva Media';
$txt['permissionname_aeva_access'] = 'Access Gallery';
$txt['permissionname_aeva_moderate'] = 'Moderate Gallery';
$txt['permissionname_aeva_manage'] = 'Administrate Gallery';
$txt['permissionname_aeva_access_unseen'] = 'Access unseen area';
$txt['permissionname_aeva_search'] = 'Search in Gallery';
$txt['permissionname_aeva_add_user_album'] = 'Add Albums';
$txt['permissionname_aeva_add_playlists'] = 'Add User Playlists';
$txt['permissionname_aeva_auto_approve_albums'] = 'Auto-approve Albums';
$txt['permissionname_aeva_moderate_own_albums'] = '<span style="border-bottom: 1px #888 dashed" title="Delete any comments/items on own albums, and delete own albums.">Moderate own Albums</span>';
$txt['permissionname_aeva_viewprofile'] = 'View anyone\'s Gallery profile';
$txt['cannot_aeva_viewprofile'] = 'You cannot view Gallery profiles';
// End Aeva Media strings


actually i found the issue... the modifications files only go in the default folder, not in the custom one...

mrtrc266

Quoteactually i found the issue... the modifications files only go in the default folder, not in the custom one...

Yes for future reference that will usually be the case. Glad you got it sorted :)

Kindred

yes... language files should only ever be in the default theme folder...  If your theme has custom language files, then you will likely run into lots of problems with nearly every mod...
Сл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."

jdvarner

Does anyone have the bloc code to show recent additions in a front page block for tiny portal? Like a php script pulling the last 3 aeva media items?

Kindred

did you try reading this topic?   that code has been posted 5 or 6 times.
Сл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."

jdvarner

Thanks Kindred. Wasn't sure if it was within the 108 pages. I'll go look.

jdvarner

Has anyone been able to get mass upload to work in the latest 1.1b version of Aeva Media? It just seems to sit there when you go and select your pictures. Doesn't try to upload like it did in SMF Gallery. I already checked for errors and the java is enabled as well as flash.

Surely someone has it figured out? Thanks.
jd


CerebralJam

Hi there - I'm afraid this thread at 108 pages long is hard to be able to check out so I apologize in advance if this has been asked and no doubt it will have been but here goes:

If a youtube video has embed disabled - is there anyway to still post the link/url without it picking up the player? 

Also, in the same light, I use playlists to make lists of posts on songs - some might be on youtube and the last thing I want is a big player stuck in the middle of it, so this is another reason why I want to know if you can disable the embed player bit on an individual post and if so what coding can you use?  I have looked at the Admin page but can't work out what to do... thanking you in advance - LOL Aeva works TOO WELL at times! :D

I really would like to read the whole thread but I've already tried using searching common keywords and found some threads - with various bits in but not sure it is what I am looking for - I saw in one something about [noembed] but I tried that and still it picks up.  Many, many thanks for your time in creating such a wonderful mod and I'm sorry for being a pest.  I'm still on version 7.0.706  I intend to upgrade the whole board as soon as I can find the time - and I'll be upgrading the mod to the latest then. 

EDIT:  Just to let you know I'm up to the end of page 15 and so far whilst people have alluded to no embed allowed it doesn't answer how to put the link without the player so that people go straight to youtube... 2.36am here in the UK so I'm off to bed now... will check back again tomorrow - many thanks.

godboko

[noembed]http://www.youtube.com/watch?v=7xyuX7u-Xts[/noembed] works for me in 7.0. CerebralJam, I will test on a later version once I upgrade my forums later this evening.
Thank you,
Robert aka godboko

godboko

Thank you,
Robert aka godboko

CerebralJam

Thank you for your reply, honestly I tried that yesterday and it still gave me the graphic player - I'll try it again - I was wondering if maybe I have something checked in the admin panel which is allowing it to bypass this command...

I just tried again and it is still showing!  Very odd?  Any thoughts?




jdvarner

QuoteHas anyone been able to get mass upload to work in the latest 1.1b version of Aeva Media? It just seems to sit there when you go and select your pictures. Doesn't try to upload like it did in SMF Gallery. I already checked for errors and the java is enabled as well as flash.

Surely someone has it figured out? Thanks.
jd

I have been struggling on this one. No errors, everything enabled. When i click on multiple photos on mass upload it just sits? no errors. nothing?

I'll pay for a solution

jdvarner

So why when i go back to SMF 2.0.5 gallery the Mass upload works fine. But in AEVA 1.1b it just sits there? Whats the difference? What am i missing please.

troppmann

om i want this thing off my forums so bad, installing was the biggest waste of my time...


where are the uninstall readmes?

Forum Guy

in the package manager (admin) is the uninstall option

after that go into your webspace and delete the aveda folder to free up space

Advertisement: