Forum Replies Created
-
AuthorPosts
-
Wie kann ich eine weitere Reihe erstellen, die keine Menüpunkte, sondern ein Bild oder HTML-Code enthält?
Die “Titel” bzw “Beschreibungs” Felder unterstützen html Code – daher möchte man ein Bild anzeigen fügt man einfach ein Image HTML Element ein – verwende zB folgenden Code:
<img src="http://kriesi.at/files/envato.png" alt="" title="">
und passe die Bild url, den title & das alt Atribut an.
Für einen image link verwende:
<a href="http://google.de"><img src="http://kriesi.at/files/envato.png" alt="" title=""></a>
Hier muss man auch den href Wert (daher die Linkurl) anpassen.
Die anderen Fragen hat denke ich Hausundplan schon beantwortet.
1) The blog element (Template Builder) does not support a read more link at the moment. However we’ll add it in the next version (I already sent a patch to Kriesi).
2) You can expand the image width with following css code – insert it into the quick css field:
.template-page .big-preview {
padding: 0 0 10px 0;
}April 27, 2013 at 7:07 am in reply to: IMAGE POST ( WHEN ADDING IMAGE AS A FEATURE ) ISSUE Part 2 #115764Hey!
I tried to log in and:
1) It seems like you switched to another theme.
2) The login credentials don’t work for me.
Regards,
Peter
Hey!
Duplicate: https://kriesi.at/support/topic/enfold-13-setting-up-child-theme – I’ll mark that post for Kriesi…
Best regards,
Peter
I marked this thread for Kriesi. Tbh I’ve no idea why it doesn’t work – on my test server it works as expected and I checked the installations on two client servers and there the child themes work just fine too.
Hey!
Yes, actually the new Template Builder replaces most shortcodes. If you switch to the “Default” editor you’ll get more – however this doesn’t make much sense because the Template Builder provides the same functionality…
Best regards,
Peter
Hi!
Afaik v1.3 already contains this fix.
Best regards,
Peter
Hey!
Please post a link to your website. I tested the setting on my server and it works just fine: http://www.clipular.com/c?4666156=FuIAoxvrBXrekVSt1e1NVrdcyM4&f=.png
Regards,
Peter
April 26, 2013 at 11:23 am in reply to: a real SEO problem: blog post title should be H1 header #115984Hi!
Yes – you can also remove the link with:
$args['link'] = false;
– imho this link doesn’t make much sense anyway if it points to the current page url…
Best regards,
Peter
April 26, 2013 at 9:36 am in reply to: a real SEO problem: blog post title should be H1 header #115981We added a new filter to the avia_title function which allows you to change the title on the single post page. I.e. add following code to functions.php:
add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
function fix_single_post_title($args,$id)
{
if ( is_single() )
{
$args['title'] = get_the_title($id);
}
return $args;
}to display the post title instead of “Blog”.
If you want to remove the h2 title on single pages (to avoid duplicate content) use following filter function – just add it to functions.php:
add_filter( 'post-format-standard', 'fix_blog_post_title' );
function fix_blog_post_title($current_post)
{
if(is_single()) $current_post['title'] = '';
return $current_post;
}Please try to increase the allocated php memory: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
If this still doesn’t work try to deactivate all third party extensions and just activate bbpress. If bbpress works if no other plugins are activated there’s a good chance that another plugin conflicts with bbpress.
April 26, 2013 at 7:15 am in reply to: Facebook Comments Plugin doesn't work with Enfold Theme #115765Hi!
Please try another plugin – i.e. I tested http://wordpress.org/extend/plugins/facebook-comments-plugin/ and it worked just fine.
Best regards,
Peter
April 26, 2013 at 6:54 am in reply to: IMAGE POST ( WHEN ADDING IMAGE AS A FEATURE ) ISSUE Part 2 #115763The photo doesn’t align in the middle when it’s a full page post and there is no right sidebar.
You can use the “aligncenter” class for the image to align it properly. Add it to the image or select “Alignment” – “Center” when you insert the image: http://www.clipular.com/c?5339030=k9t92GjidXYxQbkIX7X8eEDO93o&f=.png
I can’t reproduce the other issues – please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out)
April 26, 2013 at 6:04 am in reply to: Enfold – Blank pages not centered after update to version 1.3 #115891Hey!
Please check if a new update is available. Kriesi released a new version (v1.3.1) which should fix the issue.
Best regards,
Peter
Sure, insert your button code above following line:
echo "<div class='main_menu' data-selectname='".__('Select a page','avia_framework')."'>";
I.e. use following code:
echo '<div class="avia-button-wrap"><a href="http://kriesi.at/themes/enfold/features/" class="avia-button "><span class="avia_iconbox_title">Learn more...</span></a></div>';
echo "<div class='main_menu' data-selectname='".__('Select a page','avia_framework')."'>";and replace the link and the text “Learn more..” with your custom values.
Hi!
Add a button image as layer and then click on “Link” to insert a link url and to select a link target (new window/tab, same window, etc.)
Best regards,
Peter
Hey!
If you’re still experiencing the issue please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – we’ll look into it.
Best regards,
Peter
April 26, 2013 at 5:24 am in reply to: Dynamic Templates not Working after abundance 1.8 upgrade #114224Hey!
Yes exactly, update WP, afterwards the theme and WC.
Regards,
Peter
Hey!
Please contact Envato: http://support.envato.com/ – they’re your contract partner and they can issue refunds.
Regards,
Peter
We’ll fix this in the next version – for now you need to replace
if(!function_exists('avia_frontend_js'))
with:
if(!function_exists('avia_register_frontend_scripts'))
in enfold/functions.php. The next version will contain this fix and your child theme will work without this mod.
Hi!
Yes & yes :)
Best regards,
Peter
You can add a functions.php to your child theme folder – then insert following code into the child theme functions.php:
/*
* Register frontend javascripts:
*/
if(!function_exists('avia_frontend_js'))
{
if(!is_admin()){
add_action('wp_enqueue_scripts', 'avia_register_frontend_scripts');
}
function avia_register_frontend_scripts()
{
$template_url = get_template_directory_uri();
$child_theme_url = get_stylesheet_directory_uri();
//register js
wp_register_script( 'avia-compat', $template_url.'/js/avia-compat.js', array('jquery'), 1, false ); //needs to be loaded at the top to prevent bugs
wp_register_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 1, true );
wp_register_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery'), 1, true );
wp_register_script( 'avia-prettyPhoto', $template_url.'/js/prettyPhoto/js/jquery.prettyPhoto.js', 'jquery', "3.1.5", true);
wp_register_script( 'avia-html5-video', $template_url.'/js/mediaelement/mediaelement-and-player.min.js', 'jquery', "1", true);
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'avia-compat' );
wp_enqueue_script( 'avia-default' );
wp_enqueue_script( 'avia-shortcodes' );
wp_enqueue_script( 'avia-prettyPhoto' );
wp_enqueue_script( 'avia-html5-video' );
if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); }
//register styles
wp_register_style( 'avia-style' , $child_theme_url."/style.css", array(), '1', 'screen' ); //register default style.css file. only include in childthemes. has no purpose in main theme
wp_register_style( 'avia-grid' , $template_url."/css/grid.css", array(), '1', 'screen' );
wp_register_style( 'avia-base' , $template_url."/css/base.css", array(), '1', 'screen' );
wp_register_style( 'avia-layout', $template_url."/css/layout.css", array(), '1', 'screen' );
wp_register_style( 'avia-scs', $template_url."/css/shortcodes.css", array(), '1', 'screen' );
wp_register_style( 'avia-custom', $template_url."/css/custom.css", array(), '1', 'screen' );
wp_register_style( 'avia-prettyP', $template_url."/js/prettyPhoto/css/prettyPhoto.css", array(), '1', 'screen' );
wp_register_style( 'avia-media' , $template_url."/js/mediaelement/skin-1/mediaelementplayer.css", array(), '1', 'screen' );
wp_enqueue_style( 'avia-grid');
wp_enqueue_style( 'avia-base');
wp_enqueue_style( 'avia-layout');
wp_enqueue_style( 'avia-scs');
wp_enqueue_style( 'avia-prettyP');
wp_enqueue_style( 'avia-media');
//register styles
if($child_theme_url != $template_url)
{
wp_enqueue_style( 'avia-style');
}
global $avia;
$safe_name = avia_backend_safe_string($avia->base_data['prefix']);
if( get_option('avia_stylesheet_exists'.$safe_name) == 'true' )
{
$avia_upload_dir = wp_upload_dir();
$avia_dyn_stylesheet_url = $avia_upload_dir['baseurl'] . '/dynamic_avia/'.$safe_name.'.css';
wp_register_style( 'avia-dynamic', $avia_dyn_stylesheet_url, array(), '1', 'screen' );
wp_enqueue_style( 'avia-dynamic');
}
wp_enqueue_style( 'avia-custom');
}
}Afaik this is not possible at the moment and the color section will always cover the full width of the page. If you feel like a setting/feature is missing you can suggest it here: https://kriesi.at/support/topic/enfold-feature-requests
Hi!
Thanks maratino for helping us out :)
Best regards,
Peter
Hi!
Great :)
Regards,
Peter
Hi!
I’m not sure what you mean. Please post a link to a page where the span tag will stick in the least high column?
Best regards,
Peter
Hi,
no – unfortunately there’s no shortcode right now. I added your request to the feature request thread: https://kriesi.at/support/topic/enfold-feature-requests
However for now you can use the character map: http://www.entypo.com/characters/ to find the unicode. I.e. for the telephone icon use:
📞
Hey!
Thanks Hausundplan for helping us out :)
Regards,
Peter
Strange – it worked for me – please remove the code from the quick css field, then add it to enfold/css/shortcodes.css. You can insert it at the very bottom of the file. Afterwards clear your browser cache. If it still doesn’t work can you post a link to the page where you’re using the shortcode please? I’m really sorry for the hassle but css styling issues can be a pain especially if they just affect certain browsers/configurations….
April 24, 2013 at 1:19 pm in reply to: Problem when placing Progressbar after Promo Box in Firefox #115473Hi!
Great – we’ll add this fix to the next update.
Best regards,
Peter
-
AuthorPosts