Forum Replies Created

Viewing 30 posts - 6,181 through 6,210 (of 9,352 total)
  • Author
    Posts
  • in reply to: Blog Page Not Working #199833

    Hi Eleina_Shinn!

    Yes – please create us an admin account and post the login credentials as private reply. Also provide a link to the blog page – by going this way we can be sure that we talk about the same page. I.e. your blog menu item links to: http://essel.eswebsitedesign.com/category/uncategorized which is an archive page (of the category “Uncategorized”) and this page will only show posts of the category “uncategorized”.

    Best regards,
    Peter

    This reply has been marked as private.
    in reply to: Parallax Circle like the one on your homepage #199831

    Hey!

    Yes, it’s a custom shortcode Kriesi created for his website. It’s not flexible enough yet, not bulletproofed and requires some coding/hacking to get it working properly – thus we won’t distribute it for now but we’ll maybe add an improved version of the shortcode to an upcoming theme update or Kriesi will write a tutorial about it. We have no concrete plans yet though.

    Best regards,
    Peter

    in reply to: Image Upload/Featured Images suddenly stopped working #199826

    Hi Vincent!

    If you didn’t alter any plugin/theme/wordpress files and you didn’t install any new plugins it might be a problem with the database (i.e. a corrupt database entry can cause this issue(s)). Did you try to restore a backup of the database? Maybe try to restore a backup of your website on a test server and check if the problem is solved if you use the backup. It’s strange that “suddenly” the featured images don’t work anymore especially because the code will always produce the same result if you didn’t modify it. Imo the only variable component here is the database data which may change based on the user input.

    Best regards,
    Peter

    in reply to: WPML and Child Theme #199815

    Hey cuboliquido!

    No, there’s no limit and the child theme will use the all parent theme functions to make WPML fully compatible with Enfold. I recommend to set the allocated memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP because the child theme and the WPML plugin probably require more memory and with 128M you’re on the safe side.

    Cheers!
    Peter

    in reply to: Enfold portfolio not working after WordPress 3.8 update? #199805

    Hi!

    It seems like the return value of the category id is not an integer but a text since 3.8 and the new variable type breaks our in_array() check. Open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace

    
    if(in_array($category->term_id, $current_page_cats, true))
    

    with

    
    if(in_array($category->term_id, $current_page_cats))
    

    and afterwards edit /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php and replace

    
    if(in_array($term->term_id, $current_page_terms, true))
    

    with

    
    if(in_array($term->term_id, $current_page_terms))
    

    I’ll ask Kriesi to release an update asap.

    Regards,
    Peter

    in reply to: Remove lightbox/link from ajax preview slider (again) #199797

    Hi!

    Yes, because we don’t want to remove the lightbox feature for all users ;-)

    Regards,
    Peter

    Hey!

    Yes, the WPML permalink function causes issues on some servers (actually only a few servers because we received maybe 10 similar bug reports and I posted some code to temporarily fix the issue here: https://kriesi.at/support/topic/404-strange-permalink-problems-ii/

    I already notified Kriesi about the issue and I created a fix for it but I’m still waiting for his feedback. Basically I’d like to remove the “slug” option from the Enfold theme option panel and instead add it to the Settings > Permalink page. Then I want to wrap the slug text into a _x() function which should allow WPML to translate the slug with the “String Translation Management” extension. I’ll try to get this patch into the next update (Enfold 2.5).

    Regards,
    Peter

    in reply to: Remove lightbox/link from ajax preview slider (again) #199514

    Hey!

    I added another selector – please try it again.

    Regards,
    Peter

    in reply to: Problem with jQuery #199510

    Hi!

    I see no obvious reason for this js error – maybe try to deactivate the jquery updater plugin which seems to replace the default (bundled) jquery script with a custom script. If this doesn’t solve the issue I recommend to hire a freelancer from http://www.microlancer.com/ who has more time to tinker around with your code and to investigate the issue.

    Best regards,
    Peter

    in reply to: Images not resizing propoerly #199490

    Hi!

    You can use this plugin: http://wordpress.org/plugins/wp-resized-image-quality/ to change the thumbnail quality of the uploaded images – i.e. you can set the compress quality level to 100% for the best jpg compression quality.

    The images should re-size properly if
    1) The gdimage library is installed: http://www.php.net/manual/en/book.image.php (otherwise wordpress can’t generate the thumbnails)
    2) The original image dimension (WIDTH AND HEIGHT) exceed the thumbnail size. If i.e. the width/height of the original image is smaller than the defined thumbnail width/height wordpress won’t generate a thumbnail version of the image.

    Regards,
    Peter

    in reply to: Remove lightbox/link from ajax preview slider (again) #199488

    Hi!

    I replaced the element selector with a more specific one – please try the code I posted with my last answer again.

    Best regards,
    Peter

    in reply to: Bigger Logo gets cut #199485

    Hey!

    I think the min-width value of the media query causes the issue – try following code instead

    
    @media only screen and (min-width: 1px)  and (max-width: 990px) { .logo, .logo a, .logo img { max-width: 200px; }
    .logo img { margin-top: 10px; }
    }
    

    Best regards,
    Peter

    in reply to: Bugs: Mega Menu Column Title, Gallery #199483

    Hi!

    Please go to Enfold > Theme Options and save the theme options again. It seems like the dynamic stylesheet (wp-content/uploads/dynamic_avia/enfold.css) does not contain all necessary css stylings and probably the css file regeneration will fix the issue. Also make sure that all color options (Enfold > Styling) are set and configured properly.

    Regards,
    Peter

    in reply to: 3 Column Ajax portfolio #199462

    Hey!

    You could select the “Don’t show the images at all and display the preview text only” option: http://www.clipular.com/c/6453051829256192.png?k=5TIdSdjsRn87CQytVuQeUU4899A

    By going this way Enfold will stretch the content area of the ajax preview to 100% width and you can use the new space to build your custom layout. I.e. use the 1 column shortcode and the “Easy Slider” shortcode to build the layout/template you requested in your last post.

    Regards,
    Peter

    in reply to: Remove lightbox/link from ajax preview slider (again) #199460

    Hey!

    Strange – please try to use following code instead

    
    jQuery('.portfolio_preview_container .portfolio-preview-image .avia-slideshow .avia-slideshow-inner').find('a').addClass('avianolink noLightbox');
    $('a.avianolink').on('click', function(){return false;});
    
            //activates the prettyphoto lightbox
            $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});
    

    I’ll move the “avianolink” function into the ajax callback function with the next theme update – then you just need to use the code I posted here: https://kriesi.at/support/topic/remove-lightboxlink-from-ajax-preview-slider-again/#post-199447

    Best regards,
    Peter

    in reply to: Remove lightbox/link from ajax preview slider (again) #199447

    Hey agarkitekter!

    If the code doesn’t work for you please remove it and replace

    
            //activates the prettyphoto lightbox
            $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});
    

    with

    
    jQuery('.portfolio_preview_container .portfolio-preview-image .avia-slideshow').find('a').addClass('avianolink noLightbox');
    
            //activates the prettyphoto lightbox
            $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});
    

    Best regards,
    Peter

    in reply to: Instant Ajax Search on sidebar? #199386

    Hey!

    It seems to work for me now but I had to clear the browser cache first.

    Regards,
    Peter

    in reply to: Instant Ajax Search on sidebar? #199121

    Hey!

    Now I can’t access the website at all…

    Best regards,
    Peter

    in reply to: Instant Ajax Search on sidebar? #198987

    Hey!

    I checked the code in avia.js http://www.getushotel.com/wp-content/themes/enfold/js/avia.js?ver=1 and you added

    
    new $.AviaAjaxSearch({scope:'#header, .widget_search'});
    

    at the very beginning of the file – please remove the code – it causes a js error and is not required.

    Cheers!
    Peter

    in reply to: Instant Ajax Search on sidebar? #198969

    Hey andri7luck!

    No, the ajax search does not work with a standard search form at the moment. You can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests/ and if other users request it we’ll look into it.

    Update: I looked into it and you can do it with a quick hack. In enfold/js/avia.js replace

    
     new $.AviaAjaxSearch({scope:'#header'});
    

    with

    
     new $.AviaAjaxSearch({scope:'#header, .widget_search'});
    

    Then replace

    
    this.scope.on('keyup', '#s:not(".av_disable_ajax_search #s")' , $.proxy( this.try_search, this));
    

    with

    
    this.scope.on('keyup', '#s:not(".av_disable_ajax_search #s")' , $.proxy( this.try_search, this));
    
                $(document).not(this.options.scope).on('click', function(){
                    $('.widget_search #searchform .ajax_search_response').fadeOut(300, function(){ $(this).remove(); });
                });
    

    Afterwards add following css code into the quick css field

    
    #top .widget_search #searchform .ajax_search_response{
        padding-top: 20px;
        position: absolute;
        background: #fff;
        z-index: 100;
        max-width: 100%;
        border: 2px dotted #e2e2e2;
    }
    

    and change the styling of the ajax response results if you want.

    Regards,
    Peter

    in reply to: Delete my url on post. #198958

    Hey zendao!

    Done!

    Cheers!
    Peter

    in reply to: 3 Column Ajax portfolio #198954

    Hi wackyadventurer!

    Yes, the “portfolio” element will only display posts of the custom post type “Portfolio items”. You first need to create one or more portfolio posts (Portfolio Items > Add New) and you need to add some content into the “Ajax preview” text editor. You also need to create at least one portfolio category and then assign your portfolio post(s) to these categories. Afterwards go to the page where you want to insert the portfolio grid (like demonstrated here http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/), select the portfolio element from the advanced layout builder toolbar and click on the element to configure the portfolio options. Select the categories you want to display with this portfolio grid and then select the “Open a preview of the entry (known as AJAX Portfolio)” option in the “Link Handling” dropdown field. Afterwards save the page and if you view the page you should see the portfolio grid with one or more portfolio posts and if you click on these items the “ajax preview” content should pop up.

    Best regards,
    Peter

    in reply to: Problem with jQuery #198952

    Hi!

    Wrap your js code into a self executing function like

    
    (function($)
    {
        //my code
    })(jQuery);
    

    and you can use the $ shortcode with the noconflict mode. I.e. in your case the code looks like

    
    	
    	jQuery(function() {
    
    		
    		$('#file_upload').uploadify({
    			'formData'     : {
    				'timestamp' : '1386753645',
    				'token'     : '853cbd34cf4daf06b176c2ec1b170279'
    			},
    			'progressData' : 'speed',
    			'swf'      : 'uploadify.swf',
    			'uploader' : 'uploadify.php'
    		});
    		
    		$('.customize_input_text').live("keyup", function(){
    			count_chars($(this));
    		})
    
    		
    	});
    
    

    replace it with

    
    (function($)
    {
    	$(function() {
    		$('#file_upload').uploadify({
    			'formData'     : {
    				'timestamp' : '1386753645',
    				'token'     : '853cbd34cf4daf06b176c2ec1b170279'
    			},
    			'progressData' : 'speed',
    			'swf'      : 'uploadify.swf',
    			'uploader' : 'uploadify.php'
    		});
    		
    		$('.customize_input_text').live("keyup", function(){
    			count_chars($(this));
    		});	
    	});
    })(jQuery);
    

    Regards,
    Peter

    in reply to: Home Page displaying as blank white page… #198944

    Hey!

    You can try W3TC instead: http://wordpress.org/plugins/w3-total-cache/ – I’m using it on my website ( http://inoplugs.com/ ) without any issues. In addition please check the allocated memory limit. A blank page often indicates an allocated memory error and you can fix it by increasing the memory to 128M ( http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP ).

    Regards,
    Peter

    in reply to: [LayerSliderWP] Slider not found #198938

    Hey!

    Tbh I’m not an expert when it comes to htaccess rules. Personally I recommend to make a backup of the htaccess file, then delete the entire code within the htaccess file and upload the empty htaccess file. Then go to Settings > Permalinks to rewrite the default wordpress permalink rules (you just need to click the “Save” button). Afterwards check if the slider works and if the htacess code changed.

    Best regards,
    Peter

    in reply to: Changing Image a:hover Effect for Specific Pages #198923

    Hi!

    Yes, in enfold/js/avia.js search for

    
        function avia_hover_effect(container)
        {
        	if(container == 'body')
        	{
        		var elements = $('#main a img').parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .avia-layerslider a, .noHover, .noHover a').add('#main .avia-hover-fx');
        	}
        	else
        	{
        		var elements = $('a img', container).parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .avia-layerslider a, .noHover, .noHover a').add('.avia-hover-fx', container);
        	}
    

    and add your element/class to the “not” filter list – i.e. if your class is called “mycustomclass” the modified code must look like

    
        function avia_hover_effect(container)
        {
        	if(container == 'body')
        	{
        		var elements = $('#main a img').parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .avia-layerslider a, .noHover, .noHover a, .mycustomclass, .mycustomclass a').add('#main .avia-hover-fx');
        	}
        	else
        	{
        		var elements = $('a img', container).parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .avia-layerslider a, .noHover, .noHover a, .mycustomclass, .mycustomclass a').add('.avia-hover-fx', container);
        	}
    

    Cheers!
    Peter

    in reply to: Header Container Logo Sizing and Alignment #198922

    Hi fluent_Agency!

    1) If you don’t want to resize the logo open up enfold/js/avia.js and replace

    
    
        	//Resize menu if logo is overlapped by th menu items
            avia_resize_menu();
    
            // decreases header size when user scrolls down
            avia_header_size();
    

    with

    
        	//Resize menu if logo is overlapped by th menu items
            //avia_resize_menu();
    
            // decreases header size when user scrolls down
            //avia_header_size();
    

    This mod will deactivate the header & logo resize function which resizes the logo/menu when the user scrolls down.

    2 + 3) It seems like you switched to the “slide out” menu and the dropdown menu is not used anymore?

    Regards,
    Peter

    in reply to: breadcrumbs nok #198919

    Hey!

    I marked this thread for Josue.

    Cheers!
    Peter

    in reply to: "undefined" error in Tab Element #198917

    Hey!

    I’m not sure if the dummy data page is the cause of the issue because I tested the tab shortcode here: http://test.persuadedbase.com/?page_id=1195 and I couldn’t reproduce the “undefined” bug although the “About Us” page is also part of the dummy data.

    Regards,
    Peter

Viewing 30 posts - 6,181 through 6,210 (of 9,352 total)