hp.rooms
Forum Replies Created
-
Forum: Plugins
In reply to: [Woo Store Vacation] Just not working. At all.I have the same issue, but I am using a child theme with customization. Hoping the creator just updates the plugin with an on/off button and not require date range specific.
Forum: Plugins
In reply to: [Woo Store Vacation] Date chosing issueI have the same issue. The start date/end dates are all grayed out and you cannot select a date or enter one in manually. Ive tried disabling the WPFC caching plugin but that had no affect on the plugin. Can you just change it to an on/off button instead of specific date range required?
Forum: Plugins
In reply to: [Child Theme Configurator] site responsiveness goes away with child themeawesome, will do. thanks for the quick response jf!
Forum: Themes and Templates
In reply to: Locating index line 68 to change padding on imagelocated it. thanks.
Forum: Fixing WordPress
In reply to: Removing div.page-title from wordpress siteWorked like a charm! Thank you Youcef!!
jojaba, If I add this to my footer.php file what section do I need to edit so it reflects in my calendar page???
<?php if(is_single()) : ?>
<script>
/* Adding title to each day (td) for calendar */
var get_title_func = function() {
jQuery(“td.gce-has-events”).each(function(){
// Finding infos content
var source_td = jQuery(this);
var qt_content = source_td.find(‘.gce-event-info h2’);
// if multiple events on one day we have to loop
qt_content.each(function() {
var c = jQuery(this).html()
source_td.append(‘<div style=”font-size: 0.8em; margin: 10px; padding: 2px 5px; border-radius: 4px; background: #FFF”>’ + c + ‘</div>’);
});
});
}
// Launch function after window load and after ajax request
jQuery(window).load(get_title_func);
jQuery(document).ajaxSuccess(get_title_func);
</script>
<?php endif; ?>