Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Satinder Singh

    (@satindersingh)

    you have customized a lot we can’t provide support for too customized template because we don’t know exactly how you added customization code.

    Please try below custom css, it may help you to fix footer hidden issue.

    .epta-sidebar-area {
        margin-bottom: 600px;
    }
    Thread Starter Mahadi Hasan Sizan

    (@mahadihassansijan)

    please explain how cab I show in maps in sidebar please send me to code how can I do this.

    Plugin Author Satinder Singh

    (@satindersingh)

    To add map inside sidebar please follow these steps:-

    Please go inside plugin folder >> epta-template >> epta-template-1.php

    around line 69 you will find this code:-

    <div class="epta-map-area">
    	<?php tribe_get_template_part( 'modules/meta/map' );  ?>
    </div>

    cut this code from here and paste inside a “epta-sidebar-box” div where you want to place.

    for example, you can put after this line:-

    <?php tribe_get_template_part( 'modules/meta/venue' ); ?>

    Like this way:-

    <div class="epta-sidebar-box">                     
      	<?php tribe_get_template_part( 'modules/meta/venue' );  ?>
    	<div class="epta-map-area">
    		<?php tribe_get_template_part( 'modules/meta/map' );  ?>
    	</div>
    </div>
    Thread Starter Mahadi Hasan Sizan

    (@mahadihassansijan)

    Thanks It works

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Sticky Siderbar and maps in sidebar’ is closed to new replies.