Forum Replies Created

Viewing 30 posts - 5,701 through 5,730 (of 8,514 total)
  • Author
    Posts
  • in reply to: Can I put the search widget on front page without a sidebar? #165939

    Hey John,

    If you want it in the header then you would be adding that code to the header.php. Its a function to display the WordPress search form wherever its placed. You would then need to wrap it in a div and position it with css.

    Alternatively, you could put a widget area in your home page layout using the advanced layout editor and then just put a search widget into that specific widget area.

    Regards,
    Devin

    in reply to: Blurry Images in Gallery #165938

    Hi!

    Everything looks pretty sharp on my end when checking now. Images in WordPress are somewhat touchy. Its best to just use the largest possible size you have available and then with Enfold choose an image size larger than the container for whatever gallery/image implementation you have.

    Regards,
    Devin

    in reply to: Color Section – Dificulties with Chrome #165935

    Addressing your original topic here: https://kriesi.at/support/topic/color-section-with-background-image/#post-165934

    Please do not create multiple topics for the same issue or question. We get to every single topic that gets posted on the forums and it just makes it harder and takes us longer when you double post, self bump or add on to other topics.

    in reply to: Color section with background image #165934

    Hey Fabiana!

    First thing to try is disable all active plugins you have running including any dropins like Jetpack. Then go to your homepage layout and re-set the image for that color section and save the page.

    Also, please do not create multiple topics for the same issue or question. We get to every single topic that gets posted on the forums and it just makes it harder and takes us longer when you double post, self bump or add on to other topics.

    Best regards,
    Devin

    in reply to: Enfold problem lawyer slider #165932

    Hello courtierweb1!

    I’m not really sure what you mean. Both the index and /beta of that domain are the same theme.

    For youtube links, you can disbale the themes lightbox plugin from picking them up by adding the nolightbox class to the link. Eg:
    <a href="http://www.youtube.com/">Youtube</a>

    Regards,
    Devin

    Hi franpat!

    That depth of customization is quite a bit beyond what we can do via support. You’ll need to look into a freelance developer who can customize/create a new header style for you.

    Best regards,
    Devin

    in reply to: slider on homepage broken in iphone on rotate #165930

    I’ve tagged Kriesi to take a look and thank you for verifying that its a theme implementation issue :)

    in reply to: Blog image small preview – square vs auto height #165929

    Hello!

    Use this plugin and remove the crop from that image size: http://wordpress.org/extend/plugins/simple-image-sizes/

    Then use the same plugin to regenerate your image sizes.

    Cheers!
    Devin

    in reply to: Woocommerce product tabs – problem since upgrade to 2.2 #165909

    Glad you found a fix that works for you. I’m not actually having the same issue on my live versions but if turns out to need a permanent change we’ll add it in to an update.

    in reply to: Showing recent comments #165901

    Not sure if Josue was mistaken or it was a fluke but it doesn’t look like the default recent comments widget is supposed to display anything but recent blog comments: http://en.support.wordpress.com/widgets/recent-comments-widget/

    Granted this is the modified version for the .com blogs but I believe it holds true for the regular recent comments widget.

    WordPress was and still is in many ways a blog platform that is transitioning into a CMS so you may have better luck with just a different recent comments plugin with more options.

    in reply to: Adding a custom font #165887

    Try using this plugin and choose for it to add in the font. Perhaps the font import is just failing for some reason: http://wordpress.org/plugins/wp-google-fonts/

    I saw the screenshots above I’m just not getting the same thing on my end. I don’t have an iphone to test on however so its just on the other devices.

    I’ll tag Kriesi on the topic to see if he is able to see the same thing.

    in reply to: Icons in Iconbox in IE8 #165885

    Hi!

    You could try using modernizr and responsive.js to force IE8 to be a bit more modern but otherwise this is just how IE8 displays the same code.

    http://wordpress.org/plugins/modernizr/
    and
    http://wordpress.org/plugins/respondjs/

    Cheers!
    Devin

    in reply to: How to customize google custom search? #165884

    Hi!

    You need to add in the function above and customize it for your specific google search code. So add this to your functions.php:

    
    	add_filter( 'wp_nav_menu_items', 'append_google_search_nav', 10, 2 );
    	function append_google_search_nav( $items, $args )
    	{		
    	    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
    	    {
    	        global $avia_config;
    	        ob_start();
    	        get_search_form();
    	        $form =  htmlspecialchars(ob_get_clean()) ;
    
    	        $items .= '<li id="menu-item-google-search">YOUR SEARCH FORM CODE</li>';
    	    }
    	    return $items;
    	}
    
    

    Where it says “YOUR SEARCH FORM CODE” you need to add the code for your search form.

    Best regards,
    Devin

    Hi!

    Author pages are created automatically for anyone who is a registered user. Its just a template that formats the WordPress author template. See: http://codex.wordpress.org/Author_Templates

    Regards,
    Devin

    in reply to: Load page with portfolio item open #165829

    Hello Alex!

    No unfortunately not that I know of. Its been asked a few times with the various themes that have the functionality but we’ve not been able to implement a solution to make it possible yet.

    Regards,
    Devin

    in reply to: Connection reset #165826

    Hi mdgworld!

    Unfortunately this is the downside of being on a host like GoDaddy. Their servers are pretty poorly set up to handle anything beyond basic hosting unless you have one of their top tier packages (though even then I’m not a big fan of them).

    What is probably happening is the hosting account isn’t allowing that much data to get saved at once. Either because of a low php max_input_vars limit or as they said an over zealous security function. I would recommend either switching hosting providers or upgrading the hosting account to one with a bit more capability. If you were to use a plugin like Gravity Forms, WooCommerce or Events Calander the issue would just be more pronounced as they all compound on this same issue of needing memory and room to process lots of data at the same time server side.

    Regards,

    Devin

    in reply to: Adding a custom font #165822

    Hello!

    The font seems to be loading in on my end but you can see the implementation guide for yourself on the google font page here: http://www.google.com/fonts#UsePlace:use/Collection:Alef

    You can also try forcing it if its not showing for you by adding !important to the declaration like this:

    
    body, body p {
    font-family: 'Alef', Arial, sans-serif !Important;
    }
    
    

    Cheers!
    Devin

    Hi!

    You can remove the sub menu hover with:

    #top .main_menu .menu li:first-child>a {
    border-top: none;
    }

    Regards,
    Devin

    in reply to: Large blank space after WordPress gallery, any idea why? #165817

    Hello!

    I’m not sure what might have caused it but Jetpack in general tends to cause unexpected issues and conflicts with themes and plugins. I don’t see any issue with the gallery now or even an error with the height so I’m not sure if it worked itself out or you changed a setting (or if it was a conflict with a scheduled post).

    If it does happen again we can try taking another look at it then.

    Best regards,
    Devin

    in reply to: Google Map not showing correctly #165814

    Hi!

    If emails are going out with either of them it means your server isn’t configured to allow the php mail function. Talk to your hosting provider and see what restrictions there are on using the default wordpress mail/php mail function.

    Cheers!
    Devin

    in reply to: Diiferent sidebar for homepage #165813

    Hey Masten!

    You can use a plugin like this one to control visibility of specific plugins on different pages/conditions: http://wordpress.org/extend/plugins/widget-logic/

    Cheers!
    Devin

    Did you try the suggestion I posted above? The importing in failing is a symptom of something else not working correctly and it would best to get it addressed.

    If you can also see about getting the address for your php info file we can take a look at that as well. PHP version, cgi settings etc could help get this sorted out.

    in reply to: Display tags in portfolio #165778

    It would be both. The advanced layout editor is a full replacement of the content on the page. So anything you want to be displayed needs to be added in with the editor. It really is a full blank slate for that pages content.

    Otherwise the regular visual editor and shortcodes can do just about everything but with a bit more traditional styling (no drag and drop).

    Hi Carsten!

    The thumbnail clarity issues is somewhat complicated. When you upload the images WordPress generates all of your thumbnails based on the theme settings (functions.php). So when you change those values you will need to re-generate the images.

    For the thumbnails this should really be needed but I’ll take a look at that at the same time as the column issue.

    Create a temporary admin account for me and I’ll log in and take a look at the columns issue since it could be quite a few different things.

    Send the login data to my email at DevinVinson ( at ) gmail.com . Make sure to include a link to this topic in the email so my spam filter doesn’t grab it.

    Best regards,
    Devin

    in reply to: Parallax images on iPhone still not fixed (everything updated) #165773

    As far as I know Kriesi has not found a true fix for it. The changes made are such that it degrades to a static image on mobile which I believe is what Kriesi intends.

    But he is working on putting out 2-3 updates a month on Enfold so I’ll add it as an issue to be re-addressed.

    Regrds,

    Devin

    in reply to: Display tags in portfolio #165772

    Hello!

    The default editor uses the single portfolio file while the advanced layout editor uses the advanced layout editor file. The later is a general output for any page that uses the advaned layout editor. I’m not sure it can actually accept outputting the tags for the page since the layout is determined by the advanced layout editor completely and it doesn’t have a “content” function like a regular file does.

    Regards,
    Devin

    in reply to: website too slow #165770

    Hey infoportugal!

    In general you can use WP Super Cache or w3tc. Each plugin has its own documentation on setting it up.

    Cheers!
    Devin

    in reply to: Install Demo Content #165769

    Hey!

    The slider, like you have it there, will take up the full width of your browser. You just need to use images that are not as tall.

    Regards,
    Devin

    in reply to: Issues with Safari browser #165742

    Is there any way you can install the theme in a new sub directory or sub domain on the same server? Maybe, somehow, its a server setting that is causing the generated css to have a slight difference from the norm.

Viewing 30 posts - 5,701 through 5,730 (of 8,514 total)