Advertisement:

Author Topic: front page image files  (Read 1471 times)

tangledman

  • Newbie
  • *
  • Posts: 14
front page image files
« 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

But the images don't load on the front page.

http://espanainmo.com

I edited the file   /oc-content/themes/realestate/item.php
Code: [Select]
<?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="noindexnofollow" /><meta name="googlebot" content="noindexnofollow" />";
        } else {
        
$echo "<meta name="robots" content="indexfollow" /><meta name="googlebot" content="indexfollow" />";
        }
        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() > ) { ?>

                        <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 0osc_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 ?>
                                   
       
                           
                                   
                                   
                                   

SmaRTeY

  • Osclass Hero
  • Hero Member
  • *
  • Posts: 2519
Re: front page image files
« Reply #1 on: June 24, 2015, 01:58:26 am »
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