PDA

View Full Version : Mobile version of flynax 4.3- no photos in listing datails



Ionut Barabasa
March 21, 2014, 08:38 PM
Hello

How come there are no photos in listing details page in mobile vers of flynax 4.3? Is supposed to be like this? I reinstalled the template and still no photo in details, only in category

Dmitry
March 22, 2014, 04:00 AM
Hello Ionut Barabasa,

FTP > templates > your template > tpl > controllers > listing_details.tpl

find phrase: {$lang.no_listing_photos}

and replace on photo:

<img src="{$rlTplBase}img/no-picture.jpg" />
or you can set your photo.

Thanks.

Ionut Barabasa
March 22, 2014, 05:36 PM
Hello
What exactly to replace? {$lang.no_listing_photos} with <img src="{$rlTplBase}img/no-picture.jpg" />
Set my own photo? Why i want to set my own photo?

I was saying that in 4.3 when use mobile version the photos are not visible in listing detail page. This happends only when use flatty template. If i change to other template , then in mobile version all is ok

Petrache Nicolae
March 23, 2014, 10:12 AM
Hello
What exactly to replace? {$lang.no_listing_photos} with <img src="{$rlTplBase}img/no-picture.jpg" />
Set my own photo? Why i want to set my own photo?

I was saying that in 4.3 when use mobile version the photos are not visible in listing detail page. This happends only when use flatty template. If i change to other template , then in mobile version all is ok

e mai sigur sa faci o poza (screenshoot) ca sa vada exact la ce te referi.

Dmitry ti-a dat codul ca sa ai o imagine mostra (no_image) pentru anunturile in care utilizatorii nu incarca imagini si astfel in listing details page zona cu poze nu exista. Deci diferit de ceea ce spui tu.

Dmitry
March 23, 2014, 02:00 PM
Hello Guys,

Please check my screenshot.
Do you want like example.
Thanks.

Ionut Barabasa
March 23, 2014, 05:17 PM
Hello
NO. I want the listing photos in detail page when using mobile version. I repeat if install the flatty template when using mobile version m.domain.com in detail page there are no photos. If i change to a different template for desktop version then in mobile version i can see photos in mobile version Can see in attached image

So to make it very clear: install flatty template then go to the mobile template m.domain.com and you will see that there are no photos in detail page of the listings. Only in category the photos appear.

Have a nice evening!

909

Petrache Nicolae
March 23, 2014, 06:30 PM
Hello Guys,

Please check my screenshot.
Do you want like example.
Thanks.

for me, that should exist by default in the script but your team didn't see it as a issue so i had to add it manualy.

Dmitry
March 24, 2014, 03:36 AM
Hello Ionut Barabasa,

Please provide me site name and ftp login detail. Then i check it and try to help you.

Thanks.

Dmitry
March 24, 2014, 03:39 AM
Hello Petrache Nicolae,

About mobile flatty.
ftp > templates > flatty > css > style.css

find code:


div.gallery > div.preview {
display: none;
}


replace on it:


div.gallery > div.preview {
height: 98px;
width: 130px;
}


Thanks

Ionut Barabasa
March 24, 2014, 10:05 AM
Hello

Dimitry it says here on forum that you re MEMBER not FLYNAX STAFF. So i should send you my login datails?

Have a nice day!

Dmitry
March 24, 2014, 10:38 AM
Hello Ionut,



Dimitry it says here on forum that you re MEMBER not FLYNAX STAFF. So i should send you my login datails?


:) Please submit ticket with access on my name.
Thanks.

Ionut Barabasa
March 24, 2014, 11:07 AM
Hello

I submited the ticket nr PCT-725641

Have a nice day!

Dmitry
March 25, 2014, 03:23 AM
Hello Ionut Barabasa,

We resolve the problem.
We suggest you disable mobile version because responsive template have mobile template. Mobile and main site will have same design(template).

Thanks.

Ionut Barabasa
March 25, 2014, 09:59 AM
Thank you for the fixing

Tariq hamed Ahmed
June 13, 2014, 01:54 AM
Hi,

This is a bug on all the responsive template.
for temporary fix this issue you can disable the social links from your administration panel:
admin panel ==> Configurations ==> Your facebook account URL ==> MAKE IT EMPTY
admin panel ==> Configurations ==> Your twitter account URL ==> MAKE IT EMPTY

Mod security gave me alert and when track the alret and disable those links my image appear normally on the template.

Please tell me if you have better solution.

Thank you,
Tariq

Viktor
June 13, 2014, 05:27 AM
Hello Tariq,

You need create condition for it. Open file: ftp://templates>>your template>>tpl>>footer.tpl

find code:



<a target="_blank" title="{$lang.join_us_on_facebook}" href="{$config.responsive_42_fb}"><img alt="facebook" src="{$rlTplBase}img/blank.gif" class="facebook" /></a>
<a target="_blank" title="{$lang.join_us_on_twitter}" href="{$config.responsive_42_twitter}"><img alt="twitter" src="{$rlTplBase}img/blank.gif" class="twitter" /></a>


and replace to:



{if !empty($config.responsive_42_fb)}
<a target="_blank" title="{$lang.join_us_on_facebook}" href="{$config.responsive_42_fb}"><img alt="facebook" src="{$rlTplBase}img/blank.gif" class="facebook" /></a>
{/if}
{if !empty($config.responsive_42_twitter)}
<a target="_blank" title="{$lang.join_us_on_twitter}" href="{$config.responsive_42_twitter}"><img alt="twitter" src="{$rlTplBase}img/blank.gif" class="twitter" /></a>
{/if}


save and check again.