The client I integrated couchcms into has updated content on a couple of pages but the updated content is on https://www.techiemonkey.co.uk/it-dispo ... posal.html and https://www.techiemonkey.co.uk/it-suppo ... pport.html but the menu links are pointing to https://www.techiemonkey.co.uk/it-support/ and https://www.techiemonkey.co.uk/it-disposal/ so I updated the links in the admin side in pointer settings to point to the correct updated pages but they are not changing in the menu, am I missing in doing something?

UPDATE: I think it must be to do with the coding I got in menu.html in the snippets folder, I have the following code

Code: Select all
<cms:nested_pages masterpage='index.php'>
<ul class="menuzord-menu">
<li><a href="<cms:show k_site_link /><cms:show k_nestedpage_name />"><cms:show k_menu_title /></a></li>
</ul>
</cms:nested_pages>


I just need to work out how it should be for the line below

Code: Select all
<li><a href="<cms:show k_site_link /><cms:show k_nestedpage_name />"><cms:show k_menu_title /></a></li>


UPDATE: Sorry I have worked the issue out and updated the line that was causing the issue with the following and seems ok now

Code: Select all
<li><a href="<cms:show k_menu_link />"><cms:show k_menu_title /></a></li>