Forum Replies Created

Viewing 30 posts - 1,231 through 1,260 (of 23,923 total)
  • Author
    Posts
  • in reply to: Custom Social Icons #639572

    Hey,

    You’re missing some codes, what icon are you trying to add? is it a custom image (jpg/png) or a custom font?

    Best regards,
    Josue

    in reply to: HR after color section is wrapped in .content #639571

    Hey,

    Don’t use another element, instead set a custom ID to one of the sections and use this CSS:

    #bordered-section{
    border-top: 3px solid gray;
    }

    Best regards,
    Josue

    Hi,

    Can you please check if the issue persists with the default WordPress theme activated?

    Regards,
    Josue

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    in reply to: What "Login" plugin is better than the others. #639567

    Can’t answer that precisely because i’ve not used both plugins, give it a try.

    Best regards,
    Josue

    in reply to: Selective Meta items shown #639566

    Hi,

    1. I checked a Post and the tags showed here – http://screencast.com/t/k3rjuUe2i8q
    2. The access you provided is no longer working.

    Best regards,
    Josue

    in reply to: Conflict with Event Calendar attendee information #639565

    Looks like event booking is disabled.

    in reply to: I need Blog guidance #639562

    Hi,

    The link to your blog is returning a not found page.

    Best regards,
    Josue

    in reply to: Selective Meta items shown #639199

    Hi!

    I can see tags showing on single view so i guess the only thing left would be to add categories associated with the post right? regarding pagination you can change that in General > Reading

    Best regards,
    Josue

    in reply to: Conflict with Event Calendar attendee information #639034

    Ahh, i think the issue comes when you use the arrows, i’ve been writing the number and pressing enter the whole time. Try the following, open /enfold/config-woocommerce/woocommerce-mod.js and remove/comment this block:

    jQuery(".quantity input[type=number]").each(function() {
    	var number = $(this),
    			max = parseFloat( number.attr( 'max' ) ),
    			min = parseFloat( number.attr( 'min' ) ),
    			step = parseInt( number.attr( 'step' ), 10 ),
    			newNum = jQuery(jQuery('
    <div />').append(number.clone(true)).html().replace('number','text')).insertAfter(number);
    			number.remove();
    
    		setTimeout(function(){
    			if(newNum.next('.plus').length == 0) {
    				var minus = jQuery('<input type="button" value="-" class="minus">').insertBefore(newNum),
    						plus    = jQuery('<input type="button" value="+" class="plus">').insertAfter(newNum);
    
    				minus.on('click', function(){
    					var the_val = parseInt( newNum.val(), 10 ) - step;
    					the_val = the_val < 0 ? 0 : the_val;
    					the_val = the_val < min ? min : the_val;
    					newNum.val(the_val);
    				});
    				plus.on('click', function(){
    					var the_val = parseInt( newNum.val(), 10 ) + step;
    					the_val = the_val > max ? max : the_val;
    					newNum.val(the_val);
    
    				});
    			}
    		},10);
    
    	});
    in reply to: What "Login" plugin is better than the others. #639033

    Hope it suits your needs.

    Best regards,
    Josue

    in reply to: script not working in avia-menu #639031

    You are welcome, glad to help :)

    Regards,
    Josue

    in reply to: Masonry Blog – Column width #639029

    You could also give more space to the content in Theme Options > General Layout > Dimensions.

    Best regards,
    Josue

    in reply to: sticky header on mobile #639028

    Hi,

    You can include a custom.js in your child theme and place the following:

    (function($){
    
        $(document).ready(function()
        {	
            avia_header_size();		
    
        });
    
        function av_change_class($element, change_method, class_name)
        {	
        	if($element[0].classList)
        	{
        		if(change_method == "add") 
        		{
        			$element[0].classList.add(class_name);
        		}
        		else
        		{
        			$element[0].classList.remove(class_name);
        		}
        	}
        	else
        	{
        		if(change_method == "add") 
        		{
        			$element.addClass(class_name);
        		}
        		else
        		{
        			$element.removeClass(class_name);
        		}
        	}
        }
    
    	function avia_header_size()
    	    {
    	        var win				= $(window),
    	            header          = $('.html_header_top.html_header_sticky #header'),
    	            unsticktop		= $('.av_header_unstick_top');
    
    	        if(!header.length && !unsticktop.length) return;
    
    	        var logo            = $('#header_main .container .logo img, #header_main .container .logo a'),
    	            elements        = $('#header_main .container:not(#header_main_alternate>.container), #header_main .main_menu ul:first-child > li > a:not(.avia_mega_div a, #header_main_alternate a), #header_main #menu-item-shop .cart_dropdown_link'),
    	            el_height       = $(elements).filter(':first').height(),
    	            isMobile        = $.avia_utilities.isMobile,
    	            scroll_top		= $('#scroll-top-link'),
    	            transparent 	= header.is('.av_header_transparency'),
    	            shrinking		= header.is('.av_header_shrinking'),
    	            topbar_height	= header.find('#header_meta').outerHeight(),
    	            set_height      = function()
    	            {	
    	                var st = win.scrollTop(), newH = 0, st_real = st;
    
    					if(unsticktop) st -= topbar_height; 
    					if(st < 0) st = 0;
    
    					if(shrinking)
    	                {
    		                if(st < el_height/2)
    		                {
    		                    newH = el_height - st;
    		                    if(st <= 0){
    								newH = el_height;
    						    }
    
    		                    av_change_class(header, 'remove', 'header-scrolled');
    		                    //header.removeClass('header-scrolled');
    		                }
    		                else
    		                {
    		                    newH = el_height/2;
    		                    //header.addClass('header-scrolled');
    		                    av_change_class(header, 'add', 'header-scrolled');
    		                }
    
    		                if(st - 30 < el_height)
    		                {
    		                    av_change_class(header, 'remove', 'header-scrolled-full');
    		                }
    		                else
    		                {
    		                    av_change_class(header, 'add', 'header-scrolled-full');
    		                }
    
    		                elements.css({'height': newH + 'px', 'lineHeight': newH + 'px'});
    	                	logo.css({'maxHeight': newH + 'px'});
    	                }
    
    	                if(unsticktop.length)
    	            	{
    	                	if( st <= 0)
    	                	{
    		                	if(st_real <= 0) st_real = 0;
    	                		unsticktop.css({"margin-top":"-"+st_real+"px"});
    						}
    						else
    						{
    	                		unsticktop.css({"margin-top":"-"+topbar_height+"px"});
    						}
    	            	}
    
    	                if(transparent)
    	                {	
    	                	if(st > 50)
    	                	{	
    	                		//header.removeClass('av_header_transparency');
    	                		av_change_class(header, 'remove', 'av_header_transparency');
    	                	}
    	                	else
    	                	{
    	                		//header.addClass('av_header_transparency');
    	                		av_change_class(header, 'add', 'av_header_transparency');
    	                	}
    	                }
    
    	            }
    
    	            if($('body').is('.avia_deactivate_menu_resize')) shrinking = false;
    
    	            if(!transparent && !shrinking && !unsticktop.length) return;
    
    				win.on( 'debouncedresize',  function(){ el_height = $(elements).attr('style',"").filter(':first').height(); set_height(); } );
    	            win.on( 'scroll',  function(){ window.requestAnimationFrame( set_height )} );
    	            set_height();
    	    }
    
    })(jQuery);

    Best regards,
    Josue

    in reply to: Positioning Buttons in Header #639027

    Ok, let us know if you need anything else.

    Best regards,
    Josue

    in reply to: Enfold won\'t update #639026

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    in reply to: Masonry Blog – Column width #638942

    Hey Alisa,

    Width is percentage based (relative to container), there’s no way to set a minimum fixed width unless you increase the size of the container, i’d suggest setting the columns to 3.

    Best regards,
    Josue

    in reply to: Contact forms not sending email #638940

    Perfecto, avisanos cualquier otra cosa.

    Saludos,
    Josue

    in reply to: sticky header on mobile #638938

    Hey!

    Try adding this code to the Quick CSS:

    @media only screen and (max-width: 480px) {
    #header{position: fixed !important; }
    }

    Cheers! 
    Josue

    in reply to: What "Login" plugin is better than the others. #638937

    Hey,

    You mean a Link on the main menu? i’ve tried Ultimate Member and it allows you to show menu items to logged-in/logged-out users.

    Best regards,
    Josue

    in reply to: shopping cart back to the store broken link #638926

    Hi,

    Can you please check if the issue persists with the default WordPress theme activated?

    Regards,
    Josue

    in reply to: Contact forms not sending email #638925

    Hola,

    ¿Y si se soluciono con eso o aun tienes el problema?

    Saludos,
    Josue

    in reply to: script not working in avia-menu #638924

    Hey,

    If you say it works elsewhere one thing you could do is use the link outside the menu and have the menu trigger it, with something like:

    <script>
    (function($){
        $(window).load(function() {
        	$('#menu-item-847').on('click', function(){ $('#link_that_works').trigger('click'); });
        });
    })(jQuery);
    </script>

    Best regards,
    Josue

    in reply to: Easy Slider on Homepage of Flat Business #638921

    Hi,

    Can you post the link to your website please? can you expand on what issue have you encountered?

    Regards,
    Josue

    in reply to: Box for special heading, spacer and icon list #638920

    Hey,

    Try using a Text Block element and place the heading/spacer/iconlist in [shortcode] format.

    Best regards,
    Josue

    in reply to: removing h3 tag in footer widget title #638917

    Hi,

    1. Paste this at the end of your child theme functions.php.
    2. Modify the widget structure as needed.

    Best regards,
    Josue

    in reply to: How to translate certain strings? #638914

    Hi Alex,

    I’m afraid we can’t help you on this as the issue is not directly related to the theme.

    Best regards,
    Josue

    in reply to: Conflict with Event Calendar attendee information #638913

    have you checked in another computer? can you post a screenshot of your view?

    Best regards,
    Josue

    in reply to: Conflict with Event Calendar attendee information #638883

    Chrome on OS X.

    in reply to: Odd Fontello issue #638880

    Glad to hear that :)

    Best regards,
    Josue

Viewing 30 posts - 1,231 through 1,260 (of 23,923 total)