Osclass forums
Support forums => Themes => Real Estate => Topic started by: tangledman on June 24, 2015, 01:10:03 am
-
I am running the real estate theme and to avoid having too many images I on the server I use AWS.
The listings work fine:
http://espanainmo.com/real-estate/for-sale/for-sale-in-estepona_i10631 (http://espanainmo.com/real-estate/for-sale/for-sale-in-estepona_i10631)
But the images don't load on the front page.
http://espanainmo.com (http://espanainmo.com)
I edited the file /oc-content/themes/realestate/item.php
<?php
/*
* Osclass – software for creating and publishing online classified
* advertising platforms
*
* Copyright (C) 2013 Osclass
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
function itemCustomHead(){
if( osc_item_is_expired () ) {
$echo = "<meta name="robots" content="noindex, nofollow" /><meta name="googlebot" content="noindex, nofollow" />";
} else {
$echo = "<meta name="robots" content="index, follow" /><meta name="googlebot" content="index, follow" />";
}
echo $echo.'<script type="text/javascript" src="'.osc_current_web_theme_js_url('jquery.validate.min.js').'"></script>';
}
osc_add_hook('header','itemCustomHead');
?>
<?php osc_current_web_theme_path('header.php') ; ?>
<div class="content-item">
<div id="item-head">
<h1><?php echo osc_item_title(); ?></h1>
<div id="type_dates">
<strong><?php echo osc_item_category() ; ?></strong>
</div>
</div>
<div id="left-side">
<?php if( osc_images_enabled_at_items() ) {
if( osc_count_item_resources() > 0 ) { ?>
<div id="gallery">
<div class="ad-gallery">
<div class="ad-image-wrapper">
</div>
<div class="ad-nav">
<div class="ad-thumbs">
<ul class="ad-thumb-list">
<?php
for ( $i = 0; osc_has_item_resources() ; $i ) { ?>
<li>
<a href="<? //php echo osc_resource_url();
echo 'http://s3-eu-west-1.amazonaws.com/espanainmo.com/'.osc_resource_field("s_name").".".osc_resource_field("s_extension"); ?>">
<img src="<?php echo 'http://s3-eu-west-1.amazonaws.com/espanainmo.com/'.osc_resource_field("s_name").".".osc_resource_field("s_extension");
?>"></a>
</li>
<?php } ?>
-
Don't know what you edited exactly but here's a screenshot of the errors I see in my browser when opening your front-page.
Regards,
Eric