I thought it might be better to open a new post for this little issue, I wanted a way where the couchcms user can change the links themselves on the button text so had a idea and done it this way for now which does work

Code: Select all
<cms:template title='Slideshow Page' order='10'>

<cms:repeatable name='content_slides' >

<cms:editable type='text' name='my_button_text' label='button text' />
<cms:editable type='text' name='my_button_link' label='button link' />
   
</cms:repeatable>

</cms:template>

<a class="button readmore" href="<cms:show my_button_link/>"><span class="buttontext"><cms:show my_button_text/></span></a>