You can now enable editing of HTML code for your users, go to
Users > Permissions > User settings > Edit HTML code
251 17 Feb 2011 04:16:18
Re: allow certain users to edit code like the admin can (1 replies, posted in Support zone)
252 16 Feb 2011 05:52:41
Re: Image Editor (1 replies, posted in Support zone)
There's a reason we've done this - clients have a habit of distorting pages and we want yours to remain as nice-looking as when you design them.
You can't fix it ;)
253 16 Feb 2011 04:39:43
Re: Add / Duplicate / Remove zone (12 replies, posted in Feature requests)
This feature will be ready early March
254 12 Feb 2011 00:20:51
Re: cannot edit content (12 replies, posted in Support zone)
You should find this post helpful on adding class names into the code
http://smplc.ms/editcode
We're investigating why defining edit areas aren't working for your site.
255 11 Feb 2011 02:38:18
Re: missing editor icons (10 replies, posted in Support zone)
Hi Dave, what's the URL to the email template? Feel free to send it in a message to us to protect your site's privacy.
If you set class="edit" on a link then the editor will restrict the toolbar options because it thinks you want to edit the link text, for example if you have:
<a href="/my-page.php" class="edit">My page</a>
Then you'll see only a few generic toolbar options and you'll see "My page" as the text to edit. If you wish to edit the link and link text then you'd have to do something like this:
<p class="edit">
<a href="/my-page.php">My page</a>
</p>
OR
<span class="edit">
<a href="/my-page.php">My page</a>
</span>
Then you'd see your customised toolbar options.
256 09 Feb 2011 22:20:26
Topic: XML sitemap (3 replies, posted in Tutorials)
SimpleCMS allows you to add an XML sitemap to your account that will be used when you view the Sitemap, Add pages or Restrict pages for your users. This means you get complete control over which pages appear in the system.
By default the system will crawl your sites and generate a list of pages that are linked to, so adding an XML sitemap is not strictly necessary; but the XML sitemap can also be used to submit to Google and other search engines to inform them of pages existing within your site.
Visit the following Google tutorial to find out how to create your sitemap:
http://smplc.ms/googlesitemap
Just to reiterate, there is no need to create an XML sitemap file but it does help the system pick up your pages (as well as restricting pages the system picks up) in addition to aiding with SEO.
To add an XML sitemap please navigate to:
Sites > Update / remove > Site settings > XML sitemap
--
Short URL: http://smplc.ms/xmlsitemap
257 08 Feb 2011 22:01:10
Re: Defining Text Areas (4 replies, posted in Support zone)
You're using Flexcroll to add a custom scrollbar to the area. Flexcroll adds a temporary DIV into the page so when you save your defined areas it's not being saved because the DIV you have defined doesn't actually exist. If you define a larger area it will work because the defined area will be on the DIV with the Flexcroll class.
Alternatively you can define individual paragraphs inside the scroll box or you can edit the HTML and add the class name to the area you wish to make editable.
258 07 Feb 2011 22:23:25
Re: Restricting the pages your users can edit (2 replies, posted in Tutorials)
Are all of your pages linked to on the website? The sitemap will only find pages that are linked to. The restrict pages section uses the sitemap to display a list of pages on the site.
Can you provide us with some links to pages which aren't appearing on the page so we can investigate further.
259 07 Feb 2011 01:03:58
Re: jquery inline html popup (9 replies, posted in Support zone)
We're working on this. I'll post back once it's completed - should be within a day.
260 06 Feb 2011 22:49:52
Topic: Use jQuery to detect if your website is in SimpleCMS (4 replies, posted in Tutorials)
SimpleCMS adds a meta tag to your web pages while viewing them in the system. This makes it easy for you to use jQuery to detect if your website is being viewed through the system so you can apply any special CSS or JavaScript rules. You should use the following code in your page to take advantage of this:
<script type="text/javascript">
$(document).ready(function()
{
if ($('meta[name = "in-cms"]').size() > 0)
{
// your code here
}
});
</script>
--
Short URL http://smplc.ms/detectcms
261 06 Feb 2011 13:19:01
Re: Log in-logo not branded? (18 replies, posted in Support zone)
You needed to add the CNAME to your account under
Account > Brand > Advanced
I've just done this for you and you should now find your logo appearing correctly.
262 05 Feb 2011 04:48:13
Re: Colour options on branding...? (25 replies, posted in Feature requests)
Due to popular demand we have started developing the HEX colour option. We'll post back here once it's live, in about a week.
263 01 Feb 2011 08:27:40
Topic: Character encoding (2 replies, posted in Tutorials)
SimpleCMS outputs special characters, including non-western alphabets, in UTF-8.
Your web pages must include the following meta tag in the <head> section.
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
You can find out more about UTF-8 here:
http://smplc.ms/wikiutf8
Ensure you remove other character encodings such as ISO-8859-1 as they might override the UTF-8 encoding.
--
Short URL http://smplc.ms/charencoding
264 01 Feb 2011 08:01:45
Topic: PHP include files (SSI) (7 replies, posted in Tutorials)
SimpleCMS lets you edit PHP server side include files. You can use the following PHP functions to include files such as a global header/footer for a website.
require()
require_once()
include()
include_once()
The system is able to detect includes in the current folder, sub folders and parent folders. For example:
<?php
require('header.php');
require('../includes/header.php');
require('/includes/header.php');
?>
The code must be formated as in the examples above - including brackets, single or double quotes and ending with a semi-colon.
--
Short URL http://smplc.ms/ssi
265 01 Feb 2011 07:17:52
Re: id and <p> tags (2 replies, posted in Support zone)
1) The system requires an ID on editable areas so it can uniquely identify the area when updating the content on the page or when you define editable areas.
2) By default the WYSIWYG editor will add <p> tags. You can change the editor to use <br /> tags instead, go to
Sites > On-page settings and change the value for Carriage return creates...
266 31 Jan 2011 21:54:42
Re: Add / Duplicate / Remove zone (12 replies, posted in Feature requests)
At the moment you can only repeat areas via copy/paste as you suggest.
We will be launching this feature soon.
267 31 Jan 2011 07:44:09
Re: More ADMIN users? (7 replies, posted in Feature requests)
Good request Liam. We'll add this feature to the to-do list.
268 27 Jan 2011 21:53:45
Re: Maintaining Formating of Table (1 replies, posted in Support zone)
You can make each table cell editable instead of the entire table. Go to "Define edit areas" and de-select the table (so it's not defined anymore) and click within the table cells / text you wish to make editable.
Alternatively, you can enter the edit tags into your code manually:
http://smplc.ms/editcode
269 27 Jan 2011 03:57:07
Topic: Embed YouTube / Vimeo movies into a page (0 replies, posted in Tutorials)
You can embed YouTube / Vimeo movies into a page by enabling the "MediaEmbed" toolbar icon under
Users > Permissions > Rich text
Once you have enabled this feature, the MediaEmbed icon will appear on the Toolbar when editing content.
Clicking the icon will open a small diaglog box for you to paste your YouTube / Vimeo embed code.
--
Short URL: http://smplc.ms/embedvideo
270 26 Jan 2011 02:35:49
Re: Add / Duplicate / Remove zone (12 replies, posted in Feature requests)
We hope to get this feature live within the next month. Our time now is being spent fine tuning the current features and adding small enhancements. We'll let you know once it's live.
271 20 Jan 2011 21:01:50
Topic: Will SimpleCMS work with Wordpress, Joomla or Drupal? (0 replies, posted in General discussion)
We've had a few emails asking if SimpleCMS will work with Wordpress, Joomla or Drupal. The short answer is no.
SimpleCMS works with static pages and is unable to edit the content on virtual pages that other content management systems may create.
272 20 Jan 2011 02:51:06
Re: unable to edit the SEO (5 replies, posted in Errors in the system)
Which page did you add the function into? I've tried the index.php page but that's still using a PHP include.
273 20 Jan 2011 02:22:22
Re: supporting French Characters (1 replies, posted in Support zone)
We'll get onto this right now and try to get this resolved for you as quickly as possible.
274 19 Jan 2011 00:53:57
Topic: Duplicate IDs (0 replies, posted in Support zone)
Each ID on your web page must be unique in order for your site to function properly and this is moreso important when using systems that extensively utilise ID tags, such as SimpleCMS.
As SimpleCMS references those IDs to the content the ID relates to, so when you edit your site the system can make the correct areas editable through knowing the unique ID of each area on the web page.
If you have duplicate IDs on your web page then the system will not know which area is the correct area to make editable.
The system will automatically check if the ID of an area is duplicated on the same web page and prevent you from making this an editable area.
Duplicating IDs on your webpage will also make your site invalid. W3C offer a validation tool which checks your site is valid and provides you with a detailed list of warnings and errors, if any occur. You can find the validation tool here:
http://smplc.ms/w3validator
The correct use of ID attributes can also be found on the W3 Schools website:
http://smplc.ms/w3idattribute
--
Short URL http://smplc.ms/duplicateids
275 18 Jan 2011 21:23:01
Re: unable to edit the SEO (5 replies, posted in Errors in the system)
Your website uses PHP includes which the system doesn't edit at the moment. If you had all the <head> code in the same page then you would be able to edit the SEO aspects.
We are working on editing include files and expect this feature to be released soon.