heatmap
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [HeatMap AdAptive] Homepage show posts without inline adsNot sure what you mean ‘first post summary’.
Are you referring to the ‘featured page’ on the home page?Forum: Themes and Templates
In reply to: [HeatMap AdAptive] Need help with Structured Data Testing ToolGlad you got it fixed.
Don’t forget to leave a star rating and review thanks.Forum: Themes and Templates
In reply to: [HeatMap AdAptive] Need help with Structured Data Testing ToolI was assuming you would read the code contained in the function I pointed you to, not literally try and change the line containing the function 😉
Try changing…
print '<time class="entry-date" datetime="' . esc_attr( get_the_date( 'c' ) ) . '">' . esc_html( get_the_date() ) . '</time>';to
print '<time class="entry-date updated" datetime="' . esc_attr( get_the_date( 'c' ) ) . '">' . esc_html( get_the_date() ) . '</time>';Forum: Themes and Templates
In reply to: [HeatMap AdAptive] Need help with Structured Data Testing ToolJust look in /inc/template-tags.php
Then edit the time related parts of heatmapthemead_posted_on() function to suit what you want.
glad you got it working.
I’m not a mega menu or wp-bulletin-board user so I cant give specifics, but in relation to how you would call an external file into heatmap adaptive…
The theme is hook based, so in order to include something external into it you should create a function for the external file include and then hook it into the relevant part of the theme.
I’d recommend you start with page.php as your base template (copy and rename to wpbb-template.php – not sure what you are trying to do in your code example above though)
so you’d make a function such as:
function get_wpbb () { require_once(ABSPATH.'/wp-content/plugins/wp-bulletin-board/php/wpbb-forum.php'); }maybe add that code to /inc/wp-tweaks.php
Then in your template hook the function into the theme
add_action('heatmapthemead_the_content_hook', 'get_wpbb');Remove any other bits of the template you dont need. So maybe…
<?php /* This file is part of HeatMap Theme AdAptive See license.txt (distributed with this file) for details of license, contributors, copyright notices, credits and trademarks. */ get_header(); add_action('heatmapthemead_the_content_hook', 'get_wpbb'); get_sidebar(); get_footer(); get_template_part( 'unhook' ); get_template_part( 'unhook-custom' ); get_template_part( 'render' ); ?>Forum: Alpha/Beta/RC
In reply to: jquery-ui-dialog script moved out of 3.9 latest build?Thanks for that Mika.
If anything happens with that let us know if you can. Ta 🙂
Much appreciated.Forum: Alpha/Beta/RC
In reply to: jquery-ui-dialog script moved out of 3.9 latest build?Just as a further update for others who come across this thread…
When jquery-ui-dialog is used in a theme or plugin but the function is not found in 3.9 it can create a javascript error which can then potentially block other dynamic parts of the page from working (at least it did for my plugin until I fixed it for 3.9).
So for instance if the plugin adds a popup dialog with a tinymce button in the post page, if the jquery dialog function is not enqueued then side effects I noticed were as follows:
– items in the ‘Published’ metabox did not slide open as they should
– this includes the ‘status’ and ‘visibility’ fieldsSo if you suddenly notice that items in the publish metabox do not work, then have look to see if its because jquery dialog has not been enqueued in 3.9
Forum: Alpha/Beta/RC
In reply to: jquery-ui-dialog script moved out of 3.9 latest build?…hears sound of a thousand plugin owners dashing to awesome page above to fix their jquery dialogs…
…closely followed by wailing and gnashing of teeth after release of 3.9 from users of plugins that don’t get updated 🙂
Forum: Alpha/Beta/RC
In reply to: jquery-ui-dialog script moved out of 3.9 latest build?nice one! 😉
Forum: Alpha/Beta/RC
In reply to: jquery-ui-dialog script moved out of 3.9 latest build?Thanks Mika,
Its Click Missile plugin but its not in the repo.
Its got a tinymce button which pops up a box so ad short codes can be inserted.
Yes, I now see the script is there in 3.9 and am now enqueueing it from within the plugin rather than relying on wp to do it by default.
It always seemed to work though in previous WP versions without having to enqueue it in the plugin so other plugins with similar functionality may break if not updated to cater for the change.
For others reading this with similar jquery dialog issues when 3.9 drops
the following code was required to make things work again….wp_enqueue_script( 'jquery-ui-dialog' ); wp_enqueue_style( 'wp-jquery-ui-dialog' );Forum: Themes and Templates
In reply to: [HeatMap AdAptive] Problem with Heatmap Adaptive Featured ImageThe question was answered on a thread previously
http://wordpress.org/support/topic/reducing-the-size-of-thumbnail-and-selecting-featured-page?replies=7The theme was originally designed to look great with featured images like in the demo http://heatmaptheme.com/heatmap-adaptive-demo/
(nice wide ones spanning the top of the post.)Forum: Themes and Templates
In reply to: [HeatMap AdAptive] Apperance on mobile deviceIts not actually a problem with the theme.
The child theme that you have is messing things up.
The CSS mods that it contains are not correct.Not sure where you got that child theme from but its not one of mine.
Also whatever you are doing with the Javascript may be interfering with operation of the menus. Not sure if you’re using some kind of ‘Javascript to the bottom plugin’.
Suggest you remove the child theme, turn off any excess plugins and then start modding the theme from there if you want to change how the basic theme works.
If you want to load a page in a widget have you tried a wordpress page widget plugin. There seems to be some available for the googling of.
Nope, the css above should do it,
but you now seem to be running a different theme so I can’t see what you’ve tried to do.