News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

SimplePortal

Started by SimplePortal Team, March 10, 2008, 11:16:07 PM

Previous topic - Next topic

shahnewaz

hello...

i have a problem with my simple portal...
I want to show my board news centered

i mean the images text everything should be centered even if the post is left alaigned..
have a look...

totalpaglamy.com
Payday Loans Online Hub

flybox

Hi!

I am having some troubles with my Simple Portal Installed on latest version SMF 2.0 the blue color just won't fill whole line on top of the block take a look at here:



HOW TO FIX THIS?

and how do i make that when a user logins they get redirected to portal, not on the forum??

telles0808

Hello folks.

I did a Google+1 button for who wanna share the News on the first page of your Site (Portal).

You'll need to modify the "PortalBlocks.php" inside the ".../forum/Sources/"  folder


I wanna take the opportunity to ask if what I did is correct or can be better.

Thanks.

TheListener

Quote from: flybox on June 30, 2011, 10:40:09 AM
Hi!

I am having some troubles with my Simple Portal Installed on latest version SMF 2.0 the blue color just won't fill whole line on top of the block take a look at here:



HOW TO FIX THIS?

and how do i make that when a user logins they get redirected to portal, not on the forum??

If you had bothered to read the topic before posting you would know the default themes portal.css file has to be placed into your theme folder.

::)

MrGrumpy

And if SimplePortal bothered to fix it in the 6 months or so since the last update then no1 would need to ask the question and get rude answers - flybox only signed up today so cut them some slack
the possession of knowledge is worthless unless imparted upon others
My Custom Themes
2.0 themes only - I don't do 1.1.x

AZMazda3

Quote from: jestism on June 27, 2011, 10:43:19 PM
PROBLEM SOLVED......

The problem is that I had a "/" at the end of the SMF forum path....

Removed it and everything installed properly.

Where was this "/" on the Server Settings page?

c23_Mike

Hi there!

QuoteAnd if SimplePortal bothered to fix it in the 6 months or so since the last update ...

Yes, i also think an update, which also adresses this well known issue, should be done quickly. It has been time enough for it.

But should not excuse that if someone needs help, this person should first read bevor post. But it should also not excuse that politeness should be first in web.
So long, Mike

http://www.c23.at
c23 - DER Computer Club
~ never play alone ~

nob4uask

Morn All,

I have posted this on the SP website and thought I would give it a try here to.

I am trying to add a panels tab to a custome HTML/PHP block.  I created a spry pannels tab using dreamweaver cs3 and figured I would upload the files and copy the code to the block.  Didn't exactly work..lol

I have searched for assistance and thought I read somewhere that you can only have body info in the custom block, just don't remember.  If anyone can point me in the right direction it would be appreciated.

The code I am trying to enter is below.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
<link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
</head>

<body>
<div id="TabbedPanels1" class="TabbedPanels">
  <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab" tabindex="0">NFL News</li>
    <li class="TabbedPanelsTab" tabindex="0">Yahoo Sports</li>
  </ul>
  <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent">Content 1</div>
    <div class="TabbedPanelsContent">Content 2</div>
  </div>
</div>
<script type="text/javascript">
<!--
var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
//-->
</script>
</body>
</html>

I am using the default smf theme so I uploaded the js & css files to that folder.

Thank you for your time.

nob4uask

Quote from: nob4uask on June 30, 2011, 07:39:07 PM
Morn All,

I have posted this on the SP website and thought I would give it a try here to.

I am trying to add a panels tab to a custome HTML/PHP block.  I created a spry pannels tab using dreamweaver cs3 and figured I would upload the files and copy the code to the block.  Didn't exactly work..lol

I have searched for assistance and thought I read somewhere that you can only have body info in the custom block, just don't remember.  If anyone can point me in the right direction it would be appreciated.

The code I am trying to enter is below.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
<link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
</head>

<body>
<div id="TabbedPanels1" class="TabbedPanels">
  <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab" tabindex="0">NFL News</li>
    <li class="TabbedPanelsTab" tabindex="0">Yahoo Sports</li>
  </ul>
  <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent">Content 1</div>
    <div class="TabbedPanelsContent">Content 2</div>
  </div>
</div>
<script type="text/javascript">
<!--
var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
//-->
</script>
</body>
</html>

I am using the default smf theme so I uploaded the js & css files to that folder.

Thank you for your time.

Morn All,

I think I have it figured out but still need some help if anyone knows what is going on.

I played around with the code in DW cs3 and was able to duplicate what I am getting when previewing it in SP custom html block.  This is what I have so far.

I am using the SMF default theme ao I uploaded a folder called SpryAssets to that directory.  The folder has the js & css files in it.

I inserted the following code into the custom html block.

<script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
<link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />

<div id="TabbedPanels1" class="TabbedPanels">
  <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab" tabindex="0">NFL News</li>
    <li class="TabbedPanelsTab" tabindex="0">Yahoo Sports</li>
  </ul>
  <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent">Content 1</div>
    <div class="TabbedPanelsContent">Content 2</div>
  </div>
</div>
<script type="text/javascript">
<!--
var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
//-->
</script>

When I preview it, instead of getting a tab panel I get the following.

        NFL
        Yahoo Sports

