Forum Replies Created

Viewing 30 posts - 2,221 through 2,250 (of 8,514 total)
  • Author
    Posts
  • Hey!

    It looks like you have at least one other, but I think 2 other, plugins running which are adding a lightbox to your images automatically. Deactivating your active plugins and then re-activating them one at a time will let you see which is causing that to happen.

    Regards,
    Devin

    in reply to: Control over thumbnail link #256811

    Hey Jason!

    Do you mean by using the Link post type? I’m not sure of any blog grid setting which would allow you to set a specific url for a post within the grid.

    Cheers!
    Devin

    in reply to: Where Dropdown Menu Option Go? #256793

    Hi!

    Your css customizations are causing the slide out menu not to render.

    Specifically, you have #mobile-advanced set to display:none .

    Best regards,
    Devin

    in reply to: Image Upload, Mulitple Images Created #256792

    Hi norrisd!

    The theme and WordPress create multiple thumbnail versions of your images whenever you upload an image. This is so that your users are not forced to load in full sized images just for a small thumbnail or inside of a page.

    While you can remove the function, its not something I would ever suggest to do since file storage isn’t really a concern these days.

    What you would need to do is remove this code from the functions.php to remove the ones the theme creates:

    
    /*
     * Register additional image thumbnail sizes
     * Those thumbnails are generated on image upload!
     *
     * If the size of an array was changed after an image was uploaded you either need to re-upload the image
     * or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
     */
    
    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    	$avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );					// images for portfolio entries (2,3 column)
    	$avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            // big images for blog and page entries
    	$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );					// images for fullsize pages and fullsize slider
    }
    

    Best regards,
    Devin

    Hey mikehirsch!

    All of the ALB elements you use in the builder are in the theme files as individual php files or are made up extended classes within a file. Look for config-templatebuilder>avia-shortcodes>postslider.php

    Regards,
    Devin

    in reply to: "Insert Theme Shortcode" #256789

    Hey Zakkery!

    This topic should help as it covers the same issue: https://kriesi.at/support/topic/magic-wand-invisible-for-authorscontributors/

    Cheers!
    Devin

    in reply to: How to integrate Login Pages and Sign up pages!! #256787

    Hey!

    You can add in any custom css to a child themes style.css, your Quick CSS in the themes Styling tab or in the themes custom.css file in the css folder.

    You can customize the menu font using the Advanced Styling tab in the theme options (must be on Enfold 2.7).

    Regards,
    Devin

    in reply to: New layerslider doesn't apper #256786

    Hi leverate_marketing!

    Are you using Enfold version 2.7 with WordPress 3.9? If not, first update to both and try deactivating all other active plugins to make sure there is no conflict with the theme.

    Cheers!
    Devin

    in reply to: no layerslider found click here to create one #256784

    It sounds like the data in your database on the new server is incorrect/corrupted. Unfortunately there isn’t a fix that we can do or suggest in this case. The typical way of moving should be to use something like the plugin mentioned here http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/

    Your options are pretty limited but you could have a freelance developer attempt to fix your WordPress tables for the theme options and LayerSlider options, clear them out or do a full re-install of WordPress and re-export the old site data and then import it in.

    in reply to: Increasing sidebar width #256613

    Hey!

    You would add it to your child theme or custom.css file so that it took priority over the parent themes classes. Its not something we can assist with unfortunately but you may also want to look into simple changing the grids used for the content area and sidebar area in the functions.php since it allows you to change the grids used for each. Starts on line 133 and the full config with comment is here:

    
    /*
     * register the layout sizes: the written number represents the grid size, if the elemnt should not have a left margin add "alpha"
     *
     * Calculation of the with: the layout is based on a twelve column grid system, so content + sidebar must equal twelve.
     * example:  'content' => 'nine alpha',  'sidebar' => 'three'
     *
     * if the theme uses fancy blog layouts ( meta data beside the content for example) use the meta and entry values.
     * calculation of those: meta + entry = content
     *
     */
    
    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');
    
    

    Regards,
    Devin

    Hey Erich Nolan!

    If I remember correctly the solution you have now is what we discussed as the best solution for now. Eg, using a third party widget that has horizontal with vertical sub menus.

    Best regards,
    Devin

    in reply to: New Advanced Styling Feature #256372

    Trying with that login and pass isn’t working for me. Can you double check them or just create a new temporary account set as an admin?

    in reply to: Can't enter links using visual editor #256371

    Hey lernerleben!

    Make sure you are using both Enfold 2.7 and WordPress 3.9. Give your browser a hard refresh when viewing the WordPress admin as well since things may be cached incorrectly.

    Regards,
    Devin

    Hey zacholas321!

    I’m not actually sure that would be possible at all to have two instances of the builder running at once. The code is all commented and named to allow easy following of where the classes and code is store if you wanted to try and work it out. I’m not sure there is any one place we could point you to except the portfolio items since they have a secondary meta box already in place.

    Best regards,
    Devin

    Hey!

    If you wanted to disable the mega menu then yes, you could do that exactly as shown.

    Regards,
    Devin

    Hey!

    Which part specifically breaks your website? Did you move the entire avia.js file your child theme or just your custom javascript? If just your custom stuff you will need to move the whole file including your customizations since Peters code replaces the parent file completely.

    Cheers!
    Devin

    in reply to: Blogposts Single Author without sidebar #256165

    Hi!

    Yes, that is the expected layout when no sidebar is set for that blog element layout. The small image and layout defaults to the middle of the page.

    Best regards,
    Devin

    in reply to: Inserting portfolio #256159

    Hey!

    Regularly updating through FTP shouldn’t cause the issue. It could have been an error when uploading originally or a file getting corrupted but in general it will not and shouldn’t.

    Personally updating all of my client sites and my multiple development sites of Enfold whenever we have beta versions or full releases I’ve never had the site completely white screen from updating so I don’t think it would be something to worry about.

    Regards,
    Devin

    in reply to: Always show small header, even before scrolling #256147

    Hey Tim!

    You could do it with some custom css for each of those pages. You may also want to look at using a transparent header option depending on the layout: http://kriesi.at/themes/enfold/transparent-header/

    The page Id of each page is set as a class by the WordPress body class function. So you can target it and then any content on that page specifically to hide the header/menu as needed.

    Regards,
    Devin

    in reply to: Cuts off copy in Chrome on any mobile phone #256141

    Hi Andrea!

    I’m not getting those same sections cut off but I do see the footer getting a bit trimmed (the logo). Not sure why it would be happening however.

    I’ve tagged Kriesi on the topic as I’ve not been able to debug what is causing it.

    Best regards,
    Devin

    in reply to: News feed #256130

    I think how you have it now is probably going to be your best and most reliable solution unless you wanted it to update automatically. In that case you could try using the Post type of Link but I think even that still has one of the links direct the user to the post.

    in reply to: Import-file settings #255782

    Hey luoja!

    From the Theme Options go to the Import/Export tab. At the top is a button to auto import dummy data into the theme and your WordPress installation.

    The location has changed by in this install video I import in the data: http://kriesi.at/documentation/enfold/install-enfold-over-ftp/

    Regards,
    Devin

    in reply to: Sitemap #255781

    Hi Visual-Edge!

    For customization you can find a freelance developer from Envato Studio, Codeable or even http://kriesi.at/contact/customization . The first would definitely need to be done by a freelance developer but the second item you could probably find a suitable plugin to get that kind of floating menu.

    Best regards,
    Devin

    in reply to: Threaded reply in bbpress #255780

    Hi hamzahmauzam!

    Can we have an example of what you mean?

    Best regards,
    Devin

    Hey paaren!

    What is the site url? We can inspect it and see whats going on as well as try re-creating it to see if its a theme issue or something local.

    Regards,
    Devin

    in reply to: Forum Box Profile #255778

    Hi fonti91!

    That is a customized plugin which creates that widget. If I remember correctly its this one: http://wordpress.org/plugins/sidebar-login/

    Best regards,
    Devin

    in reply to: Easy Digital Downloads #255777

    Hi jonahrbrown!

    Yes! I’ve played with it some and it will actually run right from the start without any issues. Once I get some time I’ll add in more in depth support and customization (like what is done for WooCommerce).

    Right now it’ll look like this: http://devinvinson.com/dev/edd/downloads-shop/ . I think that is…Enfold 2.5 but it should still work.

    Cheers!
    Devin

    in reply to: Special HTML element IDs for Buttons etc. #255775

    Hey jhop75!

    You can turn on custom classes for all ALB elements with this function: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Aside from that there isn’t a way I know of to add any other code to individual elements.

    Regards,
    Devin

    in reply to: changing the site width #255773

    Hey lunchforone!

    For customization like that you’ll need to look into a freelance developer from somewhere like Codeable or Envato Studio.

    Cheers!
    Devin

    in reply to: BBPRESS look in enfold #255771

    Hi hamzahmauzam!

    All of the Enfold customizations on Kriesi.at are custom by Kriesi. If you’d like to mimic them you will need to look into a freelance developer from somewhere like Envato Studio or Codeable.

    Cheers!
    Devin

Viewing 30 posts - 2,221 through 2,250 (of 8,514 total)