Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 10 years ago Ruco
    Keymaster
    in reply to: Potfolio

    Hello,

    You must reset the permalinks. Go to permalinks, select the options you want and click save.

    Let us know if you need further help.

    regards!

    10 years ago Ruco
    Keymaster
    in reply to: Header

    Hello,

    have you installed dummy data? If you install them then your site will look like it and you can continue customizing it as you want.
    You can watch the video tutorials on dummy data install https://support.codeless.co/video-tutorials/

    Let us know if you need further help.

    Best regards!

    10 years ago Ruco
    Keymaster
    in reply to: Tower Custom Heading Font Options different from Tower Theme Settings

    Hello,

    Custom Heading element is a visual composer element and it has the default visual composer settings, we have’t changed it. You can use one of our elements instead, like Heading element. It gets the font from the ones you have set at theme options -> typography.

    Regards!

    10 years ago Ruco
    Keymaster
    in reply to: Problem with JQuery Datepicker functionality??

    Hello,

    Maybe it conflicts with some scrips of the theme. I can give it a look if you can show us your site credentials (in a private reply).

    Best regards!

    10 years ago Ruco
    Keymaster
    in reply to: Portfolio Options

    Hello,

    Some scripts/style-sheets of the theme are missing or don’t have the sufficient access rights.

    Here is a screenshot of debugging:
    https://postimg.org/image/prsrsvz69/

    Check theme and let us now if you need further help.

    best regards!

    10 years ago Ruco
    Keymaster
    in reply to: Responsive Issues

    Hello,

    Sorry, my fault. Edit again the file. Instead the previous code add this:

    /*-----------------------Google map disable zoom on scroll----------------------*/
    function codelessDisableMapZoom(){
    	"use strict";
      // Disable scroll zooming and bind back the click event
      var onMapMouseleaveHandler = function (event) {
        var that = $(this);
    
        that.on('click', onMapClickHandler);
        that.off('mouseleave', onMapMouseleaveHandler);
        that.find('iframe.googlemap').css("pointer-events", "none");
      }
    
      var onMapClickHandler = function (event) {
        var that = $(this);
    
        // Disable the click handler until the user leaves the map area
        that.off('click', onMapClickHandler);
    
        // Enable scrolling zoom
        that.find('iframe.googlemap').css("pointer-events", "auto");
    
        // Handle the mouse leave event
        that.on('mouseleave', onMapMouseleaveHandler);
      }
    
      // Enable map zooming with mouse scroll when the user clicks the map
      $('.row-google-map').on('click', onMapClickHandler);
    }

    Then add this line:

    codelessDisableMapZoom();

    after this:

    /* Fullwidth Google Map */
    	codelessFullwidthMap();

    Best regards!

    10 years ago Ruco
    Keymaster
    in reply to: Sticky Nav

    Hello,

    Please add this custom css code:

    .header_12.open .full_nav_menu {
        position: fixed;
        margin-top: 50px;
    }

    Best regards!

    10 years ago Ruco
    Keymaster
    in reply to: Bugs on minimal 2

    Hello,

    1. Make sure you have added the correct link format. Ex.

    https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d24178.238728280507!2d-74.03642767030202!3d40.755869437983435!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c2576b66c69541%3A0x8559a90ad721149!2s90+Charles+St!5e0!3m2!1sen!2sus!4v1401374000847&output=embed

    2. You must set the borders at specular -> styling options -> elements styling.

    3. You can select center position at codeless slider -> content.

    Best regards!

    10 years ago Ruco
    Keymaster
    in reply to: Adding jquery

    Hello,

    I fixed it. Edited header.php file on parent theme.

    Best regards!

    10 years ago Ruco
    Keymaster
    in reply to: Problem with opened mobile menu

    Hello,

    Have you added any custom css code? The header is not fixed by default on responsive.

    Regards!

    10 years ago Ruco
    Keymaster
    in reply to: Problem with opened mobile menu

    Hello,

    Have you added any custom css code? The header is not fixed by default on responsive.

    Regards!

    10 years ago Ruco
    Keymaster
    in reply to: hiding "0 comment" on testimonial pages

    Hello,

    Please add this css code:

    #comments h4 {
    display: none;
    }

    Best regards!

    10 years ago Ruco
    Keymaster
    in reply to: language problem

    Hello,

    What element is it? How have you added the read more?

    Some words are translated automatically in the language of you wordpress (the ones included in .po file). If you don;t want to translate them, then you must edit the the files to exclude that word. It doesn’t seem a theme word.

    Best regards!

    10 years ago Ruco
    Keymaster
    in reply to: Onepage Menu links

    Hello,

    I can see it now.

    Please try this solution. Edit the file ‘js/main.js’

    Find the function:

    function codelessOnePage(){
    	"use strict";
    	if(window.location.hash) {
    	  	$('nav .menu li a:not([href="'+window.location+'"])').parent().removeClass('current-menu-item');
    	} else {
    	  // Fragment doesn't exist
    	}
    	$('nav .menu').onePageNav({
    	    currentClass: 'current-menu-item',
    	    changeHash: false,
    	    scrollSpeed: 750,
    	    scrollThreshold: 0.5,
    	    
    	});
    }

    Replace it with:

    function codelessOnePage(){
    	"use strict";
    	if(window.location.hash) {
    	  	$('nav .menu li a:not([href="'+window.location+'"])').parent().removeClass('current-menu-item');
    	} else {
    	  // Fragment doesn't exist
    	}
    	$('nav .menu').onePageNav({
    	    currentClass: 'current-menu-item',
    	    changeHash: true,
    	    scrollSpeed: 750,
    	    scrollThreshold: 0.5,
    	    scrollChange: function($currentListItem) {
            $('nav .menu li a').parent().removeClass('current-menu-item');
        } 
    	});
    }

    let us know.

    Best regards!

    10 years ago Ruco
    Keymaster
    in reply to: Problem with JQuery Datepicker functionality??

    Hello,

    We don’t offer support for third party plugins. We use Contact Form 7 as contact form plugin.

    Best regards!

Viewing 15 posts - 1,741 through 1,755 (of 3,073 total)
← 1 2 3 … 116 117 118 … 203 204 205 →

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password