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

  • 6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Rows have huge margins

    Hi,

    Check now, is it ok?

    Thanks

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: One Page Menu Items + Fixed Header
    @media (max-width:767px){
        .cl_team .team-item .team-media-wrapper .team-overlay{
          transform: translateY(0px) !important;
        -webkit-transform: translateY(0px) !important;
        -moz-transform: translateY(0px) !important;
        opacity: 1 !important; 
        }
    }

    Add this too.

    It’s better if you give me the credentials. I can fix it

    Thanks

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Footer Impressum

    Oh, sorry, now I understand.

    Try changing links from this format: #div-name to https://www.hey-sis.at/#div-name

    Thanks

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: One Page Menu Items + Fixed Header

    Sorry, can you please try to add a space here:

    @media(max-width:767px){

    change to:

    @media (max-width:767px){

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Products & Portofilos URL’s are not working

    Hi,

    Go to Settings -> Permalinks, change from the selected one to the first one, Save, then rollback to the permalink structure you want to use again. Save again. This will fix the issue.

    Also, make sure to install latest version of Theme

    Thanks

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Important Update Required!

    Just mark the reply as Private

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Responsive Menu

    Hi,

    Did you run the latest version of Theme?

    Try this:

    replace file js/jquery-onepage.js with:

    /*
     * jQuery One Page Nav Plugin
     * https://github.com/davist11/jQuery-One-Page-Nav
     *
     * Copyright (c) 2010 Trevor Davis (https://trevordavis.net)
     * Dual licensed under the MIT and GPL licenses.
     * Uses the same license as jQuery, see:
     * https://jquery.org/license
     *
     * @version 3.0.0
     *
     * Example usage:
     * $('#nav').onePageNav({
     *   currentClass: 'current',
     *   changeHash: false,
     *   scrollSpeed: 750
     * });
     */
    
    ;(function($, window, document, undefined){
    
    	// our plugin constructor
    	var OnePageNav = function(elem, options){
    		this.elem = elem;
    		this.$elem = $(elem);
    		this.options = options;
    		this.metadata = this.$elem.data('plugin-options');
    		this.$win = $(window);
    		this.sections = {};
    		this.didScroll = false;
    		this.$doc = $(document);
    		this.docHeight = this.$doc.height();
    	};
    
    	// the plugin prototype
    	OnePageNav.prototype = {
    		defaults: {
    			navItems: 'a',
    			currentClass: 'current',
    			changeHash: false,
    			easing: 'swing',
    			filter: '',
    			scrollSpeed: 750,
    			scrollThreshold: 0.5,
    			begin: false,
    			end: false,
    			scrollChange: false
    		},
    
    		init: function() {
    			// Introduce defaults that can be extended either
    			// globally or using an object literal.
    			this.config = $.extend({}, this.defaults, this.options, this.metadata);
    
    			this.$nav = this.$elem.find(this.config.navItems);
    
    			//Filter any links out of the nav
    			if(this.config.filter !== '') {
    				this.$nav = this.$nav.filter(this.config.filter);
    			}
    
    			//Handle clicks on the nav
    			this.$nav.on('click.onePageNav', $.proxy(this.handleClick, this));
    
    			//Get the section positions
    			this.getPositions();
    
    			//Handle scroll changes
    			this.bindInterval();
    
    			//Update the positions on resize too
    			this.$win.on('resize.onePageNav', $.proxy(this.getPositions, this));
    
    			return this;
    		},
    
    		adjustNav: function(self, $parent) {
    			self.$elem.find('.' + self.config.currentClass).removeClass(self.config.currentClass);
    			$parent.addClass(self.config.currentClass);
    		},
    
    		bindInterval: function() {
    			var self = this;
    			var docHeight;
    
    			self.$win.on('scroll.onePageNav', function() {
    				self.didScroll = true;
    			});
    
    			self.t = setInterval(function() {
    				docHeight = self.$doc.height();
    
    				//If it was scrolled
    				if(self.didScroll) {
    					self.didScroll = false;
    					self.scrollChange();
    				}
    
    				//If the document height changes
    				if(docHeight !== self.docHeight) {
    					self.docHeight = docHeight;
    					self.getPositions();
    				}
    			}, 250);
    		},
    
    		getHash: function($link) {
    			return $link.attr('href').split('#')[1];
    		},
    
    		getPositions: function() {
    			var self = this;
    			var linkHref;
    			var topPos;
    			var $target;
    
    			self.$nav.each(function() {
    				linkHref = self.getHash($(this));
    				$target = $('#' + linkHref);
    
    				if($target.length) {
    					topPos = $target.offset().top;
    					self.sections[linkHref] = Math.round(topPos);
    				}
    			});
    		},
    
    		getSection: function(windowPos) {
    			var returnValue = null;
    			var windowHeight = Math.round(this.$win.height() * this.config.scrollThreshold);
    
    			for(var section in this.sections) {
    				if((this.sections[section] - windowHeight) < windowPos) {
    					returnValue = section;
    				}
    			}
    
    			return returnValue;
    		},
    
    		handleClick: function(e) {
    			var self = this;
    			var $link = $(e.currentTarget);
    			var $parent = $link.parent();
    			var newLoc = '#' + self.getHash($link);
    
    			if(!$parent.hasClass(self.config.currentClass)) {
    				//Start callback
    				if(self.config.begin) {
    					self.config.begin();
    				}
    
    				//Change the highlighted nav item
    				self.adjustNav(self, $parent);
    
    				//Removing the auto-adjust on scroll
    				self.unbindInterval();
    
    				//Scroll to the correct position
    				self.scrollTo(newLoc, function() {
    					//Do we need to change the hash?
    					if(self.config.changeHash) {
    						window.location.hash = newLoc;
    					}
    
    					//Add the auto-adjust on scroll back in
    					self.bindInterval();
    
    					//End callback
    					if(self.config.end) {
    						self.config.end();
    					}
    				});
    			}
    
    			e.preventDefault();
    		},
    
    		scrollChange: function() {
    			var windowTop = this.$win.scrollTop();
    			var position = this.getSection(windowTop);
    			var $parent;
    
    			//If the position is set
    			if(position !== null) {
    				$parent = this.$elem.find('a[href$="#' + position + '"]').parent();
    
    				//If it's not already the current section
    				if(!$parent.hasClass(this.config.currentClass)) {
    					//Change the highlighted nav item
    					this.adjustNav(this, $parent);
    
    					//If there is a scrollChange callback
    					if(this.config.scrollChange) {
    						this.config.scrollChange($parent);
    					}
    				}
    			}
    		},
    
    		scrollTo: function(target, callback) {
    			var offset = $(target).offset().top-75;
    
    			$('html, body').animate({
    				scrollTop: offset
    			}, this.config.scrollSpeed, this.config.easing, callback);
    		},
    
    		unbindInterval: function() {
    			clearInterval(this.t);
    			this.$win.unbind('scroll.onePageNav');
    		}
    	};
    
    	OnePageNav.defaults = OnePageNav.prototype.defaults;
    
    	$.fn.onePageNav = function(options) {
    		return this.each(function() {
    			new OnePageNav(this, options).init();
    		});
    	};
    
    })( jQuery, window , document );

    Check and let me know

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Live this is to start a private thread as requested by Ludjon Roshi ref Handel

    We just released a new update. Can you please update to the new version and then check what of these issues were fixed?

    Thanks

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Update theme

    I just uploaded a new version 2.1.1, when you get the new email, configure Envato market plugin and install the new update, it’s important

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: How to add Product Search to Shop Page

    Fixed,

    Check now

    Thanks

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Update theme

    Hi,

    Can you please give me credentials to check this?

    Theme name should be Picante without number. For theme update you have two possibilities:

    1) Using Envato Market plugin

    2) Upload directly with FTP

    Thanks

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Footer Impressum

    Sorry for the delay, we were on holiday

    I clicked the Impressum link in the footer and it works.

    Did you change it from nav menu to widget_pages?

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: One Page Menu Items + Fixed Header

    Sorry, I checked the website but didn’t find the code I send to you.

    Can you please add the custom code and let me see how it works

    Thanks

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Products are not shown on category page

    Fixed, but make sure to update on the new release

    Thanks

    6 years, 3 months ago Ludjon
    Keymaster
    in reply to: Footer Impressum

    Just checked the onepage functionality and it works. Maybe i missed something

Viewing 15 posts - 616 through 630 (of 1,583 total)
← 1 2 3 … 41 42 43 … 104 105 106 →

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