Forum Replies Created
-
AuthorPosts
-
Hi robertscott!
It looks the same to me. Are you referring to the styling? Take a screenshot and highlight what your trying to do so we can get a better idea.
Best regards,
ElliottHi isa_sss!
I’m not sure. We use a lot of the hooks it listed. It’s unclear if it’s going to cause any problems when you import though.
I would do a backup and try it out.
Cheers!
Elliott-
This reply was modified 9 years, 7 months ago by
Elliott.
Hi Boris!
In the /enfold/framework/php/class-form-generator.php file change line 870 from this.
$message .= $element['label'].": ".$field_value." <br/>";
To this.
$message .= $field_value." <br/>";
Regards,
ElliottHey mistermills!
I don’t think the LayerSlider can transition between sliders. It’s just the slides. Which demo are you referring to?
Best regards,
ElliottHey fbords!
Add this to your custom CSS.
#top #header_main_alternate { background-color: black !important; }
Cheers!
ElliottHi webmons!
Are you using the layout builder? If so then the templates are not going to be used. You’ll need to use the default editor.
Cheers!
ElliottDecember 1, 2015 at 6:23 pm in reply to: Any way to have background image in Color Section resize on mobile device? #545447Hi stacieclark!
Add this to a codeblock element in the page.
<style type = "text/css"> #av_section_1 { background-size: 100% auto !important; } </style>
You can set the “auto” to 100% as well if you want it to stretch to fill the height also. Or you can set the background repeat to “Stretch to fit”.
Regards,
ElliottHi hjs200!
Add this to your custom CSS.
span.breadcrumb-title { display: none; }
Cheers!
ElliottHi Jon!
It’s loading fine on my end. It just depends on your connection as it has to download content from facebook. Enfold would not be affecting that speed at all.
Regards,
ElliottDecember 1, 2015 at 6:17 pm in reply to: Limit navigation between posts to one category of woocommerce product #545439Hi frenchfries!
I think that should be working. Please update WordPress to the latest version and let us know when your done.
Also, it’s unrelated but you need to update Enfold to 3.4.4.
Cheers!
ElliottDecember 1, 2015 at 6:09 pm in reply to: Show Google map markers in random order and ALT text #545435Hi DavyE!
1. That would take a lot of time and code and would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.
2. It’s actually a title instead of alt text and you can find it on line 598 in the /enfold/js/shortcodes.js file.
title: _self.$data.marker[key].address,
Regards,
ElliottHi Bernd!
It requires a bit of customization. You can try this out, http://kriesi.at/documentation/enfold/enable-deeplinking-to-the-portfolio-ajax/.
It was for a previous version of Enfold but it still may work for the latest version.
Cheers!
ElliottDecember 1, 2015 at 6:00 pm in reply to: Re-direct blank portfolio search results to custom link #545426Hey MF!
That’s going to take a lot of time and code to implement so it would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.
Cheers!
ElliottHi André!
That’s kind of bordering on custom work. It would be best to hire a freelancer to help you out with that customization.
Or you can consider using just CSS for this. You can target a page by it’s ID like so.
.page-id-1167 a { color: red !important; }
Cheers!
ElliottHi SphereEvenements!
Your using Open Sans which is a Google Font. It does not go below 300 weight, https://www.google.com/fonts#UsePlace:use/Collection:Open+Sans.
Cheers!
ElliottHey robinsluysmans!
Try doing #2 here, http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/.
Regards,
ElliottHey Arthith!
You have a bunch of line breaks being inserted between each tab which should not be there. Let’s try the following.
1. Deactivate all plugins.
2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. After doing this you should be using version 3.4.4.
If your still having trouble after doing the above two steps then send us a WordPress login and we’ll take a closer look.
Cheers!
ElliottHey heinrichvk!
You can add them inside a codeblock element if your using the layout builder. If your using the default editor then just switch to the “Text” editor instead of the “Visual” editor and paste the code there.
Regards,
ElliottHi Phenomedial!
We currently do not have a file upload field setup for our forms. It is going to take a bit of work to add one so it would be best to hire a freelancer to help you out with this customization.
Or consider creating a feature request here, https://kriesi.at/support/enfold-feature-requests/, and if it gets enough interest then we may see something get added in a future update.
Best regards,
ElliottHey André!
It’s possible but would take a lot of time and code and would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.
Best regards,
ElliottHi eviang!
I deactivated all of your plugins and the javascript error went away. I think it’s your autooptimize plugin.
Cheers!
ElliottHi rmavila!
Navigate to Dashboard > Enfold > Sidebar Settings and make sure the “Page Sidebar Navigation” option is not checked.
Regards,
ElliottHey Tileo12!
Try this out, https://kriesi.at/support/topic/transparent-header-layout-issues/#post-544853.
Send us a link when your done adding it in and we’ll see if we can get you some CSS to use.
Regards,
ElliottHey!
Try adding this to your child theme functions.php file.
add_shortcode( 'breadcrumb', 'enfold_customization_breadcrumb' ); function enfold_customization_breadcrumb(){ global $avia_config; if(!$id) $id = avia_get_the_id(); $header_settings = avia_header_setting(); $defaults = array( 'title' => get_the_title($id), 'subtitle' => "", //avia_post_meta($id, 'subtitle'), 'link' => get_permalink($id), 'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div></div>", 'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true), 'breadcrumb' => true, 'additions' => "", 'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/ ); if ( is_tax() || is_category() || is_tag() ) { global $wp_query; $term = $wp_query->get_queried_object(); $defaults['link'] = get_term_link( $term ); } else if(is_archive()) { $defaults['link'] = ""; } // Parse incomming $args into an array and merge it with $defaults $args = wp_parse_args( $args, $defaults ); $args = apply_filters('avf_title_args', $args, $id); //disable breadcrumb if requested $args['breadcrumb'] = true; //disable title if requested $args['title'] = false; // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before. extract( $args, EXTR_SKIP ); if(empty($title)) $class .= " empty_title "; $markup = avia_markup_helper(array('context' => 'avia_title','echo'=>false)); if(!empty($link) && !empty($title)) $title = "<a href='".$link."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".esc_attr( $title )."' $markup>".$title."</a>"; if(!empty($subtitle)) $additions .= "<div class='title_meta meta-color'>".wpautop($subtitle)."</div>"; if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true)); $html = str_replace('{class}', $class, $html); $html = str_replace('{title}', $title, $html); $html = str_replace('{additions}', $additions, $html); $html = str_replace('{heading}', $heading, $html); if(!empty($avia_config['slide_output']) && !avia_is_dynamic_template($id) && !avia_is_overview()) { $avia_config['small_title'] = $title; } else { return $html; } }
That will let you display the breadcrumbs with the following shortcode.
[breadcrumb]
You will most likely want to style it a bit so let us know when your done adding it in and we’ll see if we can get you some CSS to use.
Best regards,
Elliott-
This reply was modified 9 years, 7 months ago by
Elliott.
November 30, 2015 at 10:28 pm in reply to: Flexible positioning of the search bar and transparent background of main menu #544847Hey!
Try adding this to your custom CSS.
input::-webkit-input-placeholder { color:transparent; } input:-moz-placeholder { color:transparent; } /* FF 4-18 */ input::-moz-placeholder { color:transparent; } /* FF 19+ */ input:-ms-input-placeholder { color:transparent; } /* IE 10+ */
Best regards,
ElliottHi!
@Tobias-B-Conrad, I checked your link but it’s playing fine. It’s not reloading. Did you get it sorted?Regards,
ElliottHey!
Did you get it sorted? It seems to be displaying fine on my end now.
Cheers!
ElliottHi!
Try adding this to your custom CSS.
.home .container_wrap_first { background: url("URL to your image") !important; }
That CSS will set the home page background for the main container.
Cheers!
ElliottHey!
You can find the javascript around line 435 in the /enfold/js/shortcodes.js file but this is bordering on custom work so it would be best to hire a freelancer to help you out with this customization. You might be able to find a google maps plugin that has this feature.
Cheers!
ElliottHi nberdugo!
Your wanting to display their gravatar as one of the icons that display on hover? It’s possible but would take a lot of time and code to implement. I would look into hiring a freelancer for this customization or consider creating a feature request here, https://kriesi.at/support/enfold-feature-requests/, and if it gets enough interest then we may see something get added in a future update.
Best regards,
Elliott -
This reply was modified 9 years, 7 months ago by
-
AuthorPosts