Viewing 15 posts - 1 through 15 (of 21 total)
  • Author
    Posts
  • mohand Friend
    #206389

    Hi,

    Suddenly the background images for all ACM it don’t show in the frontend – i doubled checked folder permissions 775 and file permissions 664. Not sure why it’s not working well

    Please check this page http://mh4web.com/jabour/ feature module (services)

    and this page http://mh4web.com/jabour/index.php?option=com_content&view=featured&layout=uber:blank&Itemid=716

    consturion-aboutus intro

    Please check it as quick as possible, tomorrow my forum access expires

    Saguaros Moderator
    #570909

    Hi @mohand,

    You can PM me ftp account of your site, I will take a look

    mohand Friend
    #570950

    Hi

    I sent you the details. It would be great if this can be helped with now as i don’t know what time my subscription expires in joomlart.

    Regards,

    Saguaros Moderator
    #571030

    I couldn’t access file/folder of your site with FTP account you sent, please re-check.

    Saguaros Moderator
    #736078

    I couldn’t access file/folder of your site with FTP account you sent, please re-check.

    jessehunt Friend
    #694923

    Hello. I am having this same issue. Was it ever resolved? Please let me know, thanks!

    jessehunt Friend
    #750447

    Hello. I am having this same issue. Was it ever resolved? Please let me know, thanks!

    Saguaros Moderator
    #695215

    @jessehunt: you should post your site’s URL here and screenshot so that we can see the issue. And if possible, PM me the admin and ftp account of your site so that I can take a look.

    Saguaros Moderator
    #750495

    @jessehunt: you should post your site’s URL here and screenshot so that we can see the issue. And if possible, PM me the admin and ftp account of your site so that I can take a look.

    Saguaros Moderator
    #695230

    Pls ignore my above message, I’ve seen your PM.

    I checked your site and see that there is problem in the file: /root/templates/uber/acm/cta/tmpl/style-2.php

    At line 3, I changed:

    $ctaBackground = 'background-image: url("'.$ctaImg.'"); background-position: center bottom; background-repeat: no-repeat; background-size: auto;';

    to:


    $ctaBackground = 'background-image: url('.$ctaImg.'); background-position: center bottom; background-repeat: no-repeat; background-size: auto;';

    and the background image is showing on your site now.

    Saguaros Moderator
    #750510

    Pls ignore my above message, I’ve seen your PM.

    I checked your site and see that there is problem in the file: /root/templates/uber/acm/cta/tmpl/style-2.php

    At line 3, I changed:

    $ctaBackground = 'background-image: url("'.$ctaImg.'"); background-position: center bottom; background-repeat: no-repeat; background-size: auto;';

    to:


    $ctaBackground = 'background-image: url('.$ctaImg.'); background-position: center bottom; background-repeat: no-repeat; background-size: auto;';

    and the background image is showing on your site now.

    jessehunt Friend
    #695708

    Hi. The fix you made corrected that one ACM module style but I have this problem on several other ACM modules. Here is a screenshot of a module configured as Features Intro, Style 9. You’ll see the background image from the module tab still doesn’t show up. Thanks for your help. I’m guessing this is a widespread issue effecting most of the various ACM Modules styles. What is strange is that it does not effect all of them, just some.

    Maybe I just need to revise the code and add the “;” at the end as you did to correct these when they come up?

    jessehunt Friend
    #750777

    Hi. The fix you made corrected that one ACM module style but I have this problem on several other ACM modules. Here is a screenshot of a module configured as Features Intro, Style 9. You’ll see the background image from the module tab still doesn’t show up. Thanks for your help. I’m guessing this is a widespread issue effecting most of the various ACM Modules styles. What is strange is that it does not effect all of them, just some.

    Maybe I just need to revise the code and add the “;” at the end as you did to correct these when they come up?

    jessehunt Friend
    #695751

    Following up on this, I just checked the PHP file for the background image on Style 9 and it appears to correctly include the
    "
    after the
    'background-image: url(
    section. It looks like this is what you had changed to correct this issue in the other layout.

    Here’s the entire code from /templates/uber/acm/features-intro/tmpl/style-9.php

    <?php
    $featuresImg = $helper->get('img-features');
    $featuresBackground = 'background-image: url("'.$featuresImg.'"); background-repeat: no-repeat; background-size: auto auto; background-position: center center;';
    ?>
    <div class="section-inner <?php echo $helper->get('block-extra-class'); ?>" <?php if($featuresImg): echo 'style="'.$featuresBackground.'"'; endif; ?>>
    <div class="acm-features style-9 <?php echo $helper->get('features-style'); ?>" >
    <div class="container">
    <div class="row">
    <div class="col-md-6">
    <?php if($module->showtitle): ?>
    <h2 class="features-description"><?php echo $module->title ?></h2>
    <?php endif ; ?>
    <?php if($helper->get('block-intro')): ?>
    <p><?php echo $helper->get('block-intro'); ?></p>
    <?php endif; ?>

    <?php $count = $helper->getRows('data.title'); ?>
    <?php for ($i=0; $i<$count; $i++) : ?>

    <div class="features-item">

    <?php if($helper->get('data.font-icon', $i)) : ?>
    <div class="font-icon">
    <i class="<?php echo $helper->get('data.font-icon', $i) ; ?>"></i>
    </div>
    <?php endif ; ?>

    <?php if($helper->get('data.img-icon', $i)) : ?>
    <div class="img-icon">
    <img src="<?php echo $helper->get('data.img-icon', $i) ?>" alt="" />
    </div>
    <?php endif ; ?>

    <?php if($helper->get('data.title',$i)) : ?>
    <h3><?php echo $helper->get('data.title', $i) ?></h3>
    <?php endif ; ?>

    <?php if($helper->get('data.description',$i)) : ?>
    <p><?php echo $helper->get('data.description', $i) ?></p>
    <?php endif ; ?>
    </div>
    <?php endfor ?>
    </div>
    </div>
    </div>
    </div>
    </div>

    Can you please review and let me know what needs to be changed to correct the bg image?

    jessehunt Friend
    #750820

    Following up on this, I just checked the PHP file for the background image on Style 9 and it appears to correctly include the
    "
    after the
    'background-image: url(
    section. It looks like this is what you had changed to correct this issue in the other layout.

    Here’s the entire code from /templates/uber/acm/features-intro/tmpl/style-9.php

    <?php
    $featuresImg = $helper->get('img-features');
    $featuresBackground = 'background-image: url("'.$featuresImg.'"); background-repeat: no-repeat; background-size: auto auto; background-position: center center;';
    ?>
    <div class="section-inner <?php echo $helper->get('block-extra-class'); ?>" <?php if($featuresImg): echo 'style="'.$featuresBackground.'"'; endif; ?>>
    <div class="acm-features style-9 <?php echo $helper->get('features-style'); ?>" >
    <div class="container">
    <div class="row">
    <div class="col-md-6">
    <?php if($module->showtitle): ?>
    <h2 class="features-description"><?php echo $module->title ?></h2>
    <?php endif ; ?>
    <?php if($helper->get('block-intro')): ?>
    <p><?php echo $helper->get('block-intro'); ?></p>
    <?php endif; ?>

    <?php $count = $helper->getRows('data.title'); ?>
    <?php for ($i=0; $i<$count; $i++) : ?>

    <div class="features-item">

    <?php if($helper->get('data.font-icon', $i)) : ?>
    <div class="font-icon">
    <i class="<?php echo $helper->get('data.font-icon', $i) ; ?>"></i>
    </div>
    <?php endif ; ?>

    <?php if($helper->get('data.img-icon', $i)) : ?>
    <div class="img-icon">
    <img src="<?php echo $helper->get('data.img-icon', $i) ?>" alt="" />
    </div>
    <?php endif ; ?>

    <?php if($helper->get('data.title',$i)) : ?>
    <h3><?php echo $helper->get('data.title', $i) ?></h3>
    <?php endif ; ?>

    <?php if($helper->get('data.description',$i)) : ?>
    <p><?php echo $helper->get('data.description', $i) ?></p>
    <?php endif ; ?>
    </div>
    <?php endfor ?>
    </div>
    </div>
    </div>
    </div>
    </div>

    Can you please review and let me know what needs to be changed to correct the bg image?

Viewing 15 posts - 1 through 15 (of 21 total)

This topic contains 21 replies, has 3 voices, and was last updated by  Saguaros 9 years ago.

We moved to new unified forum. Please post all new support queries in our New Forum