Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Removing the HTML Content (for popup) in categorie.php


1 reply to this topic

#1 kozak

  • Community Member
  • 66 posts
  • Real Name:Kozak
  • Gender:Male
  • Location:Antwerp Belgium

Posted 10 February 2012, 16:14

I want to remove the "HTML Content (for popup)" in categorie.php. thx for help

#2 kozak

  • Community Member
  • 66 posts
  • Real Name:Kozak
  • Gender:Male
  • Location:Antwerp Belgium

Posted 03 April 2012, 19:41

Because I get no help to remove the HTML Content for popup I search the solution myself.
Hope that somebody can use this to.

Find in admin/categories.php the next code :

$('#piList').append('<li id="piId' + piSize + '" class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s" style="float: right;"></span><a href="#" onclick="showPiDelConfirm(' + piSize + ');return false;" class="ui-icon ui-icon-trash" style="float: right;"></a><strong><?php echo TEXT_PRODUCTS_LARGE_IMAGE; ?></strong><br /><input type="file" name="products_image_large_new_' + piSize + '" /><br /><br /><?php echo TEXT_PRODUCTS_LARGE_IMAGE_HTML_CONTENT; ?><br /><textarea name="products_image_htmlcontent_new_' + piSize + '" wrap="soft" cols="70" rows="3"></textarea></li>');
}
DELETE the part : <br /><?php echo TEXT_PRODUCTS_LARGE_IMAGE_HTML_CONTENT; ?><br /><textarea name="products_image_htmlcontent_new_' + piSize + '" wrap="soft" cols="70" rows="3"></textarea></li
It should read like this :
$('#piList').append('<li id="piId' + piSize + '" class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s" style="float: right;"></span><a href="#" onclick="showPiDelConfirm(' + piSize + ');return false;" class="ui-icon ui-icon-trash" style="float: right;"></a><strong><?php echo TEXT_PRODUCTS_LARGE_IMAGE; ?></strong><br /><input type="file" name="products_image_large_new_' + piSize + '" /><br />');
}
That's it