Hey!
Code i posted should remove the header meta when you scroll down. It does work fine on my installation, please try flushing browser cache and refresh your page a few times. If you really need to place an arrow to display it, You are going to need to hire a freelance developer on Microlancer or Codeable for that kind of customization as it is beyond the scope of support we can provide. You can also request quote here.
Regards,
Yigit
This reply has been marked as private.
Hello Ismael,
actually I added this in functions.php and it’s disabled the site. Well, I prefer now simply just change “You are here” into “U bent here” (in Dutch).
Where it’s possible? I saw this thread : https://kriesi.at/support/topic/how-do-i-change-you-are-here-in-the-breadcrumb/ where cyoniq advise to adress to go to: themes > enfold > framework > php > class-breadcrumb.php but I didnt find such file class-breadcrumb.php niether in the Editor, niether in Enfold menu.
Can you help?
Thank you!
This reply has been marked as private.
Hello,
I am using the small fixed header.
I’d like to be able to have the header white space across the top so that I can add some text to the right side. The text could also be in a header image that spans the top.
Any input would be great.
Thanks,
W
Hey!
Font file issue might be caused by a corrupt file set. please see my answer here: https://kriesi.at/support/topic/after-update-in-firefox-26-font-face-broken/
Replacing the font files again seems to have solved the problem
Regards,
Kriesi
Hi all,
since a few hours, even the Layer Slider but also and the animated pictures inside a gallerie donot work.
I use Enfold as child, Enfold himself is in Version 2.5.2 – I guess
any help?
Danke und nein, das Problem besteht weiterhin.
Die deutsche Version ist installiert. Dies kann ich doch an der Datei erkennen oder?
Hier der Eintrag in der wp-config : define(‘WPLANG’, ‘de_DE’);
Ich habe die Datei enfold_de_DE.po in diesen Ordner per ftp geladen: …/html/wordpress/wp-content/languages/themes
War das vielleicht falsch?#
Danke für eure Hilfe!
Hey!
Revert the code change Ismael suggested in his last post and insert this code at the very bottom of enfold/js/avia.js:
(function($){
$(document).on( "click", '.portfolio-preview-title.entry-title', function(e) {
$(this).parents('.portfolio_preview_container').find('.avia_close').trigger( "click" );
e.preventDefault();
});
})( jQuery );
Best regards,
Peter
Did not do it for me. To clarify I am showing you a snapshot of the area I am talking about: http://victorcoronel.com/download/preHeader.jpg
That is the area I need to be open up with an arrow to show more area where I can place some widgets.
Thank you Yigit. But I CAN NOT FIND the Google Map element from the Elements of the Avia Layout Builder. I want the map at the top following my logo area. Pretty much taking place of the slider location instead. Thank you.
I’m not even sure if this is a good idea because of potential downsides, but I may have a suggestion to improve the mega menu editing interface. It’s probably one of the least important things possible to worry about, but hey, might as well post it.
I actually think what you have now is really great and very functional, but it’s a little odd from a UX standpoint. You can tell it’s engineered to get around WordPress’ limitations (which is not your fault of course). Check a box to make a mega menu, and suddenly pages or custom links turn into columns. Drag them in a level deeper, and they’re pages and custom links again. Check another box, and now the description is a thing you can use to put custom content in. Not bad, just kind of weird.
Some months ago, a little-known plugin was released called Big Voodoo Mega Menu & Related Links Menu. While it falls flat in its front-end implementation, the back-end is pretty good. Here’s a look at it. Columns and what Enfold calls text blocks are their own separate elements, with their own properties, and I think it works well.
Downsides vs. the current Enfold way are:
- It’s not as easy to link to a page from a column heading (since you can’t just make a page also a column with this method)
- Pages and text blocks can be on the same level as columns, which would be layout chaos
- There’s nothing stopping you from making a column or text block a top level item, which would also be layout chaos.
But maybe there’s a clever way to solve those issues, like still doing the “page becomes a column” thing if a user is absolutely insisting, and a JavaScript check to keep columns inside the second level and text blocks inside the third level (although what do you do about adding them to the menu initially?). And, on the other hand, maybe it’s not a big deal, and users will use the tools as intended.
Anyway, I think it’s more intuitive, but a lot easier to break, so I’m not sure if it’s a useful suggestion. I’ll let you decide.
I’d like to modify the icons in the icon box so that they match the formatting of the icons in the icon list, i.e. in a circle vs. no circle, and also to change the color of the icons and the header text. How would I call out this element in a custom css? Or is there a place to access the code for this element?
Is there a way to insert custom icons as a graphic rather than a font?
Lynda Rae
Aurora Design Studio
After upgrading to WordPress 3.8.1, the categories in my portfolio are no longer visible in the sorting menu, although they have been selected in the portfolio settings. Only All appears. How can I fix this?
http://www.studentartfund.org/dev
Lynda Rae
Aurora Design Studio
I’ve got to say, the support here is stellar. Far better than from other places I’ve purchased themes/theme memberships from, thanks so much! I’ll be putting up a review about your theme/support on blackhatworld as my way of saying thanks.
I do have one last question though…I tried putting the above logic into my functions.php file, and it broke the theme (the entire site just was white space). To resolve it, I had to download the functions.php file from wp-content/themes/enfold/functions.php via FTP, remove the added code and reupload it.
I have no child themes installed, it’s just the activated Enfold theme from within the Enfold folder under wp-content/themes/enfold. Here is what my functions.php file looked like after I added the above code (which I had to remove because it broke it). This is from line 1 (and everything beneath what I’ve pasted here, is exactly as it comes with a fresh install of the theme…nothing added or modified):
<?php
global $avia_config;
/*
* if you run a child theme and dont want to load the default functions.php file
* set the global var bellow in you childthemes function.php to true:
*
* example: global $avia_config; $avia_config['use_child_theme_functions_only'] = true;
* The default functions.php file will then no longer be loaded. You need to make sure then
* to include framework and functions that you want to use by yourself.
*
* This is only recommended for advanced users
*/
/* enable custom DAP hide/show menu logic */
if(isset($avia_config['use_child_theme_functions_only'])) return;
add_theme_support('avia_conditionals_for_mega_menu');
if(!function_exists('avia_condition_customrole'))
{
function avia_condition_dap()
{
if(Dap_Session::isLoggedIn()) return true;
return false;
}
}
add_filter('avf_avia_menu_conditions','avia_add_conditional_options', 10,1);
function avia_add_conditional_options($options){
$options['avia_condition_dap'] = array('title' =>__('User Logged in (Dap)', 'avia_framework')),
return $options;
}
/* end conditional menu logic addition */
I know it’s been mentioned before, but right now my #1 request would be Mailchimp support for the contact forms.
The standard mailchimp form designer is hopeless and it’s a pain integrating Mailchimp forms to look good at the moment.
Is there a particular way I could update jquery in the theme without using one of the plugins which break everything?
Just thought I would update, the newest version of WooCommerce uses blockui.js version 2.6, which requires a minimum of jquery 1.3
Enfold/wordpress seem to be using 1.10.2 so this breaks the theme JS from rendering correctly if it is minified.
Hello and thank you again for a great theme!
I was curious about a better way to make sure backups and revisions to posts and pages are more properly accounted for. I’ll lose a tab with some edits, and when I try to restore it, the page never restores back to the right versions. It typically erases a ton of work.
This issue has been a big problem while creating portfolio pages. How can I locate a full revisions page to show all of my past revisions in order to restore them?
I’m currently running the debug mode on the page builder. I can’t tell if this is causing the issue as well but previewing my modifications has been buggy while modifying both the layout build and the debug menu.
Again, the only reason I’m using the debug menu is because the short code button in the classic editor is not nearly robust enough to manage more than 50% of the theme’s core features. I’d rather use the classic editor for consistency but am trying to work with Enfold’s system. Please help steer me in a good direction.
Thank you!
Please make Quick CSS its own tab
The current size is most unusable
Please make Quick CSS its on tab
The current size is most unusable
Hey wesleysoccer!
Thank you for the question. I hope all is well with you today.
Are you sure that this is the right website? This is not using the Enfold theme. What is the tracking code for?
Cheers!
Ismael
Hi Jason!
Thank you for the question. I hope all is well with you today.
We recommend using this plugin to move your website: WP MigrateDB or WP MigrateDB PRO
Refer to this link: http://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684
You don’t have to import or export theme settings after you import the database.
Regards,
Ismael
Hi 10-der!
How are you? I hope you’re doing well today.
You have a very old version of the theme. The tutorial is only applicable with the latest update of Enfold. Please download version 2.5.4 on your themeforest account then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
Best regards,
Ismael
Hi sandboxes!
Thank you for using the theme. I hope you’re doing great.
You can use the Fullwidth Masonry element to display blog posts like that but as the shortcode title says, it will be fullwidth. Two blog post overview filtered by tags is no biggie with Enfold but the tag dropdown that you want it not available without major modications. You can hire someon for that. For further customization, please visit Werkpress.
Cheers!
Ismael
as I can keep my settings as colors, logo, etc.
-Theme Setting Import + Export
Hi!
Thank you for using the theme. I hope you’re doing great.
If you select the page on Enfold > Theme Options > Where do you want to display blog? option, this page will use the index.php template. You can’t add any avia elements using the Advance Layout Builder. So.. to make the blog page flexible with additional contents, you must not assign the blog page on the said option then add the Blog Posts element instead.
Best regards,
Ismael
Hey!
Request your quote with all the details here:
http://kriesi.at/contact/customization
The login here is part of the forum system (bbPress, which is compatible with Enfold).
Regards,
Josue