Welcome, Guest. Please login or register.
Did you miss your activation email?
17 Mar 2010, 21:16

Login with username, password and session length
Home Chat Help Search Calendar Login Register
Pages: [1] 2 3 4
Print
Author Topic: News title on the title of the page for cmsms 1.5.2+  (Read 13375 times)
0 Members and 1 Guest are viewing this topic.
viebig
Power Poster
***

Karma: 20
Offline Offline

Posts: 633

Location: So Paulo, Brazil

Gravatar

Trying to improve, always.


WWW
« on: 31 Jan 2009, 22:57 »

Hello All,

This is a common request, that causes a lot of confusion since cmsms changed the way the templates are processed.

This recipe apply to just for the News Module, but any other modules that are template driven.

1. process_whole_template must be disabled in config.php

open your config.php, and look for this line:

Code:
$config['process_whole_template'] = true;

change to:

Code:
$config['process_whole_template'] = false;

done on 1st step

2. Assign the news title to a smarty variable

Go to Content -> News

click on "Detail Template" tab

edit your template (in most cases the default is named 'Sample', do it for every news detail template you have)

in the top of your template put this code

Code:
{assign var='pagetitle'  value=$entry->title}

3. Modify your templates to handle the new variable

Im talking about the templates on Layout -> Templates

first get rid of the useless {process_pagedata} if it exists on your first line

Let's capture the content... put this in templates first line:

Code:
{content assign="capturedcontent"}

then replace {content} for:

Code:
{$capturedcontent}

look into the head section where the title tag resides, something like:

Code:
<title>{sitename} - {title}</title>

replace this piece of code for:

Code:
<title>{if isset($pagetitle)}{sitename} - {$pagetitle}{else}{sitename} - {title}{/if}</title>

4. Done, but understand whats happening

On 1st step we disabled the process_whole_template directive, that,in a few words, make the the head section be processed before everything else, so when you call the news module on body, the head section is already done, so theres no way to change the title.

By disabling this directive, we can set a variable inside any other place(modules, tags, content blocks, etc...), and it will be accessible in the head section by typing {$pagetitle}.

We can do a lot of cool things that way.

5. The best way available to display the news detail page

Create a News page and use the detailpage parameter, for example

You can put anything on the content(since the {content} will be replace for the news details). If you want this page to be visible on menu I reccomend that you add some content, like {news} so when the visitor gets there hell see some content, or you can just go to the Option Tab and unmark the show on menu option.

Code:
{news category="General" detailpage="news"}

