Hi Sai!
I believe that’s called a multi-step form, you can do something like that with Gravity Forms (which is compatible with Enfold).
Regards,
Josue
This reply has been marked as private.
Merhaba yiğit bey magazin element kullandığımda yazı başlığını değilde sayfaya ait başlığı (title) çekiyor örnek resimde olduğu gibi resim http://kriesi.at/themes/enfold/homepage/home-v10-magazine/ bu sayfaya ait resim teşekkürler.
What i want in footer:
1) more than 5 column
2) individual widget spacing (css)
What i found:
footer.php : case 6: $class = ‘av_one_sixth’; break; <<< there can be 6 columns, BUT enfold option shown only 5
Is there any easy way to do it?
or
i have to hard code and put the widget shortcode into footer.php one by one?
Hello –
I just went through all of my plugins and found that it was the WPML plugin that was causing the advanced editor to not appear.
I originally started updating everything on the site because we were having different issues with that plugin, so I assumed everything should be updated to make it work correctly. I need the WPML plugin and the enfold theme to work correctly together, which I was originally told would be fine.
What can I do now?
Thank you!
Hey!
I checked the code and the problem is that the plugin loads the old isotope 1.5 version and we use the new 2.0 version for Enfold (which is the most recent and stable version: http://isotope.metafizzy.co/ ). Unfortunately the 1.5 version is not fully compatible with 2.0 and thus the plugin code triggers an error (i.e. it calls a method with the name ‘reLayout’ which is called ‘layout’ since 2.0). Unfortunately I see no easy way to fix this. You can suggest the plugin author to update to the new isotope script version but if they don’t want to the Social Stream plugin is incompatible with Enfold 2.8.x.
Regards,
Peter
This reply has been marked as private.
Hi,
That did work by using the shortcodes and not the layout builder. Another test page I created the gallery with the layout builder using text box as with the others: http://www.gaderinge.com/test-page/
I can only use the shortcodes and not the layout builder.
Alternately, is there there a way to use the Enfold gallery and have images open in an attachment page instead of lightbox?
Thank you!
-
This reply was modified 11 years, 6 months ago by
LAHWebDesigns. Reason: Clarification and additional topic
Hi there,
i got my menu customized and it works fine (responsive etc). But if i open the site on ipad/iphone it show the orign menu from enfold. ???
Is there someting i need to do more than CSS?
Any hint?
-
This topic was modified 11 years, 6 months ago by
docperi.
Hello
I use the Plugin “Social Feed” and since the last Update of the Enfold theme, the Social Stream does not work anymore.
I asked directly the guys of the Plugin, and teh said, ist a failure of the theme, jquery would not load correctly.
I dont have skills in this, so i ask you. maybe you can have a look on this problem ?
More Details in the “Private-Area”.
Thank You
Hi!
Please take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
You can simply copy the shortcodes you have created below content and paste inside any element you want. It is not that complicated actually. If you have any questions, let us know!
Best regards,
Yigit
Hey dmaca!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.single .product_title {
font-size: 50px;
}
.single span.amount {
font-size: 30px!important;
}
.single #tab-description p {
font-size: 18px;
}
Cheers!
Yigit
Hi inboxgroup!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#header_main_alternate, .av-main-nav > li > a, #header_main { border: none !important; }
Best regards,
Yigit
This reply has been marked as private.
Hello guys,
Enfold + woocommerce
What Quick CSS i could use to adjust font size (on single product page only) for:
– product name
– product price
– product short description
Thanks!
Kind Regards,
Denis
Update: I installed enfold on a server in the UK, updates WP to 3.9.1 and I get the errors here as well. I think I have to make a screen video to proove that.
Please look here: http://youtu.be/lvvgBvkgilo
this is latest enfold with Firefox 29 and Win7 and a fresh install.
Gabriel
-
This reply was modified 11 years, 6 months ago by
Gabster.
Hey Ismael,
thanks for the quick support. I tried different browser at home and in the office with different installs of enfold. Still the same. Audioplayer in FF is added as HTML, even on the page you have created, wich I cannot edit unless I switch to text mode but then cannot add images/short codes.IE still opens wrong elements in the modal window when I click one. May be I should make a video…
The only thing my enfold installs have in common is that they run on the same server. Could this be a reason? May be user rights management? Is there a demo install of enfold anywhere I could try?
Gabriel
Hey!
You can try a different lightbox like fancybox: http://fancyapps.com/fancybox/ if the default prettyphoto lightbox doesn’t work for you. I uploaded a child theme which removes the default lightbox and replaces it with fancybox here: http://www.mediafire.com/?05ho02ecut516hu – just activate the child theme and Enfold should use fancybox as default lightbox.
Cheers!
Peter
This partially works, but I think I may need to be more clear in my explanation. I apologize for the confusion. Let me start over and be a little more clear so you understand what I am trying to do.
I am using the Enfold Child Theme so I can use custom CSS to style certain text for my website using Google Fonts. I want to insert the following line of code from Google Fonts into the <HEAD> tag:
<link href=’http://fonts.googleapis.com/css?family=Alex+Brush’ rel=’stylesheet’ type=’text/css’>
After doing this, it allows me to create a class in the CSS stylesheet and use it as such. For example, I want to use the Alex Brush font to style specific text using the following CSS code:
.fancy-1 {
font-family:'Alex Brush', cursive;
font-size: 2em;
}
What is the best method, using the Enfold Child Theme to accomplish this?
-
This reply was modified 11 years, 6 months ago by
Geekcheck.
Hey webdevsd!
1) If you want to center align the text of the input field add this code to the quick css field:
#top .avia_ajax_form .text_input{
text-align: center;
}
2) In wp-content/themes/enfold/framework/php/class-form-generator.php replace:
function text($id, $element)
{
$p_class = $required = $element_class = $value = "";
$type = 'text';
// if($element['check'] == "is_email") $type = 'email'; //cant use this because of ie8 + 9
if(!empty($element['check']))
{
$required = ' <abbr class="required" title="required">*</abbr>';
$element_class = $element['check'];
$p_class = $this->check_element($id, $element);
}
if(!empty($_POST[$id])) $value = urldecode($_POST[$id]);
$this->elements_html .= "<p class='".$p_class.$element['class']."' id='element_$id'>";
$form_el = ' <input name="'.$id.'" class="text_input '.$element_class.'" type="'.$type.'" id="'.$id.'" value="'.$value.'"/>';
$label = '<label for="'.$id.'">'.$element['label'].$required.'</label>';
if(isset($this->form_params['label_first']))
{
$this->elements_html .= $label.$form_el;
}
else
{
$this->elements_html .= $form_el.$label;
}
$this->elements_html .= "</p>";
}
with
function text($id, $element)
{
$p_class = $required = $element_class = $value = "";
$type = 'text';
// if($element['check'] == "is_email") $type = 'email'; //cant use this because of ie8 + 9
if(!empty($element['check']))
{
$required = ' <abbr class="required" title="required">*</abbr>';
$element_class = $element['check'];
$p_class = $this->check_element($id, $element);
}
if(!empty($_POST[$id])) $value = urldecode($_POST[$id]);
if(empty($value)) $value = $element['label'];
$this->elements_html .= "<p class='".$p_class.$element['class']."' id='element_$id'>";
$form_el = ' <input name="'.$id.'" class="text_input '.$element_class.'" type="'.$type.'" id="'.$id.'" value="'.$value.'"/>';
$label = '<label for="'.$id.'">'.$element['label'].$required.'</label>';
if(isset($this->form_params['label_first']))
{
$this->elements_html .= $label.$form_el;
}
else
{
$this->elements_html .= $form_el.$label;
}
$this->elements_html .= "</p>";
}
and
function textarea($id, $element)
{
$p_class = $required = $element_class = $value = "";
if(!empty($element['check']))
{
$required = ' <abbr class="required" title="required">*</abbr>';
$element_class = $element['check'];
$p_class = $this->check_element($id, $element);
}
if(!empty($_POST[$id])) $value = urldecode($_POST[$id]);
$this->elements_html .= "<p class='".$p_class.$element['class']."' id='element_$id'>";
$this->elements_html .= ' <label for="'.$id.'" class="textare_label hidden textare_label_'.$id.'">'.$element['label'].$required.'</label>';
$this->elements_html .= ' <textarea name="'.$id.'" class="text_area '.$element_class.'" cols="40" rows="7" id="'.$id.'" >'.$value.'</textarea>';
$this->elements_html .= "</p>";
}
with
function textarea($id, $element)
{
$p_class = $required = $element_class = $value = "";
if(!empty($element['check']))
{
$required = ' <abbr class="required" title="required">*</abbr>';
$element_class = $element['check'];
$p_class = $this->check_element($id, $element);
}
if(!empty($_POST[$id])) $value = urldecode($_POST[$id]);
if(empty($value)) $value = $element['label'];
$this->elements_html .= "<p class='".$p_class.$element['class']."' id='element_$id'>";
$this->elements_html .= ' <label for="'.$id.'" class="textare_label hidden textare_label_'.$id.'">'.$element['label'].$required.'</label>';
$this->elements_html .= ' <textarea name="'.$id.'" class="text_area '.$element_class.'" cols="40" rows="7" id="'.$id.'" >'.$value.'</textarea>';
$this->elements_html .= "</p>";
}
If you want to overwrite the contact form class with a child theme I recommend to copy the entire class within the file (starting with:
if( ! class_exists( 'avia_form' ) )
into your child theme functions.php file and to modify the code there.
Regards,
Peter
Hi!
You can add this code to the quick css field (Enfold > Theme Options) or into the child theme style.css file. There’s no need to add it to the head section directly. If you really want to print the code directly you can insert this code into the functions.php file:
function my_custom_js() {
echo '<style>
.fancy-1 {
font-family:"Alex Brush", cursive;
font-size: 2em;
}</style>';
}
add_action('wp_head', 'my_custom_js');
Cheers!
Peter
Hi!
If you just want to show/hide/replace some menu links on a certain page you can also activate the “conditional menu” which comes with Enfold. Just insert this code into the child theme functions.php file:
add_theme_support('avia_conditionals_for_mega_menu');
and Enfold will add some options to the menu page (Appearance > Menus) which help you to configure the visibility of the menu items.
Best regards,
Peter
Hi, I have a couple of pages on the web site I’m developing that are shorter than 100% of a full-width browser height on a computer monitor. I want to force all pages to be at least 100% browser height. What custom CSS rules can I add to achieve this with the Enfold template?
Hi!
1) Please make sure you’re using the latest version of Enfold 2.8.1. If not please update the theme.
2) You posted the username but not the password and we can’t login without the password.
Cheers!
Peter
Hey romero2!
Please try re-updating the theme via FTP – http://vimeo.com/67209750
If that does not work, add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.main_color .avia-icon-list .iconlist_icon {
background-color: red;
}
Best regards,
Yigit
Hey Michael!
Please go to Enfold theme options > Header Layout > Header Layout > Header Title and Breadcrumbs and choose not to display both of them
Cheers!
Yigit
Hey!
Please go to Appearance > Menus and create a new menu and check Enfold Secondary Menu under Menu Settings -http://i.imgur.com/nf1Axwv.png
Then choose to display menu on the header in Enfold theme options > Header Layout > Extra Elements
Best regards,
Yigit
Hi!
Thank you for the access.
There’s a problem with your installation. The enfold theme is inside the wp root directory. Maybe the index.php has been overwritten with the enfold theme files. Please remove the enfold theme files on the root directory then upload the wordpress files again.
Cheers!
Ismael
When trying to insert line breaks/spaces in Avia Layout editor > Text blocks, line breaks are not saving. I’ve tried adding the breaks in visual & text modes but after Saving it just reverts back to no line breaks. I am using the latest versions of Enfold & WordPress.
Please advise. Thanks
Hey ben8010!
Thank you for visiting the support forum!
Do you mind providing a screenshot of what you’re trying to do? Note that you can move the menu below the logo on Enfold > Header Layout > Header Layout > Menu and Logo Position. Select the logo position with the Menu below options.
Cheers!
Ismael