I want to change Sharepoint page title in arabic. Now it showing english for example https://XXXX.com/About.aspx.
If page changed to arabic language (ex., https://XXXX.com/About.aspx?lang=ar) I want page title in arabic.
Related
I want to add some text (e.g. This is Computer Generated Bill) ONLY on LAST PAGE of Advanced PDF template in Netsuite; where content of page ends . Problem is as number of pages change, text occur on all pages or change its position. Unable to fix this issue.
If you are editing the xml of the freemarker template you can add a custom block of code as the last thing on the page. If you need to make it prominent you can center it and add a bunch of padding above it.
In putting my website together using Weebly (I know, but it's for compatability) I have noticed that when Chrome opens a new tab the title does not match the content. These titles seem rather random: sometimes it's a word on that page or image, sometimes it's from another page or image, sometimes it seems completely random. Is there a way to control that?
You can set it below:
Go to the Pages > SEO Settings > Page Title
Alternatively the html tag is:
<title>Title goes here</title>
I'm downloading a theme from Sharepoint 2010 and uploading it in site themes in Sharepoint 2013. But, I'm unable to see it in "Look and Feel".
How to do it ?
Have tried themes creation steps for Sharepoint 2013 :
To add a composed look
Choose the Settings icon, and then choose Site settings.
Under Web Designer Galleries, choose Composed looks.
In the Composed Looks list, select new item.
In the Title text box, enter a title for the design
In the Name text box, enter a name for the design. The name appears
in the Composed Looks list and in the design gallery.
In the Master Page URL text box, enter the URL of the master page.
The URL can be a relative URL.
In the Theme URL text box, enter the URL of the color palette (the
URL to the . spcolor file). The URL can be a relative URL.
In the Image URL text box, enter the URL of the background image.
This is optional. The URL can be a relative URL.
In the Font Scheme URL text box, enter the URL of the font scheme
(the URL to the .spfont file). This is optional. The URL can be a
relative URL.
In the Display Order text box, enter the display order number. This
determines where the design appears in the design gallery.
Choose Save.
https://msdn.microsoft.com/en-us/library/office/jj927175.aspx?f=255&MSPPError=-2147217396
http://en.share-gate.com/blog/create-sharepoint2013-theme-using-color-palette-tool
thanks for your answer . I found something that says we can't export themes from SP2010 to SP2013 because SharePoint 2013 does not support “THMX” Themes that are Created in SharePoint 2010. If you are looking to migrate a Custom Theme from SharePoint 2010 to SharePoint 2013, you would have to re-design the Theme with new structure, defined by XML files – SPColor.xml and SPFont.xml and then apply to the new SharePoint 2013 site.
http://www.learningsharepoint.com/2013/06/03/create-custom-theme-in-sharepoint-2013-step-by-step-tutorial/
https://support.office.com/en-us/article/Branding-issues-that-may-occur-when-upgrading-to-SharePoint-2013-0c849002-cdf4-4843-9d4a-0a643a7c64f3
I'd like to do some natural language processing (nlp) mining based on news.
google has a smart way of extracting a useful text from news articles. that's the text it displays in google news. is there an easy way to download that text rather then copy the displayed text from google news then find that text in the original html and extract the div with that text?
I have a Sharepoint list, where one of the columns is plain text - Description. When you edit a list item, Description field is normally a TextArea. I have it programmed that this TextArea is extended with JavaScript to accept rich text (html really), so I have my custom rich text field. The problem is that when I input the rich data everything looks fine but when I save the edited item and then display it, the text is displayed as plain text, not html, so instead of a bold text I get "< b >text< /b >". And I would like it to be displayed as html. What can I do with it?
Edit: I don't want to use the built-in editor, because I need some different behavious.
The code that reads in the text input from the form and saves it to the list will be doing a HTMLEncode operation that replaces
< with <
> with >
and so on (look at the source of the page after a save)
This occurs 'server side' so you won't be able to change this using JavaScript.
You've got two options I think
As F5 mentioned you can create a custom field type with your own behaviour for rendering and update. This is the 'correct' way to do this.
You could change your funky javascript to work on a rich text field, hack into the rendering of the built in RTE and replace it with your own.
Of cource as soon as you are taking input from a user and then rendering it back to your web page you open yourself up to all sorts of nasties such as Cross Site Scripting if you are not filtering out potential bad stuff (the very reason why the HtmlEncode is used) - less of a problem in a typical SharePoint site on an Intranet than a public facing site.
SharePoint supports rich text columns using its own in-built editor. You just have to change the column settings so it allows rich text.
If you are using a JavaScript editor because of browser compatability with the built-in rich text editor then SharePoint will always strip the html from whatever is entered as it expects the input to be plain text.
Re your comments
If you want the field to display in rich text it needs to be a rich text field, by setting it to plain text you are always going to lose your custom formatting.
You need to look into custom field types
So where exactly are the data being displayed incorrectly: on the List Display Form or on a Page Layout? If it's on the Page Layout the fix is easy: create a custom Field Control which will retrieve the value of the field (like SPContext.Current.ListItem["YourField"]) and decode the contents to get HTML instead of encoded HTML entities.