Is it possible to navigate on the same page with wordpress menus ?
lets say i have only one very long wordpress post and want to navigate on the same page by clicking the wordpress menus ?
You need to use "id" attribute for the element you want to navigate to and bookmark links in the menu. See here HTML Links
Related
this is my situation in a wordpress menu :
Example 3 is a custom link, so the URL of submenu is
www.site.com/sub1 and not www.site.com/example3/sub1
www.site.com/sub2 and not www.site.com/example3/sub2
How to do?
let me just post the answer here. Check out my demo site
http://dev.blurbpad.com/21sthomeloans/
Then hover over About Us in the Menu, you will see two sub pages. Open both in separate tabs. I think what you want to happen is what I did in subpage 1 where it's not showing in the url the-company (like in sub page 2)
The only time it will say that in the URL is if you made the another page a parent of the sub page (in this case "about us"). If you just make the adjustments in appearance>menus in wordpress, and not make it a child of another page, then the URL will not be affected.
I know there are ways to URL-redirect a Wordpress page to another page via PHP and that you can use HTML to link to a section of a page...but how can I redirect to a section page?
For example, on my home page I have different sections, services and projects. In the main navigation I have a services link. How can I make that open the homepage but just on the homepage.
Ok so just tested this on my local wp install.
On the page you want to load part way down add the anchor you require eg:
<a id="Services"></a>
Then in wordpress > appearance > menus, select your menu. Then on the left hand side, click on 'Links'
Add the full URL of your page eg:
http://mywebsite.com/home/
Add to this the '#Services' tag to make it look like:
http://mywebsite.com/home/#Services
Then add it to your menu and save.
You should then be able to click on that button on your menu and the page will drop to the anchor tag when clicked. If you're having trouble with the poundsign/hashtag (#) then you might want to check for conflicting issues in plugins / your functions file - and even wordpress.org uses them on their own site.
Currently I am working on Wordpress one page website,I have anchor links on my page which shows content on click event .I want that the content can be modified from the wp-admin for those anchor links. In short it is static right now and the code is written in index.php file.I want to make it dynamic? Can it be done through Wordpress? if yes please suggest me how can i achieve this?
this is an link to my website http://www.laughingcart.com/
I am converting it to wordpress theme.
yes it is possible in wordpress to create dynamic page as home page.
know delete all your code that you have inserted in index.php and remain it as default.then access dashboard panel of the word press site then navigate to the Pages and create new page what ever you want modify your text place links and publish this page. then navigate to the setting->reading and select the front page from drop down and save it you can now see the you pages as home page
Thanks
I am trying to move a website of static pages over to wordpress. In my main navigation menu on the main page, how do I edit the navigation menu such that when I clicked on the links the user is directed to the other static html pages as well? I knew pages in wordpress are similar in function, so how do I actually put the html code for them in these pages in wordpress? Been trying out but have no idea how to do it.
Thanks in advance!
You do it through the menu editor...
You can add a link to wherever you wish.
If you wish to do so Pragmatically here is an explanation: https://wordpress.stackexchange.com/questions/44736/programmatically-add-a-navigation-menu-and-menu-items
I would like to show a custom page when activate my theme with an Enter link instead of posts in the content area and also need to show same header, sidebar and footer as other pages. When click on the Enter our blog works same as other thems.Please help me.
I would create the page that you want to use as the index page in your wordpress admin panel. Then go to Readings Settings, and select Static Page, then select the new page you just created in the drop down menu to set it as the front page. Click Save Changes and the new index page will now be the first thing that visitors see when they go to your site. Does that solve your problem?