Forum Replies Created
-
AuthorPosts
-
July 29, 2013 at 11:24 am in reply to: Bug: Custom Sidebar not showing up when other Loop is on Page #131666
Hi!
I can’t reproduce this bug on my test servers. 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
The blog page does currently not support this option. Please open up index.php and delete
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
1) Yes – go to “Settings > Discussions” and deselect the “Allow people to post comments on new articles” checkbox.
2) Yes – please use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translate the missing text strings. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).
Hallo,
soweit ich weiß sind die related posts schon zufällig angeordnet. Möglicherweise musst du erst ein paar Einträge mit den gleichen Tags versehen, damit dieser Effekt sichtbar wird. Derzeit verwendet Kriesi in wp-contentthemesenfoldincludesrelated-posts.php folgende Abfrage:
$my_query = get_posts(
array(
'tag__in' => $tag_ids,
'post_type' => get_post_type($this_id),
'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
'orderby'=>'rand',
'post__not_in' => array($this_id))
);um die related posts darzustellen. Der ‘orderby’=>’rand’, Parameter stellt dabei sicher, dass diese Posts in zufälliger Reihenfolge angezeigt werden.
We use the standard wordpress oembed api: http://codex.wordpress.org/Embeds which does currently not support additional parameters (like youtube player controls customization, etc.). I’d suggest to embed the iframe with the youtube video directly. You can use this generator: https://developers.google.com/youtube/youtube_player_demo to create the right iframe code.
I noticed that you maybe need to add the code at the very top of functions.php. Replace
<?php
global $avia_config;with
<?php
global $avia_config;
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:400,600&subset=latin-ext';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:400,600&subset=latin,latin-ext';
return $fonts;
}and it should work. Please don’t forget to save the theme options again.
2) The animations don’t work because some files are missing on your server – please re-upload/re-install the theme. Chrome reports
Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/prettyPhoto/css/prettyPhoto.css?ver=1
Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1
Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/mediaelement/mediaelement-and-player.min.js?ver=1
Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/avia-compat.js?ver=1
Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/avia.js?ver=1
Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/shortcodes.js?ver=1
Failed to load resource: the server responded with a status of 404 (Not Found) http://aetherdesign.cz/wp-content/themes/enfold/js/prettyPhoto/js/jquery.prettyPhoto.js?ver=3.1.5July 29, 2013 at 6:51 am in reply to: How to add missing Entypo icons for Icon List or Icon Box (Enfold Theme) #131754Hi!
Afaik this is not easily possible because these icons are probably missing in the font file but I’ll mark this thread for Kriesi.
Regards,
Peter
Hi,
1) You can use following code – insert it into the quick css field
.social_header .main_menu ul:first-child > li a {
font-size: 16px;
}2) That’s imo not easily possible if you want a responsive website/menu. One solution would be to add a margin/padding to the link items or to increase the width of the main menu – however both solutions would break the responsive design.
3) You can use following code
.social_header .main_menu ul:first-child > li a {
letter-spacing: 0.2em;
}1) Use following css code to change the bg color of the top navigation bar
.header_color .container_wrap_meta{
background: #f8f8f8;
}2) For the link color use
.header_color .sub_menu>ul>li>a{
color: #f8f8f8;
}3) That’s not possible. If the logo is transparent you’ll always see the bg color of the container behind the logo (eg by default white like here: http://kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/ )
4) You can change the link bg color & the dropdown bg color with
.bottom_nav_header.social_header .main_menu ul:first-child > li a, #header_main_alternate, .bottom_nav_header.social_header .main_menu ul:first-child {
background: #f8f8f8;
}5) Change the color with
.header_color .main_menu ul:first-child > li a:hover, .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a, .header_color .main_menu ul:first-child > li.active-parent-item > a{
color: #f8f8f8;
}for the selected/active item and
.bottom_nav_header.social_header .main_menu ul:first-child > li a{
color: #f8f8f8;
}for all other menu items.
The “entries from custom taxonomies” setting makes sense if you registered one or more custom taxonomies (eg by default Enfold registers the “Portfolio Entries” taxonomy). Then you can query posts from these taxonomies instead of the default posts/categories.
July 28, 2013 at 11:35 am in reply to: Link to an extended ajax Portfolio item from a different page #131680Hi!
You can add it to the feature request thread. If more user request it we’ll add it to the theme framework.
Regards,
Peter
Please don’t mix both things up. If you select a page as “blog” page (Enfold > general settings) this page will use a special blog template and it will ignore all “layout elements”, etc.
The blog template will always use a grid of 3 columns and it will show the numbers of entries you selected on the “Settings > Reading page” (“Blog pages show at most”).
If you want to display a customized blog (different number of columns, entries per page, etc.) deselect the “Blog” page (Enfold > general settings) and then this blog page will show your “Layout elements”.
If you get a php error (or “white screen of death”) please increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Please make sure you’re using the latest version of the theme (v1.8.4).
You should be able to use a full width Revolution slider with the latest theme version (1.8.3 or 1.8.4). This post: https://kriesi.at/support/topic/fullwidth-in-showbiz-pro will help you. You can use the same css code/workflow to stretch the revolution slider.
Hey!
Solved. User modified the default portfolio post type and this modification broke the layout builder.
Regards,
Peter
July 28, 2013 at 10:11 am in reply to: Enfold – WPML. Error/Warning: Warning: uasort(): Array was modified by the user #131737Hi,
If you want to find out if it’s a theme related issue please deactivate Enfold and activate the default WordPress theme (twentytwelve theme). If the issue is not related to Enfold it’s a WPML plugin bug and you need to report it to the WPML devs.
You can also try to deactivate the debug mode in wp-config.php to get rid of the php warning: http://codex.wordpress.org/Editing_wp-config.php#Debug
Hi!
Please read this thread: https://kriesi.at/support/topic/i-cant-install-it-1 – maybe it helps you too.
Regards,
Peter
Hi!
You can try this plugin: http://wordpress.org/plugins/raw-html-snippets/ – it allows you to insert raw html code snippets anywhere you want to.
Regards,
Peter
Hey!
I selected the wrong element. The li element has the id #menu-item-search and not the a href element :)
Best regards,
Peter
Hey!
Can you post a link to your website please?
Regards,
Peter
Hi!
Please try to re-install the theme. Maybe one or more js files are damaged/corrupt.
Regards,
Peter
Hi!
Please post your final translation here: https://kriesi.at/support/topic/please-contribute-and-translate-enfold – it will help other users too :)
Best regards,
Peter
Replace
$output .= "<div class='slide-meta-time'>" .get_the_time(get_option('date_format'), $the_id)."</div>";
with
$taxonomies = get_object_taxonomies(get_post_type($the_id));
$cats = '';
$excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);
if(!empty($taxonomies))
{
foreach($taxonomies as $taxonomy)
{
if(!in_array($taxonomy, $excluded_taxonomies))
{
$cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
}
}
}
if(!empty($cats))
{
$output .= "<div class='slide-meta-time'>";
$output .= $cats;
$output .= "</div>";
}Hey!
Can you post a link to a page where this issue occurs please?
Regards,
Peter
Hi!
Glad it works now :)
Best regards,
Peter
Hi!
Which content do you mean? Please elaborate. Do you mean the dropdowns which allow you to select pages?
Best regards,
Peter
You can try this script: http://jedfoster.github.io/Readmore.js/
Insert the compressed version. https://github.com/jedfoster/Readmore.js/blob/master/readmore.min.js at the bottom of enfold/js/avia.js. Then replace following code at the top of the file
$(document).ready(function()
{with
$(document).ready(function()
{
$('.shortdescriptiontext').readmore({
speed: 75,
maxHeight: 500
});and change the values if you want to. At least wrap your long text into a paragraph with the class “shortdescriptiontext”.
<p class="shortdescriptiontext">
My text....
</p>Hi!
Please try to follow the instructions here: https://kriesi.at/support/topic/advanced-layout-editor-dissappeared-please-help
Regards,
Peter
Hi!
Did you find a solution? I’m asking because the topic is marked as resolved.
Regards,
Peter
Hi!
Yes, please try to add following code into the quick css field
.header_bg {
opacity: 1 !important;
}Best regards,
Peter
-
AuthorPosts