Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. // Hooked in theme functions
  2.  
  3. function fcwp_display_single_product_map(){
  4. echo do_shortcode('[facetwp map="true"]');
  5. }
  6. add_action('woocommerce_after_single_product_summary', 'fcwp_display_single_product_map', 15);
  7.  
  8. function fcwp_display_single_product(){
  9. echo do_shortcode('[facetwp facet="activity"]');
  10. }
  11. add_action('woocommerce_after_single_product_summary', 'fcwp_display_single_product', 15);
  12.  
  13. function display_single_product_address(){
  14. echo get_geocode_address($post->ID);
  15. }
  16. add_action('woocommerce_single_product_summary', 'display_single_product_address', 40);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement