Jump to content

New Client Area Top Nav Item Page not Styled


lcorbett

Recommended Posts

I installed a third party module (who's installation instructions were woefully inadequate), and of course I went there first to ask this question...twice...with no response. So I'll try to make this as general as possible. I think I know what I need to do, just don't know how to do it.

 

For the record, the 3rd party module is Gold Coupon. Maybe if somebody who has installed this module is reading this, they can help me out, here.

 

I looked at the source code of the menu item whose page is NOT styled and compared it to a navigation item whose page IS styled, (Affiliates, for instance), and noticed this difference first off:

STYLED page:

<base href="https://www.ravensheart.biz/orders/" />

 

UNSTYLED page:

<base href="https://www.ravensheart.biz/orders/clientarea.php/" />

 

So my question is...how/where do I access the file to change the URL in the

<base>

tag?

 

Thanks in advance,

Lori

Link to comment
Share on other sites

The base tag is in your header.tpl file. If you are using a custom page then the base href can be customised as below if you want to use SSL for your page.

This is from one of my mods

STEP 3) Edit your header.tpl

Replace

 

{if $systemurl}<base href="{$systemurl}" />{/if}

 

With

 

{php}global $CONFIG;$this->assign('url', (($_SERVER['HTTPS'] == 'on') ? $CONFIG['SystemSSLURL'] : $CONFIG['SystemURL']));{/php}

<base href="{$url}/" />

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated