We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 10529
    • 73 Posts
    Just can’t work out where this might be - I would like to style the copy text when you Manage Pictures - for example:
    change the default below in the code to <h3>Jump to upload form</h3> - I’ve serached through all the templates etc and can’t find where the reevant file is. Sorry I know this must be pretty basic but has me flumaxed :’(

    <div class="pictureform">
    		<form action="/serrechevaliergallery.html" method="post" name="editform" id="editform">
    			<input name="action" value="edit_pics" type="hidden"><input name="mode" value="admin" type="hidden"><input name="number" value="4" type="hidden">
    	
    			<input value="Back to normal view" onclick="location.href='/serrechevaliergallery.html'" type="button">
    			<input value="Save changes" type="submit">
    
    			<input value="Sort pictures" id="dragButton" onclick="openDragWin('/serrechevaliergallery.html?dragsort=1', 600, 500)" type="button">
    	
    			<br><br>
    			<a href="/serrechevaliergallery.html#uploadform">Jump to upload form</a>
    			<br><br>
    		
    			<div class="managepicturecontainer">
    
      • 7923
      • 4,213 Posts
      It’s in the manageOuterTpl


        "He can have a lollipop any time he wants to. That's what it means to be a programmer."
        • 10529
        • 73 Posts
        Sorry I’m being really dense but, for example if I want to style "Jumpt to Upload Form" I can’t find that text in any of the code in manageoutertpl or any other file for that matter - so where is it pulling it from?

        <div class="managecontainer">
        	<a name="top"></a>
        	<p>
        		[+maxigallery.messages+]
        	</p>
        	<p>
        		[+maxigallery.strings.gallery_description+]:
        		<br />
        		[+maxigallery.pageinfo.description+]
        	</p>
        	<div class="pictureform">
        		<form action="[+maxigallery.urlaction+]" method="post" name="editform" id="editform">
        			[+maxigallery.hiddenfields.mainform+]
        	
        			<input type="button" value="[+maxigallery.strings.back_to_normal_view+]" onclick="location.href='[+maxigallery.urlback+]'"/>
        			<input type="submit" value="[+maxigallery.strings.save_changes+]" />
        			<input type="button" value="[+maxigallery.strings.sort_pictures+]" id="dragButton" onclick="openDragWin('[+maxigallery.urldragsort+]', 600, 500)" />
        	
        			<br /><br />
        			<a href="[+maxigallery.urlaction+]#uploadform">[+maxigallery.strings.jump_to_upload_form+]</a>
        			<br /><br />
        		
        			[+maxigallery.managepictures+]
        		
        		</form>
        	</div>
        	
        	<div class="uploadform">
        		<a href="[+maxigallery.urlaction+]#top">[+maxigallery.strings.back_to_top+]</a>
        		<a name="uploadform"></a>
        		<br />
        		[+maxigallery.pics_allowed_count:isnot=``:then=`
        			<br />[+maxigallery.strings.number_allowed+]: [+maxigallery.pics_allowed_count+]
        		`+]
        		[+maxigallery.pics_allowed_count:isnot=`0`:then=`
        			<br /><br />
        			<form action="[+maxigallery.urlaction+]" method="post" enctype="multipart/form-data" name="uploadform">
        				[+maxigallery.hiddenfields.uploadform+]
        
        				[+maxigallery.uploadpictures+]
        	
        				<br class="clearboth" />
        	
        				<input type="submit" value="[+maxigallery.strings.upload_pictures+]" />
        			</form>
        		`+]
        	</div>
        	<br class="clearboth" />
        	<hr />
        	
        	<div class="deleteform">
        		<form action="[+maxigallery.urlaction+]" method="post" name="deleteform">
        			[+maxigallery.hiddenfields.deleteform+]
        			<input type="submit" value="[+maxigallery.strings.delete_all_pictures+]" onClick="return confirm('[+maxigallery.strings.delete_all_confirmation+]')" />
        		</form>
        	</div>
        	
        	<div class="synchform">
            	<form action="[+maxigallery.urlaction+]" method="post" name="synchform">
        			<input type="hidden" name="action" value="gallery_synch" /><input type="hidden" name="mode" value="admin" />
                    <input type="submit" value="[+maxigallery.strings.resynch+]" />
                </form>
            </div>
            
        	<br class="clearboth" />
        	<hr />
        	    
        </div>
          • 7923
          • 4,213 Posts
          It comes through the strings placeholder:

          [+maxigallery.strings.jump_to_upload_form+]

          What brings the string from the language files based on the selected language. See MaxiGallery wiki page for explanation on the placeholders.


            "He can have a lollipop any time he wants to. That's what it means to be a programmer."