Forum Replies Created
-
AuthorPosts
-
April 27, 2014 at 5:41 pm in reply to: How to reduce the fullscreen sliders that open when click on gallery thumbnail? #256812
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,
DevinHey 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!
DevinHi!
Your css customizations are causing the slide out menu not to render.
Specifically, you have #mobile-advanced set to display:none .
Best regards,
DevinHi 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,
DevinApril 27, 2014 at 2:31 pm in reply to: Post Slider – rearrange elements (date, read more, etc) #256791Hey 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,
DevinHey Zakkery!
This topic should help as it covers the same issue: https://kriesi.at/support/topic/magic-wand-invisible-for-authorscontributors/
Cheers!
DevinHey!
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,
DevinHi 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!
DevinIt 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.
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,
DevinApril 26, 2014 at 4:08 pm in reply to: Using Avia Layout Builder and 1/1 Layout Element and Widget Area to Add Nav Menu #256612Hey 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,
DevinTrying 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?
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,
DevinApril 25, 2014 at 9:05 pm in reply to: How do I add the Advanced Layout Builder to a custom WYSIWYG field? #256369Hey 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,
DevinApril 25, 2014 at 4:15 pm in reply to: Ubermenu conflict with specific plugins – filter to disable Ubermenu available? #256186Hey!
If you wanted to disable the mega menu then yes, you could do that exactly as shown.
Regards,
DevinApril 25, 2014 at 3:51 pm in reply to: Vertically align icon box next to easy slider (STOPPED WORKING AFTER UPDATE) #256169Hey!
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!
DevinHi!
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,
DevinHey!
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,
DevinHey 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,
DevinHi 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,
DevinI 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.
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,
DevinHi 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,
DevinHi hamzahmauzam!
Can we have an example of what you mean?
Best regards,
DevinApril 24, 2014 at 8:32 pm in reply to: Parallax was working on ipad 2/air ….but not after latest enfold theme update. #255779Hey 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,
DevinHi 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,
DevinHi 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!
DevinHey 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,
DevinHey lunchforone!
For customization like that you’ll need to look into a freelance developer from somewhere like Codeable or Envato Studio.
Cheers!
DevinHi 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 -
AuthorPosts