• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

[8wayRun.Com] XenPorta (Portal)

Status
Not open for further replies.
Yes I tried that.

You could try manually deleting the addon entry (note that it is probably a good idea to backup your database prior to trying this - I have not tested this, nor am I fully aware whether this could cause other issues):

Code:
DELETE FROM xf_addon WHERE addon_id = 'EWRporta'
 
Still not working... I have to set the Blocks over "Costumize This Page" in each Browser to see everything i set. If i just costumize it in Forefox i see them just in Firefox, if i costumize them in Chrome only i just see the blocks there and so on.....

The Customise This Page option only changes them for you (and I believe saves something to a cookie so will change with browser as you're seeing).

What I think you want to do is what I said earlier, go into the ACP and set the default position of the blocks that everyone will see. Using Customise This Page, you are only setting them for yourself.
 
Is there a way to make it so the recent threads box doesn't show a preview on mouseover? Reason being, when I set the permissions for guests to not be able to view thread content, it makes the box the block vanish (Presumably, because it shows the thread content)

I want guests to see the recent threads, so they know what's being discussed and how recently, as an incentive to sign-up.
 
Is there a way to make it so the recent threads box doesn't show a preview on mouseover? Reason being, when I set the permissions for guests to not be able to view thread content, it makes the box the block vanish (Presumably, because it shows the thread content)

I want guests to see the recent threads, so they know what's being discussed and how recently, as an incentive to sign-up.

This sounds like a good idea. I'm not sure I know what you mean by blocks vanishing? It just overlays it, right?
 
XenPorta is brilliant. When I financially can (got a lot of bills at the moment) I will be going for the branding free option ;)
 
Not quite sure what ive done here, but i worked out how to set a forum into article layout. Now though if i click on one of the articles, on the new page it displays the article, and directly beneath it shows the rest of the blocks from the homepage, followed by the comments section?
 

Attachments

  • xenporta.webp
    xenporta.webp
    71.8 KB · Views: 27
  • xenporta2.webp
    xenporta2.webp
    69.3 KB · Views: 23
I converted to XenForo from vBulletin and I installed XenPorta.
vBulletin was installed in domain.com/forum, xenforo is installed on domain.com/
I redirected all the url with Kier's script from /forum/ to /

Now I want to use XenPorta for my homepage but if I set it as Index Controller, all the content of the forum moves to /forum/ and get redirected to the root from the Kier's script so only the homepage is visible.

someone got the same problem?
 
Is there a way to include the thread prefix in the news title on the news block?

Anyone got any ideas on this?

Also I asked before but never found it - how do I stop it grabbing the first media from the post and placing it in the avatar block? Wish J would add it in.
 
I converted to XenForo from vBulletin and I installed XenPorta.
vBulletin was installed in domain.com/forum, xenforo is installed on domain.com/
I redirected all the url with Kier's script from /forum/ to /

Now I want to use XenPorta for my homepage but if I set it as Index Controller, all the content of the forum moves to /forum/ and get redirected to the root from the Kier's script so only the homepage is visible.

someone got the same problem?

That's how XenPorta is set up. Xenforo in the root, XenPorta as index controller makes the forums show in /forum and the Portal in the root.

Just remove your redirect and it should work the way you want. ;)
 
I keep getting this when I try to uninstall XenPorta 1.4.4. Hope somebody can help! Thanks.

Mysqli prepare error: Table 'mcwh_gx1.EWRporta_blocks' doesn't exist
  1. Zend_Db_Statement_Mysqli->_prepare() in Zend/Db/Statement.php at line 115
  2. Zend_Db_Statement->__construct() in Zend/Db/Adapter/Mysqli.php at line 381
  3. Zend_Db_Adapter_Mysqli->prepare() in Zend/Db/Adapter/Abstract.php at line 478
  4. Zend_Db_Adapter_Abstract->query() in XenForo/Model.php at line 218
  5. XenForo_Model->fetchAllKeyed() in EWRporta/Model/Blocks.php at line 7
  6. EWRporta_Model_Blocks->getAllBlocks() in EWRporta/Install.php at line 161
  7. EWRporta_Install->_uninstall_0() in EWRporta/Install.php at line 156
  8. EWRporta_Install::uninstallCode() in XenForo/DataWriter/AddOn.php at line 193
  9. XenForo_DataWriter_AddOn->_postDelete() in XenForo/DataWriter.php at line 1738
  10. XenForo_DataWriter->delete() in XenForo/ControllerAdmin/AddOn.php at line 116
  11. XenForo_ControllerAdmin_AddOn->actionDelete() in XenForo/FrontController.php at line 310
  12. XenForo_FrontController->dispatch() in XenForo/FrontController.php at line 132
  13. XenForo_FrontController->run() in /home/mcwh/public_html/community/admin.php at line 13
 
