How to display a single post with wordpress menu? - content-management-system

I have converted a joomla website to wordpress. All categories and joomla articles are converted as wordpress categories and blog post. Now I want to show this posts (articles) with different menus. But I saw I can assign catagories in word press menu. But How can I display a single post with a menu ?
Like I have about us post , for which I want to create a menu. How can I do that ? I can convert those to pages. But I dont want to loose tags and URLs . Can anyone help please ?
Thanks

You can add any post to a menu from the "posts" box in the menu admin screen. If you don't see that box, go to the screen options for the menu screen and check "posts".

There is an option named Custom Links in wordpress menu configuration. Just name label as "About Us", and give your post link in url field.

create separate page template for every single menu. In these page templates write a php code to fetch content from single category. Create pages in admin and assign a page template to each page into admin. This will fetch content from different category on different menu that u want.

Related

How do I add a like button to my facebook page and change the name to a company name?

I noticed some facebook company pages like:
http://www.facebook.com/companyname
Can change the persons name to the company name and also add a like button. How does one achieve these two things?
Add a like button to a company page of a URL like this - http://www.facebook.com/companypage
Add a like button on that page?
You need a special account designed for business, you cant just do it to a personal account.
https://www.facebook.com/business/overview
Once you reach enough likes on Facebook you can get your own "short page-link". You only need a few likes (100-200 I think it is).
A like button is already on your page. However you can add an extra tab using HTML and Iframes to a remote document with a like button. The like button is found on Facebook's dev pages.
https://developers.facebook.com/docs/plugins/like-button/
Code in HTML for Like Button
Detailed steps mentioned on the page on how to embed
You can add various styles too and a code will be generated for you

Linking to another page within a page’s tab

I have one company, multiple brands. Each brand has it’s own fan page. I would like to have it so when you open up a ‘brands’ tab on one page, there will be links to the other brands Facebook pages.
I have created the ‘brands’ tab itself, but when I open it, there is nothing there except “Go to Facebook.com”
Just looking as to where I can upload the links so they will appear and the user can be linked to the other pages.
You have a good idea to create a fanpage tab, but you should use links with _blank or _top target because tab content is displayed inside . Protip - you can even add a like button to each page inside tab.

How to add a custom page section in Zen Cart that can be turned on and off in EZ Pages

I am not so familiar with Zen Cart, I want to add a relatively small contact form box that can be added to/taken from pages via the red and green buttons in the Tools -> EZ-Pages section of the admin panel.
Thanks
If it's simple HTML that you want to put in your custom page, then you can just create a new page an put your HTML into it.
If it's conditional PHP code that you want to run, that's not supported in EZ-Pages.
But, to Robert's point, how is your "custom page" different from the built-in Contact Us page?

Form in mediaWiki

I have a Mediawiki site running. I am a beginner at this. I want two pages: one to display name and has a button, which leads to the another page where we can add names. This page has a textbox and a button to save the name. The display page has to show all the names entered.Please advice on how this can be done. Thanks in advance.
Since you are a beginner, I would not add buttons - just use the features MediaWiki already provides. On page 1, add a link using:
[[name of second page]]
On the second page, people can add names and use default MediaWiki functionality to save them.
To make the names nicely formatted, use a table.

Facebook like button on a product page

My requirement is to integrate my client webpage and facebook using the Flike button.
I have an html page which is used for all the products. Based on the product code selected, the content in the page changes. The URL format is something like this -
in the browser it shows : http://xyz.com/product.aspx,
in the view source, in the action attribute of the form tag : ../../product.aspx?prdcode=123&catcode=3453
Now, my requirement is to place an flike button on this page. I have tried doing it in several ways... but the issue is:
If I click on flike button on one page.. the button is disabled for every other product.
Not sure what all needs to be included in to get this functionality right.
For a product listing page you'd need to have multiple like buttons, each pointing at a URL which represents an individual product - each of those pages needs the appropriate open graph meta tags, include the JS SDK once on your listing page, and have multiple <fb:like tags pointing at the individual product URLs
If the page content is dynamic, I think you can do the same, but you'll need to remove and add the like button as the content changes