CMS Made Simple Link - content-management-system

I would like to set up links though my site to make it easier to type long urls to external sites, How would I set up CMS Made Simple to link from one internal URL to a exteral one IE mydomain.com/fb to facebook.com/mycompany/ ?

In your (V1.x) admin area, try:
Content > Pages > Add new content
Content type: Redirecting link
Options tab:
Page alias: "fb"
If you don't want it to show in menu untick "Show in menu"
Main tab:
Fill in title and menu
In URL: "facebook.com/mycompany/"
That should do it.

To redirect to an external URL (or even content within your domain that is not managed by CMSMS), you can use the Content Type "Redirecting Link".
Since maidbloke already covered CMSMS 1.x, I'll cover CMSMS 2.x.
Creating the Redirecting Link
Start at the CMSMS admin area's "Home" page (the default page loaded in the admin area).
Under the "Content" item, click the "Content Manager" subitem. You could also, instead, open the "Content" menu on the left by clicking "Content" in the left hand menu, and then click the "Content Manager" subitem.
Click "Add New Content" in the upper left of the Content Manager area.
In the "Main" tab, change the Content Type to "Redirecting Link".
Fill in the "Title" field.
Fill in the "URL" field (something like "https://www.facebook.com/mycompany" without quotes).
Click on the "Navigation" tab.
Fill in the "Menu Text" field.
If you don't want the link to show in your menus, uncheck the "Show in Menu" option.
If you set the "Title" to something other than "fb"...
Click on the "Options" tab.
Fill in the "Alias" field with "fb".
At the top of this page, click the "Submit" button to save your new content.
Now the redirecting link is set up! Next, we'll cover how to use it.
Using the Redirecting Link
There are a few ways you can use it.
Without MicroTiny
If you're not using MicroTiny or some other WYSIWYG editor:
A. You can use raw HTML:
Our Facebook Page
Our Facebook Page
Our Facebook Page
Our Facebook Page
B. You can use the cms_selflink tag:
{cms_selflink page="fb" text="Our Facebook Page"}
You can still use this method from within MicroTiny as well.
With MicroTiny
If you're using MicroTiny:
C. You can insert a CMSMS page link:
Click the "Insert" menu.
Click "Link to CMSMS Page".
Fill out the "Enter Page title" field with the value you used when you created the Redirecting Link (Creating the Redirecting Link, Step 5).
Fill out the "Text to display" field.
Click the "Ok" button.
There is also a button in MicroTiny toolbar that can be used to replace steps 1 and 2.
D. You can insert a regular link:
Click the "Insert" menu.
Click "Insert/edit link".
Fill in the "Url" field, probably with one of the URLs shown in option A.
Fill in the "Text to display" field.
Fill in the "Title" field.
Click the "Ok" button.
There is also a button in MicroTiny toolbar that can be used to replace steps 1 and 2. You could also press the Control and K keys together to insert a regular link.

Related

LibreOffice Writer 7.2.7.2 page style change affects earlier page styles

