This topic contains a post which is marked as Best Answer. Press here if you would like to see it.
*

schilaci

  • **
  • 25 posts
apps download button
« on: June 20, 2022, 05:39:46 PM »
Hi,

I would like to add app stores in the footer. when there are more than 2 languages the change language column display in footer.

Could anyone do it for me without enable another language? Or I would pay (please offer me reasonable fee) for it.

Thanks

*

Vlad7

  • ****
  • 244 posts
Re: apps download button
« Reply #1 on: June 20, 2022, 06:45:53 PM »
do you want your stores to be displayed instead of a list of languages?

*

schilaci

  • **
  • 25 posts
Re: apps download button
« Reply #2 on: June 20, 2022, 08:41:20 PM »
I would say yes.

However, as you know if you only have one language, the change language column don't show up so right?

What I exactly want is put the app store linked images (iOS and andriod) on Fifth column so maybe in the future if I add another language, "change language" display in 4th column but until unable, the app store linked images display on 4th column and responsive on tablet and mobile.

Marked as best answer by frosticek on June 30, 2022, 09:22:11 AM
*

Smithtech

  • ****
  • 219 posts
Re: apps download button
« Reply #3 on: June 21, 2022, 12:59:38 AM »
You can easily put the app code on top of the languages. It is very simple.

Code: [Select]
    <?php if(function_exists('faq_home_link')) { ?>
            <a class="btn-mini" href="<?php echo faq_home_link(); ?>"><?php _e('FAQ''epsilon'); ?></a>
          <?php ?>
        </div>
      </div>
     
       <!-- Insert a DIV right on top of the col pages DIV class -->
      <div class="col socialx">
         
          <!-- Custom Social Contact starts -->
          <h4><?php _e('Connect with us or DOWNLOAD OUR APP in your case''delta'); ?></h4>

<!-- Custom Social Contact ends -->

      </div>
     
     
     
      <div class="col pages">
        <h4><?php _e('Information''epsilon'); ?></h4>

        <?php osc_reset_static_pages(); ?>
       
        <?php while(osc_has_static_pages()) { ?>
          <a href="<?php echo osc_static_page_url(); ?>"><?php echo osc_static_page_title();?></a>
        <?php ?>


To do that, kindly insert a new DIV right on top of this DIV: <div class="col pages">


In this example I used the simply used the social media div class for custom social media options.


If anything, you can put the code for your App store badges here and I will can help you.

*

schilaci

  • **
  • 25 posts
Re: apps download button
« Reply #4 on: June 21, 2022, 04:07:34 PM »
Thanks a lot

I will do it right away!