Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter nagrap

    (@nagrap)

    The wp_footer hook is in the footer.php file, but when I comment it out, I lose the dynamic height resizing of the main body of the page.

    Is there anyway to remove just the Adsense part of the footer? How do I view the code where the Adsense block has been defined, I cannot find it in the functions.php

    Thread Starter nagrap

    (@nagrap)

    Joy,

    I don’t see any function in csv_importer.php named create_custom_fields (see below)

    Should I be adding the function as a new function in there? How should I then call the function?

    <?
    
    // Include required files
    include("includes/php/globals.php");
    include("includes/php/functions.php");
    
    CreateForm("index.php", $stage);
    
    ?>
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    
    <html>
    <head>
    	<title>PHP CSV Importer: v<?=$scriptVersion?> by <?=$authorName?></title>
    	<link rel="stylesheet" href="includes/css/csv_importer.css" type="text/css">
    	<script>
    		<?=$js_block?>
    	</script>
    	<?=$js_scripts?>
    </head>
    
    <body onLoad="<?=$bodyOnLoad?>">
    <table width="780" border="0" cellspacing="1" cellpadding="2" align="center">
      <tr class="title">
        <td>PHP CSV Importer</td>
      </tr>
      <tr>
        <td>
        		<table border="0" cellspacing="0" cellpadding="2" width="<? echo ($tableWidth) ? $tableWidth : "640" ?>" align="center">
    			<tr class="instructions">
    				<td><?= $instructions?></td>
    			</tr>
    			<tr class="spacer">
    				<td>?</td>
    			</tr>
    			<form name="form1" action="<?=$PHP_SELF?>" method="POST" onSubmit="return(ValidateForm(this<?=$validateFormArgs?>))">
    				<tr>
    					<td>
    						<table cellspacing=1 cellpadding=0 border=0 width=100%>
    							<?=$display_block?>
    						</table>
    					</td>
    				<tr>
    					<td>?</td>
    				</tr>
    				<tr class="submit">
    					<td><input type="submit" name="mainSubmit" value="<? echo ($submitValue) ? $submitValue : "Next ?"?>"></td>
    				</tr>
    				<input type="hidden" name="stage" value="<?=$stage?>">
    			</form>
    		</table>
    	</td>
      </tr>
      <tr>
        <td>?</td>
      </tr>
      <tr class="footer">
        <td>Author: <?=$authorName?> | Version: <?=$scriptVersion?> | <a href="mailto:[email protected]?subject=CSV Importer Feeback ~">Send Feedback</a></td>
      </tr>
    </table>
    
    </body>
    </html>
    Thread Starter nagrap

    (@nagrap)

    Joy

    Can you let me know which file this function is contained within as I have searched but cannot find.

    Thanks in advance…

    Thread Starter nagrap

    (@nagrap)

    I still have not managed to get it to work

Viewing 4 replies - 1 through 4 (of 4 total)