Content 1
Content 2

In order to duplicate the above in dreamweaver I put the above code in the body and removed the rest which worked fine.  I then removed the SpryAssets folder and I get the exact same thing as above instead of tabs.

With all that said, I think that I have the js & css files in the wrong place, does anyone know where I should put them ?

Thank you for your time.


erickma

Socio me pudieras facilitar una URL o un Link para descargar las plantillas o el tema que esta aplicado en la imagenes de la respuesta #5 del foro Modifications and Packpages.

Partner could provide me a URL or a link to download the template or theme that is applied to the images of the response # 5 Modifications and Packpages forum.

jestism

#3990
Quote from: flybox on June 30, 2011, 10:40:09 AM
Hi!
I am having some troubles with my Simple Portal Installed on latest version SMF 2.0 the blue color just won't fill whole line on top of the block take a look at here:

HOW TO FIX THIS?

Was the following reply for "Fixing" the above color in the bar issue? (I have not attempted to replace or edit my PortalBlocks.php file as I know just enough to screw it up...... However if this file is just a "Replacement" for the existing file to solve the problem, I can do that easy enough. Just don't want to do anything without someone smarter than me telling me that is what the file is for, fixing this problem.

Quote from: telles0808 on June 30, 2011, 02:15:50 PM
Hello folks.
I did a Google+1 button for who wanna share the News on the first page of your Site (Portal).
You'll need to modify the "PortalBlocks.php" inside the ".../forum/Sources/"  folder
........Thanks.

Or is the fix for the bar not being the same color all the way across from this post?

Quote from: Brack1 on June 30, 2011, 02:29:12 PM
............ the default themes portal.css file has to be placed into your theme folder.
::)

I ask because I have done the "last one, copying the portal.css into my theme folder. (both the main theme directory and the css directory of the theme I am using) and I still have a "Blue" section in my bar.



Thank-you in advance for any help or helpful direction / insight in how to make that blue blob in my headings bar go away.

aarbee

I had a forum on version 1.13 and had upgraded it to version 2.0 last night.
All worked pretty good.

After that I missed the portal. So I looked in to the backend of the forum and found a package called simple portal 2.3.3.
I tried to install that, but it had issues with write rights. Thought the folder was at chmod 777.
I read somewhere to add the temp folder, which I did.
Installed in charm.

But then I lost all of the forum and got this error.
Fatal error: Call to undefined function db_query() in C:\inetpub\vhosts\domainname\dir\forum\Sources\Subs-Portal.php on line 318

How can I resolve the issue? Or eventually rollback?

Robb

aarbee

Fixed it.
Deleted all files on the server, and uploaded the newest complete version.
Edited the settings.php.

treehugger

#3993
Having read that SP could be installed on SMF 2.0 by emulating to RC4, I upgraded from RC5.

I uploaded 2.3.3 and when I'm still 'in' 2.0 it shows  [ Uninstall ] [ List Files ] [ Delete ] - when I emulate to RC4 to try and install it all I see is [ List Files ] [ Delete ]

Any ideas please?

Modified to say that curiosity eventually got the better of me and I clicked Uninstall - Test Failed on more than half of the files. The system obviously thinks that SP is installed, but why should it think that after the upgrade?

Modified to say the problem has been sorted - can't say how because a friend did it for me.


hamsterdaddy

How do you move a block from Top to Bottom?

In boards you can move something anywhere. In the block section of Admin I only see options to move the HTML block to the bottom of the top blocks, not into the bottom ones.

I need to move a block out of the top blocks and to the bottom of the bottom blocks.

Using the latest 1.1.14 software with Simple Portal 2.3.2. Thanks in advance.   ;D

treehugger

When your chosen block is at the bottom of the top blocks just click the arrowhead pointing right and it will move to the bottom block section. I think it goes at the end automatically but if not, just click the down arrow. :)

hamsterdaddy

Thanks treehugger, I forgot about the side arrows doing that. That should do it for my problem.

More-to-life

Hi Guys

Are there any updates due for SMF 2.0 Gold

Thanks in advance
UK Bike Forum - The biggest motorcycle forum magazine in Wales UK.
Gear Up Magazine - Gear Up Motorcycle Magazine.
United Bikers UK Motorcycle Forum - A Brand New UK Bike Forum.
Used Cars South Wales - Search For Your Next Used Car In Laleston, Bridgend, South Wales.
Bikers Of Wales Motorcycle Website - Motorbike Info
Honda - Honda UK

TheListener

Quote from: More-to-life on July 16, 2011, 12:31:10 PM
Hi Guys

Are there any updates due for SMF 2.0 Gold

Thanks in advance

The portal works with 2.0

The only error so far is the location of the copyright and who is gonna worry about that?

More-to-life

erm...not me  ;D

Thanks for the quick reply
UK Bike Forum - The biggest motorcycle forum magazine in Wales UK.
Gear Up Magazine - Gear Up Motorcycle Magazine.
United Bikers UK Motorcycle Forum - A Brand New UK Bike Forum.
Used Cars South Wales - Search For Your Next Used Car In Laleston, Bridgend, South Wales.
Bikers Of Wales Motorcycle Website - Motorbike Info
Honda - Honda UK

Advertisement: