MyBB Community Forums

Full Version: MyShowcase System 2.5.2
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
would you mind posting this over at http://www.communityplugins.com/forum/fo....php?fid=4 ? it would be easier for me to track the support requests.

Can you pride the URL to the showcase and a test account that has showcase permissions? I may need ACP access to the myshowcase admin and the themes/templates as well.
Can anyone help have been trying for two hrs to get myshowcase working and now am getting this error (This file is not properly configured in the MyShowcase Admin section of the ACP) but have followed on the information i can find set all fields ect

http://streetmod.co.uk/forum/showcase.php
version 2.5.2 posted to the Mods site, though I would much prefer you look for the latest at Community Plugins

Also, it would be much simpler to provide you all proper support if you requested help over there and create your own new threads so i can be sure your individual issues are properly tracked and resolved. As you can see, 10+ pages of mixed support is difficult to follow

MyShowcase Important Links
Full Description - Change Log - Support Forum



Thanks
Hi pavemen, hope this message finds you well.

I just had a quick question regarding showing....

Ignore me, solved it, wasn't anything major just a line break i couldn't locate!
Go to ACP > Template and Style > Templates > Search/Replace and put

{$post['garage_user_link']}

in the top box and click Find and Replace. It will then list where that code is found and you can then right-click on Edit to open in a new window/tab and edit there.
Hi again pavemen,

Just wondering, would it be relatively accomplishable to display a random image from the gallery and display it somewhere?

I took a look myself, and the first issue i had was that the good quality and sized photos are .attach files. Also, the fact that files are grouped in folders by upload date got me a bit stumped!
There is already a random image function and supporting template in the main plugin file. You simply need to enable/tweak the hook call to run when you want it to., right now it is set to run at portal_start.

What it does is call myshowcase_portal_random() which for me was setup to run different for guests than registered users. The base code for that functionality is still there, just commented out if you want to use it (I ran an ad block for guests instead of an image). This function calls myshowcase_get_random() and returns 0 if nothing is found or the resulting template output.

The template is called portal_rand_showcase and you can edit as needed.
Thanks for the quick reply as ever.

The actual template you mentioned portal_rand_showcase itself is empty. The function is enabled in ACP settings. Did you hint for me to include something like {$latestthreads} or {$whosonline} to call this function to the portal?
the empty template is likely the result of a previous upgrade bug. here is the default content for it

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>Random {$rand_showcase['name']}</strong></td>
</tr>
<tr>
<td class="trow1">
<strong><a href="{$item_viewcode}">{$entry['description']}</a><br /></strong>
<span class="smalltext">
<strong>&raquo; </strong>{$item_member}<br />
<strong>&raquo; </strong>Views: {$entry['views']}<br />
<strong>&raquo; </strong>Comments: {$entry['comments']}<br />
</span>
<div style="float:right"><a href="{$item_viewcode}"><img src="{$rand_img}" border="0"></a></div>
</td>
</tr>
</table>

if you want to output a random showcase image to the portal, simply populate the template then edit the portal template and insert {$portal_rand_showcase} where you want it to be output.

If you want to place it on the index instead, change the hook function from portal_start to index_start and place {$portal_rand_showcase} in the index template

oh, and you do need to edit the showcase itself and check the option to show random on portal, otherwise you wont get anything.
sir help me after upgrading our showcase when click view only white page is displayed. please help me fix it. Thanks
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29