Hey,
Sorry for the delay. You can move the menu via CSS. Just add this on your custom.css or Quick CSS
#menu-top-menu {
margin-top: 30px;
margin-left: -180px;
}
Adjust the values.
Regards,
Ismael
Hi,
I think that is the logo. Just insert your logo on Enfold > Logo.
Regards,
Ismael
Hi,
@formateins: Thanks for the tip.
Or you can add this on your functions.php
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}
Cheers,
Ismael
Hi,
It is weird. Please download the latest version, Enfold 1.5. It might fix the issue.
Or
You can change the memory limit within the wp-config.php file or in the htaccess file:
define('WP_MEMORY_LIMIT', '128M');
If you have access on the .htaccess file, add this code
php_value memory_limit 128M
Regards,
Ismael
Hi,
You can probably achieve this using Contact Form 7. Then edit the styling via CSS.
Regards,
Ismael
I can see other posts being responded to. Can anyone hear me here?
Hi,
If you want to disable the prettyPhoto feature on Enfold, please open js >avia.js then find this code
//activates the prettyphoto lightbox
if($.fn.avia_activate_lightbox)
$('body').avia_activate_lightbox();
Replace that with
//activates the prettyphoto lightbox
//if($.fn.avia_activate_lightbox)
//$('body').avia_activate_lightbox();
Remove browser cache then reload the page.
Regards,
Ismael
Hi, I think I found out where that code is being generated. But I’m still left stunned as the $attributes variable seem to not contain anything that adds inline styles. Where else should I look?
$attributes = ! empty( $item->attr_title ) ? ‘ title=”‘ . esc_attr( $item->attr_title ) .'”‘ : ”;
$attributes .= ! empty( $item->target ) ? ‘ target=”‘ . esc_attr( $item->target ) .'”‘ : ”;
$attributes .= ! empty( $item->xfn ) ? ‘ rel=”‘ . esc_attr( $item->xfn ) .'”‘ : ”;
$attributes .= ! empty( $item->url ) ? ‘ href=”‘ . esc_attr( $item->url ) .'”‘ : ”;
$item_output .= $args->before;
$item_output .= ‘<span class=”avia-bullet”></span>’;
$item_output .= $args->link_before . apply_filters( ‘the_title’, $item->title, $item->ID ) . $args->link_after;
//if($depth === 0) $item_output .= ‘<span class=”avia-menu-fx”><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></span>’;
$item_output .= ‘‘;
$item_output .= $args->after;
Anyone, pls? Just tell me where to fix it. I can’t seem to find which script keeps on adding inline styles to the menu.
Hi, I am trying to vertically align the menu at the baseline of the logo but it doesn’t seem to work. Here is the page in question: http://175.107.134.9/~peterhar/?page_id=1167
Furthermore, the a tags in the ul menu is being appended with a fixed height and fixed line height. However, I can’t figure out which js is doing that. Anyone can help?
Hi,
You can use a url like this http://localhost/kriesi/enfold/?page_id=1403#tab-id-2.
#tab-id-2 refers to a certain tab.
Regards,
Ismael
First set of translation to Brazilian portuguese 12% done
Files available at http://www.andreanolanusse.com/download/pt_BR.zip
I’m already using on my blog
Hi,
You have a lot of options to open an image to a new window.
1.) Insert a text block then add an html tag. Something like this
<a target="_blank" href="YOURURLHERE"><img src="YOURIMAGEHERE" /></a>
2.) You can edit config-templatebuilder > avia-shortcodes > image.php then find this code
$output.= "<a href='{$link}' class='avia_image ".$meta['el_class'].$this->class_by_arguments('align' ,$atts, true)."'><img class='avia_image {$class}' src='{$src}' alt='' /></a>";
Replace it with
$output.= "<a target='_blank' href='{$link}' class='avia_image ".$meta['el_class'].$this->class_by_arguments('align' ,$atts, true)."'><img class='avia_image {$class}' src='{$src}' alt='' /></a>";
3.) This is the rendered html tag when using the Image shortcode via AviaBuilder. You can copy and paste it manually. Change the anchor tag link and the image url.
<a href="http://www.yourlinkhere.com" class="avia_image avia-builder-el-49 el_after_av_slideshow_full avia-builder-el-no-sibling avia-align-center "><img class="avia_image avia_animated_image avia_animate_when_almost_visible right-to-left avia_start_animation" src="http://localhost/kriesi/enfold/wp-content/uploads/2011/12/imac_big_demo-300x180.png" alt=""><span class="image-overlay overlay-type-extern" style="opacity: 0; left: 0px; top: 0px; display: block; height: 180px; width: 300px;"><span class="image-overlay-inside"></span></span></a>
Regards,
Ismael
Hi,
That file is still in there
http://www.andypeck.co.uk/wp-content/themes/enfold/config-layerslider/LayerSlider/skins/.DS_Store/skin.css
Take a look at a 3d representation of your page. http://i.imgur.com/ToEFKt9.png Each panel here is some html object that either has its own background color or has an inherited background color. So you would need to investigate each one.
This one is probably it,
.header_color .main_menu ul {
background-color: rgb(36, 31, 29,.5);
}
#top .main_menu ul {
background-color: rgb(36, 31, 29,.5);
}
#top .main_menu {
background-color: rgb(36, 31, 29,.5);
}
Change the .5 which is 50% transparent
Thanks,
Nick
`
Halfway with the dutch translation, damn this is soul-destroying :). I hope I’m doing this correctly, 620 more strings to go. Will continue tomorrow and share a link when its done.
Hey Tony!
There are quite a few differences. The theme works with woocommerce so thats not a big problem if thats the major focus of your site. But shortcodes and dynamic templates work in a very different way so it might be necessary to re-create some of your existing pages…
Hi,
This shortcode
[loginform]
Will create a login form on the maintenance page , just enter it in the text area used to show a coming soon message to visitors by that plugin.
Thanks,
Nick
Dear All,
Can I replace propulsion with enfold? I was wondering what the differences were between them as Enfold is labelled as a business theme and not ecommerce.. Am thinking of a purchase!;;
Respect, Tony
Hey! I have never used w3 total cache so I cant really help a lot here.
The live server uses a combination of wp supercache and better-wp-minify:
http://wordpress.org/plugins/bwp-minify/
http://wordpress.org/plugins/wp-super-cache/
Those 2 in combination should work without problems, maybe you might like to test them instead of w3 total cache :)
Ismael is correct. That’s how I did it.
Thanks,
– John
Hi,
I purchased Enfold yesterday but cannot install and am desperate to do so I have tried FTP, upload via parallels panel and installing the zip file. Any help would be appreciated.
Thanks
Hi,
I created a new page for the posts, and set this page as default page for posts (in Enfold settings)
2 questions:
1/ What’s the advantage of selecting the page? I mean, I don’t see any difference in the default page and the new page I selected. Even the slider I added doesn’t show
2/ In my page, I selected no sidebar in the ‘layout’ options, but still I see a sidebar with nav content at the right side. How can I disable it and why does it appear ? Is it a bug or (porbably) something I mis-unerstood?
http://goo.gl/3TH7m
Thanks,
Thomas
And again…
Currently, any portfolio item won’t show up on my page leading to a 404. Portfolio Grids are fully functional – only the detail page of an entry won’t do it.
After adding flush_rewrite_rules() to the theme pages and posts are working fine. Unfortunatley, the custom post type portfolio won’t make it.
If I deactivate Enfold switching to twentytwelve, everything is fine. To test it with a CPT I created a simple one by myself.
Also, I left the custom slug as is (portfolio) and changed only the language options (NL, EN) to portfolio-nl an portfolio-en. The slugs ain’t used in any other place (no page, no post, no tax, no tag, no cat).
I’ve searched the whole support forums here and also found several threads to this issue on WPML support. None of the suggested solutions (and/or workarounds) are quite functional for me.
WPML is configured to use the folder type (e. g. domain.com/en/) so I think this is maybe conflicting with the basic .htaccess rules.
Do you have any tips or hints for me?
Meanwhile I will investigate wp_options table on rewrite rules a dive a bit deeper into this… :-/
Thanks…
PS: Tried also /%category%/%postname%/ – but category won’t show up in permalink…
Hi there,
I’m trying to do something that the Enfold form builder probably can’t do. I need a solution that allows me to create a form as part of a “regular” text block… something like
Hi, my name is [______] and I work for [_____]. My email address is [_____] and I’d love to get some info about your new [___dropdown menu with products___].
So that makes this not an Enfold questions as such, but maybe someone can help. Does a form builder like that exist, maybe as a plugin? My previous searches weren’t successful.
Thanks & best regards,
Andy
Hey!
Found a solution for your problem that will be included in the next patch. for now you can add this to your custom.css stylesheet in folder /css/ or to the quick-css panel located in your wordpress backend at Enfold->Styling:
.grid-content {background-color:#fff;}
That should fix the issue
hello,
I wish to get rid of enfold prettyphotobox, because I want to implement social gallery plugn from codecanyon.
I noticed that when enabling the social gallery plugin, two lightboxes opens. one in the background (enfold native) and another in front (other plugin), then I need to close two windows.
is there a way to use just the social gallery plugin feature as far as you know?
thanks in advance. ;)
How do one get the text to fade and slide in at the same time as on this demo page?
http://kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/