Forum Replies Created
-
AuthorPosts
-
Hi!
Glad you found the culprit.
Regards,
Peter
Hey!
Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.
Best regards,
Peter
Hi,
No, right now this is not possible. You can add the idea to the feature request thread: https://kriesi.at/support/topic/enfold-feature-requests though and maybe we’ll pick it up and add a new layout element to the template builder.
August 8, 2013 at 7:24 am in reply to: Problems with Featured Video on "Blog" on Home Page through Advanced Layout #132822No, the featured image does not support a video link. However you can use the embed shortcode: http://codex.wordpress.org/Embeds or the video shortcode (since wp3.6): http://codex.wordpress.org/Video_Shortcode to embed the video into your blog post. Did you try the “video” post format? Eg Kriesi used it for the last entry here: http://kriesi.at/themes/enfold/blog/blog-multi-author/ and the video will be shown like a featured image.
Hi!
You could set the paragraph margin to 0. Try following css code
div.flex_column p{
margin: 0;
}Regards,
Peter
Can you post a link to the page where the glitch is visible please?I can’t reproduce the bug on my end and I’d like to investigate the css code first. We didn’t include this fix yet.
Hey!
Glad it works now :)
Best regards,
Peter
You need to change the top margin – set it to 176px (instead of 81px). Tbh I’d not include the logo in the menu because it eats up too much space at the top but it’s up to you.
Hey!
Try to use ftp and replace /wp-content/themes/enfold/functions.php with the original file.
Best regards,
Peter
I noticed Kriesi now calls the function which registers the image sizes directly in functions.php. So we also need to call it in the child theme – use following code to change the image sizes:
function avia_change_image_size_array()
{
global $avia_config;
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>200 ); // images for portfolio entries (2,3 column)
avia_backend_add_thumbnail_size($avia_config);
}
add_action( 'init', 'avia_change_image_size_array', 1);and instead of
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>200 ); // images for portfolio entries (2,3 column)
insert your custom sizes….
Hi!
No, as demonstrated here: http://test.inoplugs.com/imprint/ the sliders won’t affect each other. You can insert two sliders with different settings on the same page without risking any conflicts. On my demo page both slider are exactly the same but I just changed the “autoplay” setting of the second slider (I switched it off). As you can see the first slider still starts with the slideshow automatically but the second slider doesn’t show slide 2 until the user hits the “next” button.
Regards,
Peter
Hey!
I answered the same request 2 weeks ago and unfortunately nothing has changed: https://kriesi.at/support/topic/new-custom-post-type
If you need help with this task you can hire someone (I’d be also available for this job btw) or you can wait and see if we’ll add custom post types support to the theme portfolio element. This theme customization would require several hours of work and it’s simple not feasible as part of our free support service…
Regards,
Peter
Hey!
Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.
Regards,
Peter
No, I didn’t test it and tbh I doubt it works flawlessly without customization. I contacted the developers and asked them for a copy of the plugin to test it with Enfold and I just got two generic responses which basically told me it’s gpl licensed and I need to buy it to test it. As I don’t want to buy a plugin which I don’t need myself I dropped the ball at this stage. As long as the developers don’t want to cooperate with us I also won’t support it. In addition Nextgen 2.0 seems to be broken http://wordpress.org/support/plugin/nextgen-gallery and I’d not recommend to use it at the moment…
Hi!
Please update your theme to version 1.9.1. You’re using v1.8.4 which is not fully compatible with wordpress 3.6.
Regards,
Peter
Open up js/avia.js and replace
elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
with
elements.prettyPhoto({ slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
Hey!
You can easily activate/add the error border with following css code
#top #wrap_all .error .select {<br /> border: 1px solid #DF653E;<br /> }
I’d insert it into the quick css field. We’ll also include this code in the next theme update.
Regarding the other issues – we’ll keep them in mind but tbh we’ve no plans to re-write the contact form code right now and it will probably stay like this. The contact form element is intended for simply forms and not for booking forms.I’d also suggest to try advanced contact form plugins like Gravity Forms or Formidable Pro which both work well with our theme.
Regards,
PeterHi!
Great :)
Regards,
Peter
Hey!
No, right now you can’t change the width manually and the video will always stretch to the container width. You’d need to add the video into a column (eg 1/2, etc.) to shrink the width. You can also try to embed the video iframe directly into the html code.
Regards,
Peter
Hey!
Maybe you need to check the plugin configuration. If the search still points to http://my-site.com/?s=randomsearch the plugin doesn’t seem to work at all. You can use this plugin to maximize the search power of your website: SearchWP
Refer to this link in order to integrate the plugin on ajax search: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/
Regards,
PeterHi!
You can try following css code
@media only screen and (max-width: 767px){
.responsive.social_header .phone-info {
float: right;
margin-top: -21px;
}
.responsive #header .social_bookmarks {
float: left;
width: auto;
}
}Regards,
Peter
Hi!
I tagged this thread for Kriesi’s attention.
Regards,
Peter
I only noticed a small glitch if the screen re-sizes to 768px (then the breadcrumb shifts down and overlaps the title). You can fix it with following code
@media only screen and (max-width: 767px)
{
.responsive .title_container .breadcrumb {
top: -115px;
}
}The date format can be changed with a filter. Use following code and insert it at the bottom of functions.php
add_filter('avf_datepicker_dateformat','avia_change_datepicker_date');
function avia_change_datepicker_date(){
return "DD / mm / yy";
}Instead of DD/ mm / yy insert your own format. A list of all supported formats can be found here: http://www.phpeveryday.com/articles/jQuery-UI-Changing-the-date-format-for-Datepicker-P1023.html
All other strings (“Prev” and “Next”, Today, etc.) are translatable like standard text strings. I’d recommend to use codestyling: http://wordpress.org/plugins/codestyling-localization/ to scan (or re-scan) the theme files and to add the datepicker text strings to the po/mo files.
Hi!
Which header layout are you using?
Regards,
Peter
Hi!
Please try following code
#top #searchform #searchsubmit {
width: 66px;
top: 21px;
}Regards,
Peter
Hey!
Please try to deactivate all third party plugins maybe a plugin causes a js error on the menu builder page.
Best regards,
Peter
Hi!
Great :)
Best regards,
Peter
August 7, 2013 at 6:07 am in reply to: LayerSlider text blocks disappear when background is used #132475Tbh I never tried tippy or another tooltip plugin but you can try a plugin from the repository: http://wordpress.org/plugins/search.php?q=tooltip or (maybe even better) use the new html5 abbreviation tag: http://html5doctor.com/the-abbr-element/
-
AuthorPosts