New Landing How can we help? Themeforest Theme Support Neighborhood Get Shipping Information Pop-up on single product page

Viewing 4 posts - 1 through 4 (of 4 total)
  • #162895
    huntingensemble
    Member
    Post count: 318

    Hi Guys,

    I would like to get the shipping information pop-up (the one you get while checking out) placed on the single product page.

    When I try to change the code in meta.php:
    <span class="need-help"><?php _e("Need Help?", "swiftframework"); ?> <a href="#email-form" class="inline" data-toggle="modal"><?php _e("Contact Us", "swiftframework"); ?></a></span>

    I can’t get it to work when I replace it with information from sf-woocommerce.php
    <li><a href="#shipping-information" class="inline" data-toggle="modal"><?php _e("Shipping Information", "swiftframework"); ?></a></li>

    Can you provide a code snippet that outputs the shipping information pop-up on the single product page (meta.php)?

    Thanks for the help!
    Joost

    #162932
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please find this code:-
    <span class="need-help"><?php _e("Need Help?", "swiftframework"); ?> <a href="#email-form" class="inline" data-toggle="modal"><?php _e("Contact Us", "swiftframework"); ?></a></span>

    Change to:-
    <span class="need-help"><?php _e("Need Help?", "swiftframework"); ?><a href="#shipping-information" class="inline" data-toggle="modal"><?php _e("Shipping Information", "swiftframework"); ?></a></span>

    And find this code:-

    <div id="feedback-form" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="feedback-form-modal" aria-hidden="true">
    

    Change with:-

    <div id="shipping-information" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="shipping-modal" aria-hidden="true">
    				<div class="modal-header">
    					<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    					<h3 id="shipping-modal"><?php _e("Shipping information", "swiftframework"); ?></h3>
    				</div>
    				<div class="modal-body">
    					
    					<?php echo do_shortcode($options['shipping_modal']); ?>
    					
    				</div>
    			</div>
    
    <div id="feedback-form" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="feedback-form-modal" aria-hidden="true">
    #163002
    huntingensemble
    Member
    Post count: 318

    Works like a charm! Thanks Mohammad!

    #163006
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    You most welcome.
    Thanks
    Mohammad

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register