Xcart 4 - static page content working when added to help menu but not on home page - x-cart

I have a static page called 'welcome' which just contains text and should display on the home page but doesn't - there's nothing there. However, if I edit the static page and select the 'Show a link to the page in Help menu?:' option, a link to the page appears at the bottom of the site and when I visit that page, the content is displayed.
Any ideas what I am doing wrong?

Static pages are accessible by their own URLs.
To change your welcome page follow the instructions (Shortly, it is the template like skin/common_files/customer/main/welcome.tpl / skin/your_skin/customer/main/welcome.tpl).

Related

Building a website in Sharepoint, but my control panel disappears

At the moment i'm building a website in sharepoint, but everytime i open the main page of the website in my browser the control panel on the left upperside of the screen is missing. I have no idea why?
To clarify: In this tutorial you can see the browse/page/site control screen, in which they make nearly all the simple changes to the website. https://www.youtube.com/watch?v=dJlwCNXMCBo (edit: Forgot the link of the tutorial)
I literally have no idea why i cant use this, does anyone have any clue?
Edit: My mainpage looks like this:
http://s30.postimg.org/6a5mkzoip/Screenshot_main_page.png
Pull down the menu with the gear icon beside your name. Click on "Show Ribbon".
Your master page is hiding it through javascript.
<script type="text/javascript">
var suitebar = $("#suiteBar");
if(suitebar.length<1)
$("#s4-ribbonrow").css('display','none');
</script>
If you change the master page to $("#s4-ribbonrow").css('display','block');
You should see the ribbon.

How to create a static About us page in opencart

I am a beginner in using opencart.I need to create an About us page from admin and have to link it to my main menu navigation.How to get this?
Step 1 : Goto information link in catalog tab
Step 2 : click to insert a page or information page like about us
Step 3 : if you have enabled seo then you can write keyword for you aboutus page or information page then your url will be easy to use e.g below if seo is disbaled then your url will be little boring e.g(index.php?route=information/information&information_id=4)or simpler to it which will not be good to share or use
NOTE: for seo you should use .htaccess file
It very simple go to admin panel
catalog -> Information
here you can see all the static pages such as About us,Delivery Information etc
edit them and changes will appear on front page .
to insert new page
catalog -> Information -> Insert
most complex opencart themes have a module like menu that you almost always can edit in the backend, if you wish to you can add it manually, to do so locate header.tpl in catalog->view->theme->common and see if menu is called directly there probably in a section or in an external file, probably located in the same folder, if you wish to you can send me a message with further info and i would be glad to further assist you, its really simple, if you find your way around.

Articles not showing up on front end on a custom made template joomla 3.1

I have created my own Joomla template using Joomla 3.1.
I have my main menu with the menu item "home" that leads to the front page.
I have a module called "body" in which I want my articles to be displayed, depending on which page the user is I want a different article to show up.
The article that I want to show up on the "Home" page is in a category called "home". My menu item "home" is a single article linking to the article I want to be on the front page.
All of the statuses are on published and the access on all mentioned items are public.
When I open the front end I can see the "body" module but no article. If I try using Protostar there is no problem and the article shows up.
Can anyone help? I suppose it is because there is no link between the "body" module and my article/category...?!?
Found the solution: all I needed to do is to add the tag jdoc:include type="component" / into my template. After that it worked fine...

Theme for inner menu item does not work. Joomla 2.5

I have a website in Joomla and have created two themes for main-and-inner pages respectively.
When i created inner menu items i assigned them the inner-theme it works fine the first time you navigate to the theme but on the second hit to the page it just shows the home page theme. its really odd.
On my local machine everything works perfectly, this issue only arises when i upload it.
One more thing i am new to Joomla the way i made the template was i used the same home page template and changed the name attribute in the inner page but kept some of the module name same as in the home page so i could assign the module once and it could work on both templates. inner page differs in size of the banner & has breadcrumb module + 1 more that differentiates it from the home page.
This is most likely caused by the Itemid not propagated properly. The Itemid identifies a menu item, from which the settings are read. If the Itemid is missing, the settings of the default page (your main page) are used instead.
If you just want to slightly change the appearance of the front page and other pages, you can do that with one single template. See the Joomla! online documentation for how to determine if the user is viewing the front page.

Trac, how to organize pages hierarchically?

I use trac to manage my projects and I'd like to organize wiki pages the same way trac project does, i.e. by category, subcategory, etc. TitleIndex page on trac site gives a good explanation of the result I want to obtain.
How do I achieve this?
First of all, you can create hierarchically wiki pages, just by modifying the url, and press enter. It is also possible to create a wikilink first, and then press the red link.
For example, when your trac home page is http://trac.server.local/project/wiki, you can type /customers at the end of the url, and press enter. So the new url would be http://trac.server.local/project/wiki/customers. You will get an almost empty page with a button Create this page. Press that button to create that page. After that you can also create pages at the next level, for example
http://trac.server.local/project/wiki/customers/microsoft
http://trac.server.local/project/wiki/customers/google
http://trac.server.local/project/wiki/customers/apple
To generate an index, I use the HierWikiPlugin. On the /wiki/customers page, I enter just
[[SubWiki(customers/,1)]]
to get a list of all subpages below customers. To also see the subpages of those subpages, increase the level, for example
[[SubWiki(customers/,2)]]
You can add subpages using something like:
[[./SubPage]]
This generates a link to a non-existent page. When you click on the link, Trac shows you a page to create a new sub page or a page in the same level...