Okay
  Public Ticket #1602087
Personalizing the template
Closed

Comments

  • Filippo Livorno started the conversation

    Hi there.

    We need help with the following:

    1) How to set the length time of the slider in home page

    2) In OT Projects, where we can change the icons of each Insurance product and description of them.

    Thanks

    Filippo

  •  2,005
    Ocean replied

    Hi,

    you can open file wp-content/theme/insurance/js/insurance.js

    find "slider"

    chagne

    autoPlay : true,

    to

    autoPlay :7000,

    (7000=7s)

    2. Change icon

    Go to insurance => insurance setting => edit

    follow: https://www.awesomescreenshot.com/image/3407387/5b2cb01ab4b052214b58862fb7668960

    find icon: https://fontawesome.com/icons?d=gallery

  • Filippo Livorno replied

    Thank you very much for the reply. Got it!

    Another question: how do I set the order in the OT Insurance Project? I can't understand how to change the order in which the insurance are appearing.

    Thanks

    F

  •  2,005
  • Filippo Livorno replied

    Thank you very much.

    I have 2 other questions:

    1) Is it possible to disable tp-page-header for just certain pages: for example I don't want the page-header on the "About us" page. How can i disable it in html?

    2) In OT-Insurance-Projects I would like to make each "col-md-4 product-thumb" linkable with a href when you hover with the mouse, and not just the title. Where can i set it? 

    Thanks,

    Filippo

  •  2,005
    Ocean replied

    Hi,

    1. Impossible. Now, you only remove subheader all page.

    2. you can send me screenshot your issue and website link .

  • Filippo Livorno replied

    You can find the screenshot attached. I would like that when you hover on each of the product-thumb it's a link, not just the title on the top. Eventually, if not possible, at least on the FA icon.


    Best

    F

  •  2,005
    Ocean replied

    Hi,

    please link website and send me admin account, i'll help for you.

    set private reply

  •   Filippo Livorno replied privately
  •  2,005
    Ocean replied

    Have done.

    please check.

  •   Filippo Livorno replied privately
  •  2,005
    Ocean replied

    Hi,

    I edit file shortcodes.php

    you can find "propj"

    from 

    <div class="tp-product-page font-increase <?php if($i%3==0){echo 'first';} ?>">
      <div class="col-md-4 product-thumb"> 
              <div class="grey-box">
                <h1><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></h1>
                <p><?php echo htmlspecialchars_decode($ins_deta); ?></p>
                <?php if($icon != '') { ?><span class="icon"><i class="fa fa-<?php echo esc_attr($icon); ?>"></i></span><?php } ?>
              </div>
            </div>
           </div>

    to

    <a href="<?php echo get_permalink(); ?>">
      <div class="tp-product-page font-increase <?php if($i%3==0){echo 'first';} ?>">
      <div class="col-md-4 product-thumb"> 
              <div class="grey-box">
                <h1><?php the_title(); ?></h1>
                <p><?php echo htmlspecialchars_decode($ins_deta); ?></p>
                <?php if($icon != '') { ?><span class="icon"><i class="fa fa-<?php echo esc_attr($icon); ?>"></i></span><?php } ?>
              </div>
            </div>
           </div>  
           </a>