Title: litedesigns's Replies | WordPress.org

---

# litedesigns

  [  ](https://wordpress.org/support/users/taymax/)

 *   [Profile](https://wordpress.org/support/users/taymax/)
 *   [Topics Started](https://wordpress.org/support/users/taymax/topics/)
 *   [Replies Created](https://wordpress.org/support/users/taymax/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/taymax/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/taymax/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/taymax/engagements/)
 *   [Favorites](https://wordpress.org/support/users/taymax/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Creating Gallery Page Template From Custom Post Type Images](https://wordpress.org/support/topic/creating-gallery-page-template-from-custom-post-type-images/)
 *  [litedesigns](https://wordpress.org/support/users/taymax/)
 * (@taymax)
 * [14 years ago](https://wordpress.org/support/topic/creating-gallery-page-template-from-custom-post-type-images/#post-2817847)
 * This may help….
 * [http://wordpress.org/extend/plugins/wp-get-post-image/](http://wordpress.org/extend/plugins/wp-get-post-image/)
 * install this plugin and add the following code.
 * it gets the images uploaded with posts/pages/custom post…..
 *     ```
       <?php
       // use this example wherever you have access to $post->ID, e.g. the WordPress loop
       if(function_exists('wp_get_post_image'))
           echo wp_get_post_image('width=450&css=alignleft&parent_id='.$post->ID);
       ?>
       ```
   
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Creating Gallery Page Template From Custom Post Type Images](https://wordpress.org/support/topic/creating-gallery-page-template-from-custom-post-type-images/)
 *  [litedesigns](https://wordpress.org/support/users/taymax/)
 * (@taymax)
 * [14 years ago](https://wordpress.org/support/topic/creating-gallery-page-template-from-custom-post-type-images/#post-2817846)
 * check if images are available through wordpress media libarary.
    Also check src
   of the image(maybe the url is incorrect).
 * >  “We cannot seem to get the images that are uploaded through the custom post
   > type to be displayed within the gallery page template.
 * This is not very helpful. provide any snipet you may have for uploading the image.
 * If the images are uploaded you may need to insert the images into the post… please
   provide more information on the template and how the images are uploaded and 
   retrived
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Heatmap] [Plugin: WP Super Heatmap] Checkbox doesnt (un)check](https://wordpress.org/support/topic/plugin-wp-super-heatmap-checkbox-doesnt-uncheck/)
 *  Thread Starter [litedesigns](https://wordpress.org/support/users/taymax/)
 * (@taymax)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-wp-super-heatmap-checkbox-doesnt-uncheck/#post-2653457)
 * Temp solution for # problems (DOESNT RECORD # CLICKS!!!) :
    Replace this : window.
   setTimeout(function(){document.location.href=url;}, 1000); // timeout and waiting
   until effect is complete
 * With :
 * if (jQuery(event.target).closest(‘a’).attr(‘href’) != ‘#’) {
    window.setTimeout(
   function(){document.location.href=url;}, 1000); // timeout and waiting until 
   effect is complete }
 * This if statement stop the code from running where ever # hash is found in href
   of the link “a” element. When using this clicks do not seem to get registered
   on the clicked #anchor… although a message is sent to the server… Im really tired
   atm. ill work on this later. I think the developer of the plugin is on holiday…
   =P
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Heatmap] [Plugin: WP Super Heatmap] Checkbox doesnt (un)check](https://wordpress.org/support/topic/plugin-wp-super-heatmap-checkbox-doesnt-uncheck/)
 *  Thread Starter [litedesigns](https://wordpress.org/support/users/taymax/)
 * (@taymax)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-wp-super-heatmap-checkbox-doesnt-uncheck/#post-2653456)
 * Hi Guys, ok the problem is in file wp_super_heatmap_js.js in “js” folder.
 * change : event.preventDefault(); on line 7
 * into
    $(“a”).click(function(ev) { ev.preventDefault(); });
 * event.preventDefault(); prevents click actions on ALL the element. by adding 
   this function you can specify “a” element (hyperlink) to stop from its default
   action which allows for recording of the click on links; this action is later
   re-assigned… so just add this function and you should be ook.
 * i have also found another issue with # sign which make the page to go to top 
   whenever my “anythingSlider” slides numbers are clicked on.
 * Tip : if you have a fast server reduce 1000 ‘s at the bottom of the page which
   delays the clicks on the links allowing for the recording of the click
 * Im not responsible for any problems caused. but i can tell you i use the plugin
   on pretty large sites and it seems ok atm =)

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