Jump to content

convict

Member
  • Posts

    1,302
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by convict

  1. ...it doesn't matter whether you're running in safe mode or not ...

    Really? ;)

    (PG(safe_mode) && !php_checkuid(fn, "rb+",  
    
    CHECKUID_CHECK_FILE_AND_DIR)))

    :huh:

    BTW stable hosting company is ALWAYS providing PHP in safe mode only. They know for what.

    @estelle may i guess? You are using PHP in safe mode too...but id doesnt matter who is right and who is not :errm:

  2. Just remove auto from margin css property in skins/<-your skin->/StyleSheets/layut.css #pageSurround

    #pageSurround {
    
    	margin: 0px auto;
     to 
    
    #pageSurround {
    
    	margin: 0px;

    and use left margins...or dont remove AUTO and use left margins or float or absolute left position ...what do you want...depends to what do you mean with pushed up against the left side.

    :)

    Then could you play with .txtCopyright text positioning in style.css or find another way to have right placed Copy Right notices.....

  3. No, they are NOT. If you want to hide skin selection to admins, open admin/settings/index.php search for

    	<tr>
    
    	<td width="30%" class="tdText"><strong><?php echo $lang['admin']['settings']['store_skin'];?></strong></td>
    
      <td align="left">
    
    	<?php
    
    	$path = $GLOBALS['rootDir']."/skins";
    
    	if ($dir = opendir($path)) {
    
      ?>
    
      <select class="textbox" name="config[skinDir]">
    
      <?php
    
    	
    
      while (false !== ($file = readdir($dir))) {
    
     	 
    
     	 if(!eregi($file,array(".",".."))){
    
     	 ?>
    
        <option value="<?php echo $file; ?>" <?php if($file==$config['skinDir']) { echo "selected='selected'"; } ?>><?php echo $file; ?></option>
    
     	 <?php 
    
     	 }
    
      } 
    
      ?>
    
        </select>
    
      
    
    	<?php } ?>  </td>
    
    	</tr>
     and add <!-- in front of this code and --> in the end this code...like this 
    
    <!--	<tr>
    
    	<td width="30%" class="tdText"><strong><?php echo $lang['admin']['settings']['store_skin'];?></strong></td>
    
      <td align="left">
    
    	<?php
    
    	$path = $GLOBALS['rootDir']."/skins";
    
    	if ($dir = opendir($path)) {
    
      ?>
    
      <select class="textbox" name="config[skinDir]">
    
      <?php
    
    	
    
      while (false !== ($file = readdir($dir))) {
    
     	 
    
     	 if(!eregi($file,array(".",".."))){
    
     	 ?>
    
        <option value="<?php echo $file; ?>" <?php if($file==$config['skinDir']) { echo "selected='selected'"; } ?>><?php echo $file; ?></option>
    
     	 <?php 
    
     	 }
    
      } 
    
      ?>
    
        </select>
    
      
    
    	<?php } ?>  </td>
    
    	</tr>-->

  4. File Name :: CC3 Admin Orders ordering

    Author :: convict

    Category :: Admin

    CubeCart Version ::

    Description

    This tiny mod allows you to order orders by order no, status, date/time, customer Ip address, basket total [ASCENDING/DESCENDING] in your CC3 Admin Control Panel.

    Wanna order by status? Just clik on column name STATUS. Second mouse click makes ordering reversed. All clickable columns are underlined...are links :unsure:

    View File

  5. do yo mean php code?

    with any php code within templates you will be failed :D

    write own php and tpl, use iframe or modify existing one php and appropriate template :)

    if you like to show home/Form.php as a string within page content you are welcome :huh:

×
×
  • Create New...