I am using LibreOffice Writer 7.2.7.2.(x64).
I create a new blank document, and insert a page break, giving me two pages.
I go to the header of the first page, then press F-11 to open Styles, then go to Page Styles. Then I double-click "First Page". The first page's header takes on the style "Header (First Page)", as expected.
Then I go to the header of the second page, and from Page Styles, double click "Left page". At this point, the second page's header style now says "Header (default page style)", and the style for the first page now says "Header (Left
Page)".
Why does changing the header style for page 2 affect page 1? (And how is anyone supposed to control styles if you can't tell what page you are going to be affecting?)
I have searched diligently for some explanation of how page styles work, read the LibO chapter on controlling page styles, and cannot grasp how setting a style for a later page could/should affect earlier pages. Is there any explanation for this incredibly frustrating behavior? Thank you.
I was able to reproduce your problem. The solution is as follows:
Setup the "First Page" header as you described.
Now, right-click on the "First Page" style, then select "Modify..."
On the Organizer tab, change the Next style field to "Left Page"
Now when you go to page 2, it should automatically be set to "Left Page" style. When you go to page 3, it should automatically be set to "Right Page"
Through this experience, my understanding is that the "First Page" style has set that the Next style to be "Default Page Style". By modifying the next style, you are properly chaining what the next style should be.
Why you encountered the problem when you simply click "Left Page" style on page 2? My guess is, the default system assumes odd page to be Left Page, so it overwrote the first page as Left Page. But this is just my guess.

When Browsing carousel is clicked it will open the browser. How can I return to my Action?

I have a Browsing carousel in my Action that opens a new page. From that page, I want to give the user an option to either continue on the website or to close the website and go back to the Action.
If they select the option to go back - how can I send them back to the Action?
You can't "go back" to the Action in the same way as if you clicked on a back button in the browser.
However, you can create a link on the page that you're showing the user that will re-start the Action or re-start it with a particular "deep linked" Intent. If you maintain the state of the user when they leave your Action, you can restore that state when they return, but that is up to you to manage.
To create a link to start the Action go to your Action console, select the "Actions" navigation on the left, and then the right arrow for the Intent that you want to be able to link to.
Towards the bottom of the screen that comes up, you may need to click on the "Links" header to expand that section, and then turn the switch on for "Would you like to enable a URL for this Action?"
The section will expand to prompt you for a Link Title (which is required, but not really used for anything) and will show you an HTML code snippet with the link. You are allowed to change this link however you want, but you must use a link - you can't do something clever like try to redirect to that page.

Save and Continue option while editing forms in MediaWiki

I have created a form using the "Create Form" option in MediaWiki with few text areas to fill in by the user. I wanted to enable the option of save and continue wherein a user can save the form after filling it partially, and then continue adding/editing the information.
I used the Extension:Checkpoint to fulfill the same. The extension provides the option when creating/editing a normal page in mediawiki, but not when
Adding new information in a form or
editing old form using "Edit with Form" option
Searched a lot on ways to be able to use the same, but failed. Also tried using the standard input tag: save and continue, but it just creates text, and no button.
Is there a way to get the functionality to work (did I miss something), or implement it in another way?
Thanks in advance.
The Save and Continue option as a matter of fact can be easily implemented without the use of the Extension:Checkpoint.
The standart input tag is defined within mediawiki which provides the user to provide different input options at the end of a page or a form.
The following different tag values are allowed:
"save" (for the "Save page" button)
"preview" (for the "Show preview" button)
"save and continue" (for the "Save and continue" button - this lets users
save the page without leaving the form)
"changes" (for the "Show changes" button)
"summary" (for the "Summary" text field)
"minor edit" (for the "This is a minor edit" checkbox)
"watch" (for the "Watch this page" checkbox)
"cancel" (for the "Cancel" link)
"run query" (for the "Run query" button in query forms)
The save and continue option can be easily used as follows:
{{{standard input|save and continue}}}
at the end of the page where you want the option.
It works as follows:
the button is not activated (appears as normal text) unless you type or change something in the form or page. As soon as you make even a slight change, the button is activated, to function just as every other button.
hence it might look as if the tag didn't work when it actually does. :)
PS: I still can't understand why the extension doesn't work on forms when it was designed keeping in mind the option of 'editing forms'.

What is the difference between disable a page and hide the page in the meu into Typo3 CMS?

I am pretty new in Typo3 world (I came from Joomla and WordPress) and I have a doubt related to well understand what is the difference between disable a page and hide the page in the menu in Typo3.
I have create a new test page and I don't want that now it appears in my left main menu.
So I click on the Access tab of this page settings and I tick the Hide (In Menus) "checkbox" so the page exist (I can access and see it using its URL) but don't appear in my main menu.
This is pretty simple but, near to the previous options, I also find the Disable (Page) checkbox. So I have try to tick this checkbox (instead of Hide (In Menus)) and happens something that I did not expect:
My test page appear again in my left main menu (I have no hide it but if I thought that if I disable a page, it is as if this page does not exist, evidently the typo3 operating logic is different from what I expect)
If, in my left main menu, I click on my test page link: the page is open but on the right top corner on the page appear to me the following textual message PREVIEW!
What it mean? I am logged as administrator, maybe the normal visitor can't see the disabled pages whereas administrator\editor see these pages? Or what?
Tnx
Andrea
Disable page = Nobody can see the page. The page is removed from the menu and it can't be accessed with the URL. You see it because you're logged into the backend. That is also why you see the red sticker 'Preview', because it is a preview.
Hide in menu = Page is hidden from the menu and the sitemap, however, it can be accessed with the URL.
Check the following documentation:
http://docs.typo3.org/typo3cms/GettingStartedTutorial/
There is a very short mapping between TYPO3 and Joomla:
TYPO3 "disable" = Joomla "Unpublish Article"
TYPO3 "hide" = Joomla "Unpublish Menu Item"
Cheers,
S.

Facebook: Added custom app to page but it doesnt show up as a custom tab

I've added my app to my page but it doesnt show up as a tab. Why?
See attached image FBapp.png which shows all settings. When I click 'Edit Settings' for the TicketWise app I get notification: "There are no settings for this application."
Here's my Facebook application: https://apps.facebook.com/ticketwise/?fb_page_id=208837722506615
(never mind the scrollbars for now)
When you view your page, underneath the image/logo area there is a list of tabs. Depending on how many tabs you have, at the bottom there will either be a link for "EDIT" or "MORE". If "MORE", click to see the full list of tabs and the EDIT link. When you click "EDIT" you will be able to drag and drop the tabs to reorder them and place your application near the top where it will be visible by default.
For your other query:
When I click 'Edit Settings' for the TicketWise app I get notification: "There are no settings for this application."
Settings pages are something you have to create separately if your app requires it. They are a page hosted on your server, that defines parameters to be used on the tab page view of the app. You can define the page in your application settings using the "Page Tab Edit URL" field.