• 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.
So when I add a new article to the slider, how do I make the old ones go away without deleting the thread? I only want 4 stories at a time showing.

Also, how can I post news stories without putting them in a forum node?
 
Of course but there arent that many settings, my search is "gamingonlinux" so i dont see how football and windows tweets are showing up, has only been recently too and they stay at the top while recent tweets are pushed below making the twitter box unsablebfor me at the moment.
Disable "Show Top Tweets"
 
Hi,
Just a quick question im hoping someone may be able to help with! With the Recent News module, how would I go about removing the avatar block and placing the date there instead?

date.webp

Failing that, just removing the avatar block and placing the date as text in the top section?

Any help appreicated :)
 
Hi,
Just a quick question im hoping someone may be able to help with! With the Recent News module, how would I go about removing the avatar block and placing the date there instead?

View attachment 18082

Failing that, just removing the avatar block and placing the date as text in the top section?

Any help appreicated :)

Add to EXTRA.css
Code:
.recentNews .messageUserBlock { display: none; }
.recentNews .newsDate { float: right; margin-left: 10px; }
.recentNews .newsText { margin-left: 0px; }
People need to stop doing XFacil's edits. Most of what he edits can be done through CSS, without editing the core code.
 
Add to EXTRA.css
Code:
.recentNews .messageUserBlock { display: none; }
.recentNews .newsDate { float: right; margin-left: 10px; }
.recentNews .newsText { margin-left: 0px; }
People need to stop doing XFacil's edits. Most of what he edits can be done through CSS, without editing the core code.

Hi Jaxel,

Many thanks for that. The avatar block is now gone :)
How would I go about the second part in either moving the date block to where the avatar was, or removing the date image and just having it as text near the username.
 
Hi Jaxel, Earlier this evening i was unable to promote any threads to the portal. The last one that worked was at 10:30 GMT and now the time has move back an hour on the promote box for some resign (UTC). Even changing the time to match does not produce the thread in the portal. No addons or style changes have been made and the server time is correct. Any thoughts on how to get it working again. I'm stumped
help.gif


pro.webp

That's odd it's just arrived in the portal. I'll keep you posted. :D
 
Is there any way to make the RecentSlider grab from different forums than recent news??? This would be amazing as currently to get the content I want in the Recent Slider I have to pollute my RecentNews Block with stuff I don't want.
 
So i need your help Jaxel.

I want to remove your Addon's Nav Bar Tabs. The Events, Chat, and media. i still want the addons to work and everything, i just want to hide or disable the tabs for them.

How would i do this? is it possible?

Hope you can help
 
Anyone ever have your "Home" tab for the portal move to somewhere other than the left side?

Mine randomly did that today and i want it back to its left of forums location.

Can anyone help me find where i can rearrange the order of my Portal Home? is there some code that tells where to put the Portal Home tab?

when i inspect the element using Google Chrome, i can see that the order is jacked up, the HOME tab is at the end of the list. is this changeable?

ugh.

attached is am image of this bug
 

Attachments

  • homebug.webp
    homebug.webp
    86.3 KB · Views: 33
Add to EXTRA.css
Code:
.recentNews .messageUserBlock { display: none; }
.recentNews .newsDate { float: right; margin-left: 10px; }
.recentNews .newsText { margin-left: 0px; }
People need to stop doing XFacil's edits. Most of what he edits can be done through CSS, without editing the core code.

Further to this how do we stop it still grabbing the first available image? As that only hides it, but the portal grabs the first available image to use in the avatar block if there is one - so if you hide the avatar block this gets hidden - messing up formatting - please add it as an option to not grab any image!!
 
Further to this how do we stop it still grabbing the first available image? As that only hides it, but the portal grabs the first available image to use in the avatar block if there is one - so if you hide the avatar block this gets hidden - messing up formatting - please add it as an option to not grab any image!!
you will need to edit the recent news template.
open it and you will find conditionals related to the display that you can delete to remove that functionality.
i used to do this until recently. i will open the template tonight and look.
 
Anyone ever have your "Home" tab for the portal move to somewhere other than the left side?

Mine randomly did that today and i want it back to its left of forums location.

Can anyone help me find where i can rearrange the order of my Portal Home? is there some code that tells where to put the Portal Home tab?

when i inspect the element using Google Chrome, i can see that the order is jacked up, the HOME tab is at the end of the list. is this changeable?

ugh.

attached is am image of this bug

i managed to fix it with brogans help and debug mode.
 
The tabs problem is a "addon coder" problem
Most add-on coders don't change the event execution order, that's why most add-ons have execution order 10 (default value) .

After every Addon de/installation, the cache is being rebuild (even there are no navbar eventlisteners...) and the tabs with the same order will probably change..
(hope you know what i mean;) )
i managed to fix it with brogans help and debug mode.

Can you explain how you did it ?
So others can benefit ?
 
[ot]
Can you explain how you did it ?
So others can benefit ?
If it's not in 1.1, i'll release a add-on which will allow to see & change the event listener execution order (without being able to delete/deactivate it if not in debug mode)

It's really necessary to be able to manipulate this without activated debugmod(specially because of template hooks)

Sorry for offtopic again:/ ...
[/ot]
 
Can you explain how you did it ?
So others can benefit ?
basiclly, the portal home nav was set to a value of 1, as was the default nav bar, so the portal wasnt nessicarly ahead, and when i installed a new addon, since both were 1, it just flipped them.
basiclly i se the portal home nav to 1 and the default nav (forums, members, help) to 2. so the portal would always be first.

Its acctully quite neat and handy now that i know how to do it. I rearranged all my addons to better fit the sites needs.

Brogan and ragtek rock.
 
basiclly, the portal home nav was set to a value of 1, as was the default nav bar, so the portal wasnt nessicarly ahead, and when i installed a new addon, since both were 1, it just flipped them.
Thanks for the explanation.:)
I'd add this to a XenPorta FAQ, if there was the infrastructure available to do so.
Instead, I look forward to someone asking this same question, probably within 2-5 pages from now.:sick:
 
Thanks for the explanation.:)
I'd add this to a XenPorta FAQ, if there was the infrastructure available to do so.
Instead, I look forward to someone asking this same question, probably within 2-5 pages from now.:sick:

well i mean once i went into the debug developement tab, and saw how it worked, it was remarkably simple to change the order. they just have weights assigned and such. So you can rearrange everything pretty simply. Just you have to be careful not to touch anything else becauseit is sensitive stuff that controls the site. make sure you only change the weight. =P
 
Thanks for the explanation.:)
I'd add this to a XenPorta FAQ, if there was the infrastructure available to do so.
Instead, I look forward to someone asking this same question, probably within 2-5 pages from now.:sick:
As it obviously bothers you that much, why don't you do something about it?

See here for an example of a member of actually doing something to help the community: http://xenforo.com/community/threads/xenatendo-users-guide-faq.16006/

Instead of just constantly whining about the same things over and over and not doing anything about it.
 
Status
Not open for further replies.
Top Bottom