Is there a way to include the thread prefix in the news title on the news block?
Search in block EWRblock_RecentNews template by
PHP:
                            <a href="{xen:link threads, $news}" class="newsTitle">{$news.title}</a>
and change it by
PHP:
                            <xen:if is="{$news.prefix_id}">
                                <xen:if is="{$linkPrefix}">
                                    <a href="{xen:link forums, $forum, 'prefix_id={$news.prefix_id}'}" class="prefixLink">{xen:helper threadPrefix, $news, html, ''}</a>
                                <xen:else />
                                    {xen:helper threadPrefix, $news}
                                </xen:if>
                            </xen:if>
                            <a href="{xen:link threads, $news}" class="newsTitle">{$news.title}</a>
Anyone got any ideas on this?

Also I asked before but never found it - how do I stop it grabbing the first media from the post and placing it in the avatar block? Wish J would add it in.
Search in block EWRblock_RecentNews template by
PHP:
                                <xen:if is="{$news.attach}">
                                    <img src="{$news.attach.thumbnailUrl}" alt="{$news.attach.filename}" />
                                <xen:elseif is="{$news.medio}" />
                                    <div style="background: url('data/media/{$news.medio.media_id}.jpg') no-repeat;">
                                        <a href="{xen:link 'full:media/popout', $news.medio}" class="OverlayTrigger"><img src="js/8wayrun/EWRmedio_play.png" width="160" height="90" /></a>
                                    </div>
                                <xen:elseif is="{$news.image}" />
                                    <img src="{$news.image}" alt="{$news.image}" style="max-height: 150px; max-width: 150px;" />
                                <xen:else />
                                    <xen:avatar user="$news" size="m" itemprop="photo" />
                                </xen:if>
and change it by
PHP:
                                <xen:if is="{$news.attach}">
                                    <img src="{$news.attach.thumbnailUrl}" alt="{$news.attach.filename}" />
<xen:comment>                                <xen:elseif is="{$news.medio}" />
                                    <div style="background: url('data/media/{$news.medio.media_id}.jpg') no-repeat;">
                                        <a href="{xen:link 'full:media/popout', $news.medio}" class="OverlayTrigger"><img src="js/8wayrun/EWRmedio_play.png" width="160" height="90" /></a>
                                    </div></xen:comment>
                                <xen:elseif is="{$news.image}" />
                                    <img src="{$news.image}" alt="{$news.image}" style="max-height: 150px; max-width: 150px;" />
                                <xen:else />
                                    <xen:avatar user="$news" size="m" itemprop="photo" />
                                </xen:if>

Salud2
 
Search in block EWRblock_RecentNews template by
PHP:
                            <a href="{xen:link threads, $news}" class="newsTitle">{$news.title}</a>
and change it by
PHP:
                            <xen:if is="{$news.prefix_id}">
                                <xen:if is="{$linkPrefix}">
                                    <a href="{xen:link forums, $forum, 'prefix_id={$news.prefix_id}'}" class="prefixLink">{xen:helper threadPrefix, $news, html, ''}</a>
                                <xen:else />
                                    {xen:helper threadPrefix, $news}
                                </xen:if>
                            </xen:if>
                            <a href="{xen:link threads, $news}" class="newsTitle">{$news.title}</a>
Salud2

That worked excellent thank you.

Any idea on how to stop the news posts using the first media in place of the avatar?
 
Thank you wasn't in there before will test it out now and have bookmarked for future reference, would be a good idea if you go that info included in the faq/manual the guys are building.
 
Status
Not open for further replies.
Top Bottom