Forum Replies Created
-
AuthorPosts
-
Hey basilicon!
No, such a feature is not supported by the contact form at the moment.
Best regards,
PeterHey mAqq!
Did you solve the problem? I just visited your website and the images display fine for me: http://www.clipular.com/c?4691520619806720=-rJj5SOHSVWDmfNjdHwBkkxEd5I&f=.png
Regards,
PeterNovember 9, 2013 at 8:40 am in reply to: How can I set Enfold to swedish using Code Styling Localization? #186418Hi!
Please create us an admin account and post the login credentials as private reply. I’ll look into it.
Cheers!
PeterHi!
If you want to remove the featured image from single pages open up /wp-content/themes/enfold/includes/loop-portfolio-single.php and delete
if($thumb) echo "<div class='page-thumb'>{$thumb}</div>";
Regards,
PeterHi tfboy!
No, this is not possible at the moment. You can change the slug but you can’t use a variable (like category, month, etc.).
Regards,
PeterHey!
I think my fix works. I used the code someone posted here: http://en.forums.wordpress.com/topic/vertically-stretched-images-in-ie and adjusted it a bit
.avia-content-slider .slide-image img { max-width: 100%; width: auto; }
At least IETester seems to display the images properly now. I’ll tag this thread for Kriesi and ask him to include the code with the next update.
Cheers!
PeterHey!
It’s currently not possible to use the “Add form” button with the layouit builder elements because the Gravity Form plugin checks the url path of the admin page and will only load the required scripts if you’re using the default editor. Personally I recommend to make a small “how-to” video with http://www.screenr.com/ which shows the rest of the staff how to insert the Gravity Forms shortcode into a textblock.
Cheers!
PeterNovember 8, 2013 at 10:22 am in reply to: Enfold RDF-Breadcrumb for rich snippets: No sub categories #186060Hey tcoq!
Yes it’s a limitation of the Enfold breadcrumb. We’ll improve it in the next version – for now open up /wp-content/themes/enfold/framework/php/class-breadcrumb.php and replace
if('post' == $post_type) { $category = get_the_category(); $ID = $category[0]->cat_ID; $parents = get_category_parents($ID, TRUE, '$$$', FALSE ); $parents = explode("$$$", $parents); foreach ($parents as $parent_item) { if($parent_item) $trail[] = $parent_item; } }
with
if('post' == $post_type) { $category = get_the_category(); foreach($category as $cat) { if(!empty($cat->parent)) { $parents = get_category_parents($cat->cat_ID, TRUE, '$$$', FALSE ); $parents = explode("$$$", $parents); foreach ($parents as $parent_item) { if($parent_item) $trail[] = $parent_item; } break; } } }
Cheers!
PeterNovember 8, 2013 at 9:58 am in reply to: Streched Homepage Layout, Boxed Layout for remainder of site #186058Hi!
I’m not sure if this modification works flawlessly but you can try to replace following line in header.php
$style = $avia_config['box_class'];
with
$style = $avia_config['box_class']; if(is_home() || is_front_page()) $style = 'boxed';
On the theme options page select the “stretched” layout.
Best regards,
PeterHey!
Please create me an admin account and post the login credentials as private reply. I need it to insert my css code into the quick css field and to check if it works. I can reproduce the issue with IETester now but it doesn’t allow me to test the css code to check if it solves the issue or not.
Best regards,
PeterHi!
If you really want to overwrite the function you can try if following code works
add_action( 'plugins_loaded', 'avia_wpml_seo_fix' ); function avia_wpml_seo_fix(){ global $sitepress; remove_action('wp_head', array($sitepress, 'head_langs')); if($sitepress->settings['seo']['head_langs']){ add_action('wp_head', 'avia_wpml_head_langs'); } } function avia_wpml_head_langs(){ global $sitepress; $languages = $sitepress->get_ls_languages(array('skip_missing' => true)); foreach($languages as $code => $lang){ if($code != $sitepress->get_current_language()){ if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']); printf('<link rel="alternate" hreflang="%s" href="%s" />' . PHP_EOL, $sitepress->get_language_tag($code), str_replace('&', '&', $lang['url'])); } } }
I didn’t test it and we probably won’t include it in the theme files but maybe you can use it as a temporary solution until the WPML devs add a filter to the head_langs function.
Cheers!
PeterHi!
You also need to select the taxonomy – instead of Devins code above use
http://www.yoursite.com/feed/?post_type=portfolio&portfolio-entries=css
and replace “css” with your category slug and http://www.yoursite.com/ with your website url.
Cheers!
PeterHey!
Ok, I looked into the code and we can’t fix this. The head_langs() function in wp-content\plugins\sitepress-multilingual-cms\sitepress.class.php doesn’t allow us to change the url (there’s no filter / hook which would allow us to replace the url). You can try to contact the WPML support team – maybe they can provide an useful tip or they can add a filter to the function in the next version. Otherwise I recommend to use the Yoast workaround mentioned above and to deactivate the WPML seo setting.
We’d need to overwrite the entire head_langs function at the moment which I don’t want especially because the plugin core files/functions may change and this would break our theme.
Regards,
PeterHi!
We’ll look into it. If we can find a workaround on our end we’ll include a fix, otherwise I think the Yoast plugin solution is better anyway because you’ve more control over the output.
Regards,
PeterHey shelteredinsound!
I didn’t test it but you should be able to limit the width of the masonry element with following css code
.main_color .av-masonry { max-width: 1310px; margin-left: auto; margin-right: auto; }
Regards,
PeterHey Branndon!
You can use the code someone posted here: http://wordpress.stackexchange.com/questions/39817/sort-results-by-name-asc-order-on-archive-php – insert it into enfold/functions.php.
Cheers!
PeterHey petersandin!
1) We’ll make sure that the headline styling is consistent with the next update – for now you can fix it with
#top .title_container .main-title{ font-family: 'Yanone Kaffeesatz', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif; }
2) No, the dropdown doesn’t support the font icon. You can try to use the “Slide Out” mobile menu instead which uses standard html links and I guess it supports icon fonts too.
Cheers!
PeterHey Delphiine!
1) Yes, use following css code to change the “strong” tag styling
#top #wrap_all .alternate_color strong{ color: #333; }
2) You can easily switch to a child theme. You won’t loose any settings especially because we introduced a “parent theme settings import” option with Enfold 2.3.1.
Cheers!
PeterHey!
I don’t know if Kriesi used a plugin or some custom code. I’ll mark this topic for him.
Regards,
PeterNovember 7, 2013 at 10:20 am in reply to: How can I set Enfold to swedish using Code Styling Localization? #185525Hey p_lo84!
You just need to use the Swedish version of wordpress: http://codex.wordpress.org/WordPress_in_Your_Language#Swedish_-_Svenska_.28sv_SE.29 – if the default wordpress language is set to Swedish wordpress will also load the Swedish theme translation files automatically.
Regards,
PeterNovember 6, 2013 at 10:44 am in reply to: problem with categories, not showing in right language! #185118Hi Lene!
Please create us an admin account and post the login credentials as private reply – we’ll look into it.
Cheers!
PeterHi beyondeverything!
Please try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Cheers!
PeterNovember 6, 2013 at 10:41 am in reply to: Anzeigen von events Manager Einträge mit Avia Layout builder #185116Hi!
Der Code findet sich in /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog.php – suche nach folgender Function
function query_entries($params)
Vermutlich muss man eine meta_query hinzufügen bzw mittels meta_value oder meta_value_num den orderby Wert anpassen.
Best regards,
PeterHi!
Yes – you can use the after_setup_theme hook – i.e. following function would overwrite the entry_without_sidebar thumbnail size which is define in functions.php.
function avia_after_parent_theme_setup() { global $avia_config; $avia_config['imgSize']['entry_without_sidebar'] = array('width'=>1030, 'height'=>450 ); } add_action( 'after_setup_theme', 'avia_after_parent_theme_setup', 10);
Regards,
PeterNovember 6, 2013 at 10:15 am in reply to: Use post type content on the blog post shortcode or masonry shortcode #185107Hey!
I looked into it and the query is correct. However it seems like the “Event” post type does not work with the ‘post_type’ => ‘any’ parameter. I changed the parameter value on your server and we’ll include this change in the next update. The strange thing is that the ‘post_type’ => ‘any’ works with our cpts and other cpts I tested…
Best regards,
PeterNovember 6, 2013 at 9:55 am in reply to: Forms – how to limit number of rows in message text imput window #185105Hey!
As far as I know the contact form code/class is wrapped into a “class_exists” check – thus you can overwrite it with a child theme. Just make a copy of the /wp-content/themes/enfold/framework/php/class-form-generator.php file and place it into the child theme folder. Then modify class-form-generator.php in your child theme folder and add following code to the child theme functions.php:
require_once( 'class-form-generator.php' );
to include the code/file. WordPress will load the child theme code first and the parent theme will use it because the “class_exists” check avoids that the contact form code will load a second time.
Cheers!
PeterNovember 6, 2013 at 9:50 am in reply to: how make the picture clear when I increase the size in Latest Portfolio Widget #185101Hi!
Try following code to change the image size
#top #wrap_all .image_size_widget .news-thumb, #top #wrap_all .image_size_widget .news-thumb img{ height: 44px; width: 44px; }
Cheers!
PeterHey theworldawaits!
Please try to add an important tag to your css code
p.verse { font-size: 9px !important; }
There’s no general tooltip feature at the moment but you can use the “icon” shortcode which supports a tooltip Enfold v2.4.1. Another solution would be the html5 abbr tag: http://www.w3schools.com/tags/tag_abbr.asp which can be used for a small tooltip box.
Best regards,
PeterHey!
The plugin “wp multibyte patch” contains following code in wp-content/plugins/wp-multibyte-patch/ext/ja/admin.css?ver=3.6.1
body *:not(textarea) { font-style: normal !important; font-family: sans-serif !important; }
The font-family code overwrites all other font-family values – including our icon font family. Deactivate the plugin or remove the code from the wp-multibyte css file and the fonts should work again.
Regards,
PeterHey!
I marked this thread for Kriesi. I couldn’t get the z-index value to work too but I’m not sure why.
Regards,
Peter -
AuthorPosts