Skip to main content
Recent Posts
51
Announcements / Re: ElkArte 2.0 Beta 1
Last post by Spuds -
At the end of the JS function elkSelectText in script.js ... add return false;

While fixing that, is select even a useful thing now, how about just copy to clipboard instead?
55
Addons / Re: [ADDON] SimplePortal
Last post by ScottJB -
That seems to have done it, my friend.

Still have the issue of not being able to select a board for Board News blocks.

@Spuds

EDIT:

I think I solved that one.
It happened to be that all boards were showing everywhere, due to not keeping my set boards for them.
Switched all board news blocks to correct visibility profiles, and it cleared up.
56
Addons / Re: [ADDON] SimplePortal
Last post by Spuds -
For the blocks not showing other than the main page.

in Portal.subs.php find (should be line 211)

Code: [Copy]
	// Add the portal template
theme()->getTemplates()->load('Portal');
and update as follows
Code: [Copy]
	// Add the portal template
theme()->getTemplates()->load('Portal');
theme()->getLayers()->add('portal');
59
Addons / Re: [ADDON] SimplePortal
Last post by ScottJB -
Quote from: Spuds – Looks like you are trying to use a custom block from 1.x, those will not work with this new version of SimplePortal.

I did a 2.0 version for RecentEx that you can try, its attached.  Overwrite the one you added to Addons/SimplePortal/subs/spblocks, and if you added any others there they need to be removed so they can be updated.

Funny thing was, I'd removed the block, and it was not in the new site.
Must have still been something in the database about it, maybe?
Anyway, seems to have done the trick with the abstract issue. :)