This is a discussion on turning off other images for this product within the osCMax v2 Customization/Mods forums, part of the osCMax v2.0 Forums category; One more question from a noob. I can't seem to find a setting to turn off the 'other images for ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| One more question from a noob. I can't seem to find a setting to turn off the 'other images for this product' box. Any hints? TIA. |
| Sponsored Links | ||
| ||
| |
|
#2
| |||
| |||
| I wish I knew! I have fumbled around in the templates, but not sure which part to remove. I just have a thumbnail, and a big image. I don't need to show extra images, and just want to turn that box off. Anyone?? |
|
#3
| |||
| |||
| I did this manually by editing the template and removed the code. Its surprisingly easy to be honest load up the following page into notepad. catalog/templates/yourtemplate/content/product_info.tpl.php Its easier in dreamweaver, so if you have dreamweaver, load that page into it, change the view to design view, and look for a large clear table near the center, directly under this is the table you need to remove. For those who do not have or know dreamweaver, open the file in notepad and look for and delet the following lines (based on OSCMAX RC2 <tr> <td> <div class="screenshotsHeader"> <div class="screenshotsHeaderText"><?php echo TEXT_OTHER_PRODUCT_IMAGES; ?></div> </div> <div class="screenshotsBlock"> <?php include(DIR_WS_MODULES . 'dynamic_mopics.php'); ?> </div> </td> </tr> --------------------------------------- so it will now look like this </td> </tr> <?php //// BEGIN: Added for Dynamic MoPics v3.000 ?> <?php //// END: Added for Dynamic MoPics v3.000 ?> <tr> and thats all there is too it. |
|
#4
| |||
| |||
| Um, don't delete the lines, move them to the mopics file where they belong. Then when product_info.tpl.php runs it will go to mopics, and if there is no mopics to display it won't put up anything, but if there are mopics it will put up the box. Bad coding, goes against style (osc style guide is to display if there is something to display, and do not display if there is nothing to display, unlike IBM's styleguide of "this page intentionally left blank."). product_info.tpl.php Code: //// BEGIN: Added for Dynamic MoPics v3.000
?>
<!-- <tr>
<td>
<div class="screenshotsHeader">
<div class="screenshotsHeaderText"><?php
echo TEXT_OTHER_PRODUCT_IMAGES; ?></div>
</div>
<div class="screenshotsBlock"> -->
<?php include(DIR_WS_MODULES . 'dynamic_
mopics.php'); ?>
<!-- </div>
</td>
</tr> -->
<?php
//// END: Added for Dynamic MoPics v3.000
?>
Code: if (mopics_file_exists(DIR_FS_CATALOG . str_replace($search, $replace, D
YNAMIC_MOPICS_PATTERN))) {
//
// moved the mopics box to here from the products info template
//
?> <tr>
<td>
<div class="screenshotsHeader">
<div class="screenshotsHeaderText"><?php
echo TEXT_OTHER_PRODUCT_IMAGES; ?></div>
</div>
<div class="screenshotsBlock">
<?
Code: // All thumbnails have been found and displayed; clear all of th
e CSS floats
echo '<div class="clearScreenshots"><hr /></div>';
//
// moved the mopics box from the products template to here
//
?> </div>
</td>
</tr>
<?
} else {
// No extra images found for this product
// echo '<p class="noScreenshots"><span class="smallText">' . TEXT_
NO_MOPICS . '</span></p>';
}
?>
__________________ so endith the lesson<think>sometimes I just sit's and thinks</think> "Here you are with a hand full of holes, a thumb up your ass, and a big grin to pass the time of day with." - TWB |
|
#5
| |||
| |||
| Thats cool, but you still end up with the "No other images currently available" which is the part I want rid off. |
|
#6
| ||||
| ||||
| C'mon, use your noggin! met00 provided such a neat solution. All you need to do is look at the code, the answer is right there ... Remove this: Code: ' . TEXT_ NO_MOPICS . '
__________________ Michael Sasek osCMax Developer
|
|
#7
| |||
| |||
| Quote:
Just to be clear you make a comment out in product_info.tpl.php. And you make a file named dynamic_mopics.php that contains the following code: Code: if (mopics_file_exists(DIR_FS_CATALOG . str_replace($search, $replace, D
YNAMIC_MOPICS_PATTERN))) {
//
// moved the mopics box to here from the products info template
//
?> <tr>
<td>
<div class="screenshotsHeader">
<div class="screenshotsHeaderText"><?php
echo TEXT_OTHER_PRODUCT_IMAGES; ?></div>
</div>
<div class="screenshotsBlock">
<?
// All thumbnails have been found and displayed; clear all of th
e CSS floats
echo '<div class="clearScreenshots"><hr /></div>';
//
// moved the mopics box from the products template to here
//
?> </div>
</td>
</tr>
<?
} else {
// No extra images found for this product
// echo '<p class="noScreenshots"><span class="smallText">' . TEXT_
NO_MOPICS . '</span></p>';
}
?>
|
|
#8
| |||
| |||
| Answer to last questions is NO. Unfortuantely some can code but cant write isntructions. So here you go. Open file- tempaltes/your-tempalte/content/product_info.tpl.php Remove the following code: (lines 124-137 for me) Code: //// BEGIN: Added for Dynamic MoPics v3.000
?>
<!-- <tr>
<td>
<div class="screenshotsHeader">
<div class="screenshotsHeaderText"><?php
echo TEXT_OTHER_PRODUCT_IMAGES; ?></div>
</div>
<div class="screenshotsBlock"> -->
<?php include(DIR_WS_MODULES . 'dynamic_
mopics.php'); ?>
<!-- </div>
</td>
</tr> -->
<?php
//// END: Added for Dynamic MoPics v3.000
?>
Open file- includes/modules/dynamic_mopics.php Find the following code: (line 42 for me) Code: if (mopics_file_exists(DIR_FS_CATALOG . str_replace($search, $replace, DYNAMIC_MOPICS_PATTERN))) {
Code: //// moved the mopics box to here from the products info template
//
?>
<tr>
<td>
<div class="screenshotsHeader">
<div class="screenshotsHeaderText">
<?php
echo TEXT_OTHER_PRODUCT_IMAGES;
?>
</div>
</div>
<div class="screenshotsBlock">
Code: TEXT_NO_MOPICS Just delete it. Save and upload. |
| The Following User Says Thank You to FlipC For This Useful Post: | ||
caw (07-12-2007) | ||
|
#9
| |||
| |||
| If your not going to ever use it, I'm with spottedhaggis. Fast fix and easy to do. |
| Sponsored Links | ||
| ||
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Missing Product Images | driwashsolutions | osCMax v2 Customization/Mods | 0 | 12-08-2006 03:13 PM |
| PRODUCT IMAGES | jschafer52 | osCMax v2 Customization/Mods | 1 | 07-11-2006 06:46 PM |
| Other images for this product box? | [wicked] | osCMax v2 Features Discussion | 1 | 08-17-2005 07:36 PM |
| Turning off the background images | mcdanie1 | osCommerce 2.2 Modification Help | 1 | 09-30-2003 10:02 AM |
| Product images not showing? | Picman | osCommerce 2.2 Modification Help | 2 | 06-12-2003 03:01 PM |