Note that the "news" value on the detailpge parameter have to be the alias of the page youve created. (you can find the alias of the page on the Options tab when editing a page, or set it manually when creating a page(because it wont show the alias if the page is not saved yet, but you can save an go back and an automatic alias will be generated. The page alias is an important variable that is used in the URL of the page and in some modules calls)

6. A little bit more

I generally let the <h1>/<h2> title tag inside my cmsms template, something like:

Code:
<body>
{breadcrumbs}
<h1>{title}</h1>
<div>{content}</div>
</body

In the case of news page the title on <h1> will be just "News"(title I defined in when editing the page), dont matter what news detail the visitor is on. We can change that.

so lets use that {$pagetitle} again:

Code:
<body>
{breadcrumbs}
<h1>{$pagetitle}</h1>
<div>{content}</div>
</body

Ok.. but, think with me, this will only work if the visitor is seeing a news detail page, else it will be blank and will trigger a php notice since we did not populate the {$pagetitle} var anywhere... so lets fix that:

Code:
<body>
{breadcrumbs}
<h1>
{if isset($pagetitle)}
   {$pagetitle}
{else}
   {title}
{/if}
</h1>
<div>{content}</div>
</body

7. Oops! The breadcrumbs...

I just remembered another thing, the breadcrumbs.... this is bad because, dont matter the news detail Im reding and the breadcrumb will always show something like:

Code:
Home -> News

But I want something like:

Code:
Home -> News -> The title of the news

So, look what Ive done

Code:
<body>
if{isset($pagetitle)}
   {breadcrumbs} -> {$pagetitle}
{else}
   {breadcrumbs}
{/if}
<h1>
if{isset($pagetitle)}
   {$pagetitle}
{else}
   {title}
{/if}
</h1>
<div>{content}</div>
</body>

Of course, its not perfect because the last link of breadcrumbs, is not a link, its just text! Is it possible to change? Yes, but this will require editing the breadcrumbs tag, and im not on the mood to do it :>

Lets hope that in a near future this things can be achivied in a easier way.

Please, comment it, feedback is always appreciated.

And a special cheer to people that read this whole post! (write cheers on the end of your reply so I know that youre read all that crap)

Regards

Viebig
« Last Edit: 07 Feb 2009, 18:33 by viebig » Logged

PSD/PNG Images to Valid XHTML/CSS respecting WAI standards and CMSMS integration templates/modules at low rates. PM me.

The Object Tag - XHTML Compliant Flash, Windows Media and Quicktime!

Download the Object Tag
Object Tag 0.2 Howto

SEO - News title on the title of the page

Portuguese Forum Moderator
CMSMS Enthusiast

Latest CMSMS Experiments
Photo Studio WZ
Vento Haragano Steakhouse
Heineken Website
Kinoshita Website
Trenia
Forum Members
**

Karma: 0
Offline Offline

Posts: 19

Location: Norway



« Reply #1 on: 01 Feb 2009, 07:58 »

Code:
<title>{if isset($pagetitle}}{sitename} - {$pagetitle}{else}{sitename} - {title}{/if}</title>

This code creates a string smarty error....!

I believe the correct code should be:

Code:
<title>{if isset($pagetitle)}{sitename} - {$pagetitle}{else}{sitename} - {title}{/if}</title>

and here`s another spelling mistake:

Code:
{news category="General' detailpage="news"}

correct one is:

Code:
{news category="General" detailpage="news"}
« Last Edit: 01 Feb 2009, 08:00 by Trenia » Logged
viebig
Power Poster
***

Karma: 20
Offline Offline

Posts: 633

Location: So Paulo, Brazil

Gravatar

Trying to improve, always.


WWW
« Reply #2 on: 01 Feb 2009, 11:08 »

Thank you Trenia.. I wrote that on the fly without testing.

I corrected everything in the original post. Hope that helps!
Logged

PSD/PNG Images to Valid XHTML/CSS respecting WAI standards and CMSMS integration templates/modules at low rates. PM me.

The Object Tag - XHTML Compliant Flash, Windows Media and Quicktime!

Download the Object Tag
Object Tag 0.2 Howto

SEO - News title on the title of the page

Portuguese Forum Moderator
CMSMS Enthusiast

Latest CMSMS Experiments
Photo Studio WZ
Vento Haragano Steakhouse
Heineken Website
Kinoshita Website
Jean le Chauve
Forum Members
**

Karma: 2
Offline Offline

Posts: 134

Location: Belgique


WWW
« Reply #3 on: 01 Feb 2009, 15:44 »

Hi,
This code creates a string smarty error....!
Code:
<body>
if{isset($pagetitle)}
   {breadcrumbs} -> {$pagetitle}
{else}
   {breadcrumbs}
{/if}
<h1>
if{isset($pagetitle)}
   {$pagetitle}
{else}
   {title}
{/if}
</h1>
<div>{content}</div>
</body>
I believe the correct code should be:
Code:
<body>
{if isset($pagetitle)}
   {breadcrumbs} -> {$pagetitle}
{else}
   {breadcrumbs}
{/if}
<h1>
{if isset($pagetitle)}
   {$pagetitle}
{else}
   {title}
{/if}
</h1>
<div>{content}</div>
</body>
Your code work nice for the title of the page but don't work into the body.
If i use {$pagetitle} without "if isset", i receive this notice : Notice: Undefined index: pagetitle in /xxx/xxx/www/cms1.5.2/tmp/templates_c/%%EF^EF3^EF386C0A%%tpl_body%3A21.php on line 22 (where i put {$pagetitle}

Logged
viebig
Power Poster
***

Karma: 20
Offline Offline

Posts: 633

Location: So Paulo, Brazil

Gravatar

Trying to improve, always.


WWW
« Reply #4 on: 02 Feb 2009, 09:04 »

Hi Jean,

I just fixed the original post, thank you.

Try to disable error notices on PHP and tell me is the {$pagetitle} show something, if not let me know.

Also, if possible paste your template relevant code here so I can reproduce the error. I experienced something like that before, I know a solution.

Regards
« Last Edit: 02 Feb 2009, 09:06 by viebig » Logged

PSD/PNG Images to Valid XHTML/CSS respecting WAI standards and CMSMS integration templates/modules at low rates. PM me.

The Object Tag - XHTML Compliant Flash, Windows Media and Quicktime!

Download the Object Tag
Object Tag 0.2 Howto

SEO - News title on the title of the page

Portuguese Forum Moderator
CMSMS Enthusiast

Latest CMSMS Experiments
Photo Studio WZ
Vento Haragano Steakhouse
Heineken Website
Kinoshita Website
viebig
Power Poster
***

Karma: 20
Offline Offline

Posts: 633

Location: So Paulo, Brazil

Gravatar

Trying to improve, always.


WWW
« Reply #5 on: 02 Feb 2009, 13:23 »

Forget it.

Of course that this notice will appear if $pagetitle is not set at all, and php notices are enabled.

lets correct this by always using isset() function
Code:
<h1>{if isset($pagetitle)}{$pagetitle}{else}{title}{/if}</h1>

« Last Edit: 02 Feb 2009, 13:27 by viebig » Logged

PSD/PNG Images to Valid XHTML/CSS respecting WAI standards and CMSMS integration templates/modules at low rates. PM me.

The Object Tag - XHTML Compliant Flash, Windows Media and Quicktime!

Download the Object Tag
Object Tag 0.2 Howto

SEO - News title on the title of the page

Portuguese Forum Moderator
CMSMS Enthusiast

Latest CMSMS Experiments
Photo Studio WZ
Vento Haragano Steakhouse
Heineken Website
Kinoshita Website
Jean le Chauve
Forum Members
**

Karma: 2
Offline Offline

Posts: 134

Location: Belgique


WWW
« Reply #6 on: 02 Feb 2009, 15:21 »

Hi Viebig, thanks for your response.
 
layout template :
Code:
<!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" xml:lang="fr" lang="fr_FR">
<head>
<title>{if isset($pagetitle)}{sitename} - {$pagetitle}{else}{sitename} - {title}{/if}{$pagetitle}</title>

{metadata}
{stylesheet}
{cms_selflink dir="start" rellink=1}
{cms_selflink dir="prev" rellink=1}
{cms_selflink dir="next" rellink=1}
{literal}
<script type="text/JavaScript">
<!--
//pass min and max -measured against window width
function P7_MinMaxW(a,b){
var nw="auto",w=document.documentElement.clientWidth;
if(w>=b){nw=b+"px";}if(w<=a){nw=a+"px";}return nw;
}
//-->
</script>
<!--[if lte IE 6]>
<style type="text/css">
{* The min and max page width for Internet Explorer is set here. For other browsers it's in the stylesheet "Layout: Top menu + 2 columns" *}
#pagewrapper {width:expression(P7_MinMaxW(720,1900));}
#container {height: 1%;}
</style>
<![endif]-->
<!--[if lte IE 6]>
<link rel="stylesheet" media="all" type="text/css" href="uploads/files/menus/pro_dropline_2/pro_left_right_ie6.css" />
<![endif]-->
{/literal}
</head>
<body>
<div id="pagewrapper">
{* start accessibility skip links *}
<ul class="accessibility">
<li>{anchor anchor='menu_vert' title='Skip to navigation' accesskey='n' text='Skip to navigation'}</li>
<li>{anchor anchor='main' title='Skip to content' accesskey='s' text='Skip to content'}</li>
</ul>
{* end accessibility skip links *}
<hr class="accessibility" />
{* Horizontal ruler that is hidden for visual browsers by CSS *}
{* Start Header, with logo image that links to the default start page. Logo image is changed in the stylesheet  "For template: Left menu + 1 column" *}
<div id="header">
<h1>{cms_selflink dir="start" text="$sitename"}</h1>
<hr class="accessibility" />
</div>
{* End Header *}
{* Start Navigation *}
<div id="menu_vert">
<h2 class="accessibility">Navigation</h2>
{menu template='proline' start_level="1" number_of_levels='2'}
<hr class="accessibility" />
</div>
{* End Navigation *}
{* Start Content (Navigation and Content columns) *}
   <!--start content-->
<div id="content">
<!--start sub-content-->
           <div id="sub-content">
            <div id="main">
            {* Start Breadcrumbs *}
  {get_template_vars}             
<p id="breadcrumb">
{breadcrumbs starttext='Vous tes ici ' root='Home' delimiter='&raquo;'}{if isset($pagetitle)} -> {$pagetitle}{/if}{* End Breadcrumbs *}
   </p>
<div id="main-content">
<h1>
{if isset($pagetitle)}
   {$pagetitle}
{else}
   {title}
{/if}
</h1>
{content} </div><!--fin main-content--></div><!--finContent-->
<div id="sidebar">
{search lang="fr_FR" searchtext="Je cherche" }
<div id="nav-droite">{menu start_level='3' }</div>
{* To do *}
<form id="membres" method="post" action="">
</form>
{* End to do *}
<a id="inscription" href=""> Inscrivez-vous </a>
<h2><span>Les news</span></h2>
{news detailpage="news" summarytemplate="newsDesign" detailtemplate="Sample" lang="fr_FR"}
<h3>
Pivamus imperdiet -
<span>13Nov2008</span>
</h3>
<p> Orci eget eros. Praesent magna. Donec a quam. Donec ornare. Ut dolor justo, condimentum sit amet, rutrum id, consectetuer id, nisi. Fusce non augue. Donec non dolor. Donec sed odio. Suspendisse tincidunt lacus nec arcu. </p>
</div>
<div class="spacer"/>
</div>
</div>
<div id="spacer-footer"/>
</div>
<div id="footer">{global_content name='footer'}
</div>
</body>
</html>
content page news
Code:
{news category="General" detailpage="news"}
detail template
Code:
{assign var='pagetitle' value=$entry->title}
{if $entry->postdate}
<div id="NewsPostDetailDate">
{$entry->postdate|cms_date_format}
</div>
{/if}
<h3 id="NewsPostDetailTitle">{$entry->title}</h3>
<hr id="NewsPostDetailHorizRule" />
{if $entry->summary}
<div id="NewsPostDetailSummary">
<strong>
{eval var=$entry->summary}
</strong>
</div>
{/if}
{if $entry->category}
<div id="NewsPostDetailCategory">
{$category_label} {$entry->category}
</div>
{/if}
{if $entry->author}
<div id="NewsPostDetailAuthor">
{$author_label} {$entry->author}
</div>
{/if}
<div id="NewsPostDetailContent">
{eval var=$entry->content}
</div>
{if $entry->extra}
<div id="NewsPostDetailExtra">
{$extra_label} {$entry->extra}
</div>
{/if}
<div id="NewsPostDetailPrintLink">
{$entry->printlink}
</div>
{if $return_url != ""}
<div id="NewsPostDetailReturnLink">{$return_url}</div>
{/if}
{if isset($entry->fields)}
  {foreach from=$entry->fields item='field'}
     <div class="NewsDetailField">
        {if $field->type == 'file'}
  {* this template assumes that every file uploaded is an image of some sort, because News doesn't distinguish *}
          <img src="{$entry->file_location}/{$field->value}"/>
        {else}
          {$field->name}:&nbsp;{eval var=$field->value}
        {/if}
     </div>
  {/foreach}
{/if}
{get_template_vars}
I put {get_template_vars} into tthe layout template AND into the menu template.

The first <code>come from the result of the {get_template_vars} layout and the second come from the the menu template.
Into the first, $pagetitle is not populate but in the title yes (<title>{if isset($pagetitle)}{sitename} - {$pagetitle}{else}{sitename} - {title}{/if}{$pagetitle}</title>
Here is the link for my test, the news are into the right sidebar : http://www.promojeunes.be/cms1.5.2/

[edit]It's a multi domain OVH[edit]Iwww.promojeunes.be is a cmsms. I made an new installation into cms1.5.2. Perhaps this make conflict. I must test into a clean installation.
----------------------------------------------

Cms Version: 1.5.2

Installed Modules:

    * CMSMailer: 1.73.14
    * FileManager: 0.4.3
    * MenuManager: 1.5.3
    * ModuleManager: 1.2.1
    * News: 2.9.2
    * nuSOAP: 1.0.1
    * Printing: 0.2.6
    * Search: 1.5.2
    * ThemeManager: 1.0.8
    * TinyMCE: 2.4.11
    * CGExtensions: 1.15
    * Uploads: 1.4
    * Download: 0.2b
    * LightBox: 1.0.1
    * ConfigGUI: .2
    * CGFeedMaker: 1.0.4
    * bMenu: 0.4.6
    * Captcha: 0.3.2


Config Information:

    * php_memory_limit:
    * process_whole_template: false
    * max_upload_size: 16000000
    * default_upload_permission: 664
    * assume_mod_rewrite: false
    * page_extension:
    * internal_pretty_urls: false
    * use_hierarchy: false


Php Information:

    * phpversion: 5.2.6
    * md5_function: On (Vrai)
    * gd_version: 2
    * tempnam_function: On (Vrai)
    * magic_quotes_runtime: Off (Faux)
    * memory_limit: 32M
    * max_execution_time: 30
    * safe_mode: Off (Faux)
    * session_save_path: /tmp (1777)


Server Information:

    * Server Api: cgi
    * Server Db Type: MySQL (mysql)
    * Server Db Version: 5.0.68


----------------------------------------------

« Last Edit: 02 Feb 2009, 15:45 by Jean le Chauve » Logged
viebig
Power Poster
***

Karma: 20
Offline Offline

Posts: 633

Location: So Paulo, Brazil

Gravatar

Trying to improve, always.


WWW
« Reply #7 on: 02 Feb 2009, 16:38 »

are you sure process_whole_template is false in config.php
Logged

PSD/PNG Images to Valid XHTML/CSS respecting WAI standards and CMSMS integration templates/modules at low rates. PM me.

The Object Tag - XHTML Compliant Flash, Windows Media and Quicktime!

Download the Object Tag
Object Tag 0.2 Howto

SEO - News title on the title of the page

Portuguese Forum Moderator
CMSMS Enthusiast

Latest CMSMS Experiments
Photo Studio WZ
Vento Haragano Steakhouse
Heineken Website
Kinoshita Website
Jean le Chauve
Forum Members
**

Karma: 2
Offline Offline

Posts: 134

Location: Belgique


WWW
« Reply #8 on: 02 Feb 2009, 17:49 »

Yes, it is.
Quote
Config Information:

    * php_memory_limit:
    * process_whole_template: false

www.promojeunes.be is a cmsms. I made an new installation into cms1.5.2. Perhaps this make conflict. I must test into a clean installation.


« Last Edit: 02 Feb 2009, 17:53 by Jean le Chauve » Logged
viebig
Power Poster
***

Karma: 20
Offline Offline

Posts: 633

Location: So Paulo, Brazil

Gravatar

Trying to improve, always.


WWW
« Reply #9 on: 02 Feb 2009, 18:57 »

could be... try this:

capture the news call on the top of your template:

Code:
{capture assign="newscontent"}{news detailpage="news" summarytemplate="newsDesign" detailtemplate="Sample" lang="fr_FR"}{/capture}

and substitute your news module call by

Code:
{$newscontent}

let us know if it works!

Regards


Logged

PSD/PNG Images to Valid XHTML/CSS respecting WAI standards and CMSMS integration templates/modules at low rates. PM me.

The Object Tag - XHTML Compliant Flash, Windows Media and Quicktime!

Download the Object Tag
Object Tag 0.2 Howto

SEO - News title on the title of the page

Portuguese Forum Moderator
CMSMS Enthusiast

Latest CMSMS Experiments
Photo Studio WZ
Vento Haragano Steakhouse
Heineken Website
Kinoshita Website
Jean le Chauve
Forum Members
**

Karma: 2
Offline Offline

Posts: 134

Location: Belgique


WWW
« Reply #10 on: 05 Feb 2009, 18:45 »

I'm sorry, Viebig, but nothing work.
I made a new instalation on the server root, I have tested all your solutions, but it seems impossible to populate $pagetitle into the body.  Cry
Is there anybody who made a success ?
Logged
viebig
Power Poster
***

Karma: 20
Offline Offline

Posts: 633

Location: So Paulo, Brazil

Gravatar

Trying to improve, always.


WWW
« Reply #11 on: 05 Feb 2009, 20:24 »

Jean, I wont give up on you.

May I have access to that server as cmsms admin?

Anyway in a few days I will create a subdomain on my server, and let the admin passwd here, so you can review my solution online.

Regards
Logged

PSD/PNG Images to Valid XHTML/CSS respecting WAI standards and CMSMS integration templates/modules at low rates. PM me.

The Object Tag - XHTML Compliant Flash, Windows Media and Quicktime!

Download the Object Tag
Object Tag 0.2 Howto

SEO - News title on the title of the page

Portuguese Forum Moderator
CMSMS Enthusiast

Latest CMSMS Experiments
Photo Studio WZ
Vento Haragano Steakhouse
Heineken Website
Kinoshita Website
viebig
Power Poster
***

Karma: 20
Offline Offline

Posts: 633

Location: So Paulo, Brazil

Gravatar

Trying to improve, always.


WWW
« Reply #12 on: 05 Feb 2009, 20:32 »

try just one more thing.. use right below body

Code:
{content assign='mycontent'}

and  replace {content} by

Code:
{$mycontent}
Logged

PSD/PNG Images to Valid XHTML/CSS respecting WAI standards and CMSMS integration templates/modules at low rates. PM me.

The Object Tag - XHTML Compliant Flash, Windows Media and Quicktime!

Download the Object Tag
Object Tag 0.2 Howto

SEO - News title on the title of the page

Portuguese Forum Moderator
CMSMS Enthusiast

Latest CMSMS Experiments
Photo Studio WZ
Vento Haragano Steakhouse
Heineken Website
Kinoshita Website
JeremyBASS
Power Poster
***

Karma: 27
Offline Offline

Posts: 1705

Location: Lewiston-Idaho

Gravatar

the point of life is to try not if u pass or fail


WWW
« Reply #13 on: 05 Feb 2009, 22:20 »

just a thought but if you have pretty urls on why not replace the title with

<title>
{if $content_id eq '72'}{capture assign='URLSS'}{URLhere}{/capture}
{assign var=newstitle value=$URLSS|replace:'.html':''|regex_replace:'/(http.*?\/72\/)/':''|replace:'-':' '}
     {$newstitle|lower|capitalize:true}
{else}
 {title}
{/if} | {$ntmp}</title>

where 72 isthe content_id of the page your details are for news

and if you have / instead of .html

use

|replace:'/' instead

and a UDT called URLhere

Quote
$urlBASE = "http://".$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
if (!empty($_SERVER["QUERY_STRING"]))
   $urlBASE .= "?".$_SERVER['QUERY_STRING'];

$urls = str_replace("index.php?page=", "", $urlBASE);
echo $urls;

that would work... and not one bit of the files need to be changed.... Wink

cheers
jeremyBass

some proof...
http://www.corbensproducts.biz/news/10/72/Cuts-I-T-Overhead-for-Customers.html
« Last Edit: 05 Feb 2009, 22:37 by JeremyBASS » Logged

Story: I need the info!!!

      When mowing lawns for a living it's learned that people know playing toss in the lawn as it's mowed is not a good idea... If a pair from a sorority plays toss the Frisbee there  as you mow, feel good as that is not the norm for the vars.  I only realized that 6 years later cause I didnt have all the info..

The point of life is to try not if u pass or fail... so try... what have you got to lose
Please ask before Emailing me directly I will help but this privilege is reserved for paid clients.  Help me feed my family and Ill pay all the attention you want. If you need help with something or want me to elaborate on it, ask me to and I'll write on it in my cmsms topic blog

In short I'll help, just work with me...
Cheers
jeremyBass

Follow me on Twitter | Follow me on facebook
viebig
Power Poster
***

Karma: 20
Offline Offline

Posts: 633

Location: So Paulo, Brazil

Gravatar

Trying to improve, always.


WWW
« Reply #14 on: 05 Feb 2009, 22:51 »

Hi Jeremy!

Great solution, but has 2 problems:

1. The news pretty urls dont support accents and special chars, and any news title with accents would be generated wrong. ( I reported this to calguy)

2. And even id news module is patched, some chars are not URL standardized, so it not would fit another languages well.

My solution works, and its not mine, its a compilation.

Conclusions:

1. English is the web language
2. Youre really a crazy programmer(in the good sense) to think about that workaround. Really nice!  Smiley

Regards
Logged

PSD/PNG Images to Valid XHTML/CSS respecting WAI standards and CMSMS integration templates/modules at low rates. PM me.

The Object Tag - XHTML Compliant Flash, Windows Media and Quicktime!

Download the Object Tag
Object Tag 0.2 Howto

SEO - News title on the title of the page

Portuguese Forum Moderator
CMSMS Enthusiast

Latest CMSMS Experiments
Photo Studio WZ
Vento Haragano Steakhouse
Heineken Website
Kinoshita Website
Pages: [1] 2 3 4
Print
Jump to: