Search found 48 matches

by mrenigma
Fri Feb 22, 2013 9:22 pm
Forum: CMSMS Core
Topic: news module - other modules as content
Replies: 3
Views: 1568

Re: news module - other modules as content

Have you tried using the eval parameter?

{eval var=$entry->summary}
by mrenigma
Thu Feb 21, 2013 1:45 pm
Forum: Modules/Add-Ons
Topic: FEU SSL login?
Replies: 1
Views: 842

Re: FEU SSL login?

You can enable HTTPS on certain pages by going into the "Options" tab on a specific page and ticking the "Use HTTPS for this page" option.

I believe you can also enable this as a global option for all pages but you'd have to check that.
by mrenigma
Wed Jan 30, 2013 8:40 am
Forum: CMSMS Core
Topic: Footer Link
Replies: 4
Views: 1579

Re: Footer Link

Lol no worries, don't forget to add [Solved] to the thread title :)
by mrenigma
Tue Jan 29, 2013 4:22 pm
Forum: CMSMS Core
Topic: Footer Link
Replies: 4
Views: 1579

Re: Footer Link

You can wrap it in an if statement, so if for instance your homepage is called "home" you could do:

{if $page_alias == "home"}
// YOUR CODE
{/if}

Alternatively just create an alternative GCB/template for the homepage.
by mrenigma
Tue Jan 29, 2013 4:17 pm
Forum: Modules/Add-Ons
Topic: TinyMCE Not working, have tried all other found options
Replies: 4
Views: 1470

Re: TinyMCE Not working, have tried all other found options

Try turning on the TinyMCE setting "Save to Static Config" in the second to last tab of the TinyMCE Options.

Also try a different browser, I recently had a client whom couldn't use TinyMCE using IE8 but was fine with MicroTiny.
by mrenigma
Thu Nov 08, 2012 11:59 am
Forum: The Lounge
Topic: output a random GCB
Replies: 5
Views: 2005

Re: output a random GCB

Try replacing:

Code: Select all

$blobs = HtmlBlobOperations::LoadHtmlBlobs();
With:

Code: Select all

$blobs =& cmsms()->GetGlobalContentOperations()->LoadHtmlBlobs(); 
The rest looks up-to-date...

Cheers
MrEnigma
by mrenigma
Thu Nov 08, 2012 11:29 am
Forum: The Lounge
Topic: output a random GCB
Replies: 5
Views: 2005

Re: output a random GCB

Did you check the forge? http://dev.cmsmadesimple.org/projects/randomblob Although this is marked as stale, it is probably because there is no need for additions. I had a look at the code and it looks like exactly what you need. You might need to update the tag slightly to work with the latest CMSMS...
by mrenigma
Sun Nov 04, 2012 9:32 am
Forum: Modules/Add-Ons
Topic: Search Module question..
Replies: 6
Views: 2225

Re: Search Module question..

Have you tried going to the Search module under "Extensions" and clicking the "reindex" button?
by mrenigma
Sat Nov 03, 2012 10:31 pm
Forum: Modules/Add-Ons
Topic: Search Module question..
Replies: 6
Views: 2225

Re: Search Module question..

Hi Minefox, The easiest way would be to have your header stored in a Global Content Block and then on your template write something similar to this: {content block="metaKeywords" label="Meta Keywords" oneline=true assign="keywords"} {global_content name="header&quo...
by mrenigma
Fri Nov 02, 2012 11:18 pm
Forum: Modules/Add-Ons
Topic: Problem With Embedding You Tube
Replies: 2
Views: 1470

Re: Problem With Embedding You Tube

If you are using TinyMCE as your WYSIWYG editor you can go to the TinyMCE settings under "Extensions" and add the following line of code into the "Extra Configuration" under the "Advanced" tab: extended_valid_elements : "iframe[marginheight|id|frameborder|scrolling...
by mrenigma
Fri Nov 02, 2012 11:12 pm
Forum: Modules/Add-Ons
Topic: Search Module question..
Replies: 6
Views: 2225

Re: Search Module question..

The only way I think this might work is to create a "keywords" content block with all your keywords used within your meta.

Then that would be applied to the "keywords" meta tag in your template and the search function could pick it up.
by mrenigma
Sat Oct 13, 2012 12:44 am
Forum: CMSMS Core
Topic: Child Page last modified date
Replies: 3
Views: 1966

Re: Child Page last modified date

Hi Fowlerat, I'd say you're probably going to need to add a UDT, something similar to this possibly?: $alias = (!empty($params['alias']) ? $params['alias'] : false); $assign = (!empty($params['assign']) ? $params['assign'] : false); // If alias is set if (!empty($alias)) { // Load defaults global $g...
by mrenigma
Mon Sep 24, 2012 7:41 pm
Forum: [locked] Accessability and Usability
Topic: Larger image on mouseover.
Replies: 4
Views: 5972

Re: Larger image on mouseover.

There isn't a tag really in CMSMS to handle that sort of thing.

You are really looking for a JavaScript solution, for instance this jQuery solution using the magnifier concept:

http://jdbartlett.com/loupe/
by mrenigma
Sun Sep 16, 2012 9:07 am
Forum: Modules/Add-Ons
Topic: [SOLVED] Define the value of a field automatically in CGBlog
Replies: 4
Views: 1535

Re: Define the value of a field automatically in CGBlog ?

Hmm so its missing the other quotation mark? I've noticed smarty can be a bit picky when using certain modifiers with cat so did you try putting the value in a variable and then applying that to the regex replace? {assign var='fieldVal' value='value="'|cat:$smarty.get.event_id|cat:'"'} {$c...
by mrenigma
Wed Sep 12, 2012 8:02 pm
Forum: CMS Show Off
Topic: Forces Recruitment - Recruitment Agency for Ex Forces People
Replies: 4
Views: 3695

Re: Forces Recruitment - Recruitment Agency for Ex Forces Pe

Looks really cool! I would say there are a few small things that might improve the site: Fix the 404 error on the clientBlockQuoute.png When on an offices page maybe having the office locator already selected with the office you're currently on would be cool Minify/combine CSS and JavaScript, also I...

Go to advanced search