-
Author
-
January 5, 2016 at 01:33 #96301
jacobmark
ParticipantTrying to add icons in a column with popover on each, but the popover is not displaying for some reason.
January 5, 2016 at 15:05 #96352sharmstr
ModeratorThere isnt any issues with the current version of Kleo and VC so perhaps you have a plugin conflict. Have you checked?
http://seventhqueen.com/themes/kleo/tooltips-popovers/
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 5, 2016 at 17:25 #96382jacobmark
ParticipantI don’t believe its a plugin conflict because I have a template/test page which its working on, and another which its not.
January 5, 2016 at 17:32 #96387sharmstr
ModeratorWhere are the different pages? What’s different about them?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 5, 2016 at 17:52 #96395jacobmark
ParticipantNot much difference, actually all the row/column settings are preety much identical for the first 2 rows
http://nycbeachbums.com/test
http://nycbeachbums.com/hunter-mountain-ski-snowboard-trip-duplicate/January 5, 2016 at 18:02 #96398sharmstr
ModeratorThat page is throwing jquery error on this code
COPY CODE// rates for each day var rates = []; // available dates for booking var availableDates = []; function available(date) { dateS = ("0" + date.getDate()).slice(-2); monthS = ("0" + (date.getMonth() + 1)).slice(-2); dmy = dateS + "-" + monthS + "-" + date.getFullYear(); if (jQuery.inArray(dmy, availableDates) !== -1) { return [true, "","Available"]; } else { return [false,"","unAvailable"]; } } var limit = 1000; jQuery(document).ready(function($){ $( "#date" ).datepicker({ beforeShowDay: available, dateFormat: "dd-mm-yy" }); // code to make form sticky $(window).scroll(sticky_relocate); sticky_relocate(); limit = jQuery(".limit").offset().top - 1500; console.log(limit); // set width wid = jQuery(".booking-form").width(); console.log(wid); jQuery(".book").css("width",wid+"px"); }); function sticky_relocate() { var window_top = jQuery(window).scrollTop(); var div_top = jQuery(".sticky-anchor").offset().top; adjuster = 200; if( jQuery(window).width() < 1200 ){ adjuster = 280; } if( jQuery(window).width() < 990 ){ adjuster = 110; } if( jQuery(window).width() < 768 ){ adjuster = 0; } if ( adjuster!=0 && window_top + adjuster > div_top && window_top < 2100 ) { jQuery(".book").addClass("stick"); jQuery(".book").css("top",adjuster+"px"); } else { jQuery(".book").removeClass("stick"); } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 5, 2016 at 18:02 #96399sharmstr
Moderatormoving because this isnt a kleo bug
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.