This topic has 8 replies, 2 voices, and was last updated 9 years by jacobmark.

  • Author
  • #96301
     jacobmark
    Participant

    Trying to add icons in a column with popover on each, but the popover is not displaying for some reason.

    #96352
     sharmstr
    Moderator

    There 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #96382
     jacobmark
    Participant

    I don’t believe its a plugin conflict because I have a template/test page which its working on, and another which its not.

    #96387
     sharmstr
    Moderator

    Where 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #96395
     jacobmark
    Participant

    Not 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/

    #96398
     sharmstr
    Moderator

    That 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #96399
     sharmstr
    Moderator

    moving 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #96674
     jacobmark
    Participant

    Jquery error was fixed but now the popover title is not displaying? I’m currently using the child theme to make all edits, could this be the problem?

    http://nycbeachbums.com/test

    #96677
     jacobmark
    Participant

    Sorry disregard previous message, it was a caching issue.

Viewing 9 posts - 1 through 9 (of 9 total)

The forum ‘General questions’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?