How hide/remove footer in Sense/Net 6.5.4.9243 - sensenet

Last week I have been working with Sense/Net 6.5.4.9243. Our main target is to use the workspace feature of sensenet ECM for our company. So I want to remove the footer and the header slider, but it shows "Error during rendering, please check the content view". (I made all the changes on the ui).

The footer is defined and configured in the pagetemplate html (/Root/Global/pagetemplates/sn-layout-inter-index.html). If you want to delete it, go to the admin surface, open the html file and remove the lines 72-92.
To remove the header slider properly change to edit mode with the Portal Remote Control and choose delete from the portletmenu.

Related

Editing Ektron frontend page (missing edit bar)

I'm using Ektron 9.00. I'm logging into the live frontend site but the bar at the top where i can choose to edited the page is not appearing.
How do I get the bar to appear?
Make sure "Toolbar" is checked in the Template Configuration. Go to Workarea > Settings > Configuration > Template Configuration. The fourth column in your list of templates is "Enable Toolbar". Make sure that's checked for all templates where you want the toolbar to appear.

Edit Shopify Admin Area

Can I add additional links to the Shopify admin panel? (ie. under Apps and Settings)? It would be great to include a link straight to the edit HTML/CSS screen instead of navigating via Themes - '...' - Edit HTML/CSS. It will help speed-up the development process when working in the browser direct.
Its in the settings_schema.json. When you go to your themes, choose edit css/html, then find the config section on the left. Expand if necessary and find the file settings_schema.json. You can edit this file to create custom items that you can modify through the admin dashboard by choosing the "customize theme" option.
Basically, you can customize the customize theme area. :)
To address your specific situation, I would create a checkbox in the theme admin to enable/disable a link to what you are looking for. Then could code into the theme somewhere to display that link if it is enabled and other conditions are met. This is optional however, as you could just directly add this code to the theme as well without the enable/disable functionality, just makes it a little cleaner. I'm including the info about settings_schema.json to help others as well.
Summary:
In the admin dashboard click Online Store
Then Click Themes
Next Click the little ... button and choose Edit HTML/CSS
In the left column find the config section and expand it
Click settings_schema.json to edit the file and customize theme admin
Hope this helps someone :)
Shopify is a SaaS or fully hosted (cloud) solution. The admin panel can't be modified "out of the box". You could write a userscript (JavaScript injection) which would alter the Shopify Admin for you. Tampermonkey will help you!
Shopify has a pretty great desktop editor you can download, and directly open your HTML and CSS files in your text editor. When you save, the changes are automatically pushed live to the theme.
https://apps.shopify.com/desktop-theme-editor

Issue on using "scrolling text" module in Joomla

I have downloaded and installed various module for scrolling text horizontally using these websites.
After I created new module and point out the position of that module, I can view that module in my web page. The text didn't appear because I didn't mention it in my module.
In Both of those modules, I couldn't find out that where have to I place the text to be scrolled in that particular modules?
I have searched a lot. But I couldn't get anything.
Any help will be appreciated!
Thank you in advanced!
These extensions display text from articles. So all you have to do is simpley:
Create a category in the Content Manager
Create some articles and assign them to your newly created category
In the Module settings, there will be an option to choose which category you wish to display the articles from, simply select your category
Hope this helps
There is no need of using any other modules for scrolling the text.
I used Custom HTML as menu type and write the code on editor.
The steps I have done as below:
Go to site -> Global configuration -> set Editor-None in default editor
Go to Extension-> module Manager -> New -> select the module type as Custom HTML
Copy the html code for scrolling text and Paste it in the text part and save the module.
Check your site. Now, your site is having the scrolling text. Then, You can change the Editor as before.

MS Word letterhead (page-header) with different margins on pages

I have got a word document with two pages. The margin of the page-header should be different on the two pages. I tried a lot to have a margin of 4 cm on the first page and 9 cm on the second page but with no success. I used Word 2003.
What I did:
Went to the second page and opened the "header and footer" bar.
I added the page-numbers and top-margins and clicked on "page setup" on the "header and footer"-bar
Afterwards I checked the box "different first page" and modified the header for the first page, too.
Problem:
THE MARGIN OF PAGE-HEADER IS THE SAME ON BOTH PAGES
Additional Info:
Actually I found this tutorial but it did not help me:
http://wordfaqs.mvps.org/Letterhead.htm
It's easy if you know it:
Enter the header on the second page. Add as many "returns" as you need to widen the header to the bottom. Sometime the "returns" in the header have a delay. Finally click on "different first page". That's it! Now you have a different margin on the first page compared to the following pages.
It is confusing that word has an Option for the header-margin. This option changes the header only globally.
For this you need to break the links between two pages for the header section. Follow the following step:
Create the doc and click the Page Layout tab.
In the Page Setup group, choose the appropriate section break option from the Breaks dropdown.
In Word 2003, choose Break from the Insert menu. Choose a break from the resulting dialog and click OK.
Double-click in the new section's header space. In the context Design tab, click the Link To Previous option in the Navigation group. Here you may found the the link is disabled. This is because of you have not selected the appropriate break. Try with different section break.
In Word 2003, choose Header and Footer from the View menu to open the header in edit mode.
Click the Link To Previous button in the Header and Footer toolbar to break the link.
Now the links has been broken. You can change you header and footer to desired height/width.
I have checked this from here and found working fine in office 2007 as well.

Display QuickLaunch on WebPartPage in sharepoint 2010

I'm trying to work out how to get sharepoint 2010 to display the quicklaunch on a web part page, the default.master trick I used in 2007 doesn't appear to work any more.
In my 2007 install, I simply edited the default.master and moved the quicklaunch code outside of the PlaceHolderLeftNavBar element but this doesn't have any effect in SP2010.
Thanks
A simple way to eneble Quick Launch Menu on WebPartPages is remove tags UIVersionedContentUIVersionedContent and PlaceHolderLeftNavBar using SharePoint Designer 2010.
See this article: http://denmartins.wordpress.com/2011/05/07/exibir-menu-quicklaunch-em-webpartpages/
If you really want to place another copy of the quicklaunch on a web part here is the steps
Using Sharepoint Designer 2010 go to your site and navigate to Master Pages -> v4.master
Click edit file copy everything in the <div class="ms-quickLaunch"> that should copy everything you need for the quicklaunch to run. For best result use the code view and hover over the quicklaunch and you should see the div, click on it and copy (Ctrl + C)
Now you can paste that on another web part page and it should work, I tried it by creating a new test page and it worked
You need to make changes in v4.master (in masterpage library), not in default.master.
For details on SharePoint 2010 master pages, please, follow this link:
http://sharepoint-sandbox.com/index.php?/Tips-and-Tricks/Customization/tip-80-sharepoint-2010-new-masterpages.html
Your masterpage trick on my SharePoint Foundation 2010 environment works fine.
Anyway, I don't think, that moving any standard code from placeholder is a good idea. If you want change position of quicklaunch menu, you should move the leftnavbar placeholder itself, including all the contents.
Placeholders are generally used to allow some pages, for example application pages, replace placeholder contents. So, if you hide the placeholder, and move it's contents out, these changes will be lost, and the standard menu will be shown. (and if you do not hide the placeholder, you can get two menus on one page :) )
Hope it helps!