Forum Replies Created

Viewing 30 posts - 9,271 through 9,300 (of 9,352 total)
  • Author
    Posts
  • in reply to: Fragen zur Erstellung eines Mega Menüs #115877

    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.

    in reply to: Size blog image #115836

    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;
    }

    Hey!

    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

    in reply to: Enfold child theme #114868

    Hey!

    Duplicate: https://kriesi.at/support/topic/enfold-13-setting-up-child-theme – I’ll mark that post for Kriesi…

    Best regards,

    Peter

    in reply to: Enfold child theme #114867

    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.

    in reply to: Shortcode generator #116037

    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

    in reply to: Enfold child theme #114865

    Hi!

    Afaik v1.3 already contains this fix.

    Best regards,

    Peter

    in reply to: New Phone Number in Header conflicts with WPML #116021

    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

    in reply to: a real SEO problem: blog post title should be H1 header #115984

    Hi!

    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

    in reply to: a real SEO problem: blog post title should be H1 header #115981

    We 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;
    }

    in reply to: Help: backend went… blank! #115903

    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.

    in reply to: Facebook Comments Plugin doesn't work with Enfold Theme #115765

    Hi!

    Please try another plugin – i.e. I tested http://wordpress.org/extend/plugins/facebook-comments-plugin/ and it worked just fine.

    Best regards,

    Peter

    The 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)

    Hey!

    Please check if a new update is available. Kriesi released a new version (v1.3.1) which should fix the issue.

    Best regards,

    Peter

    in reply to: Button in Header #115949

    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.

    in reply to: Button on LayerSlider #115944

    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

    in reply to: Javascript broken on POST EDIT page #115175

    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

    Hey!

    Yes exactly, update WP, afterwards the theme and WC.

    Regards,

    Peter

    in reply to: Now can't get to Dashboard #115419

    Hey!

    Please contact Envato: http://support.envato.com/ – they’re your contract partner and they can issue refunds.

    Regards,

    Peter

    in reply to: Enfold child theme #114863

    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.

    in reply to: Yoast SEO Plugin Compatibility #115843

    Hi!

    Yes & yes :)

    Best regards,

    Peter

    in reply to: Enfold child theme #114861

    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');

    }
    }

    in reply to: Color Section #115589

    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

    in reply to: Layerslider content not centred like demo #115735

    Hi!

    Thanks maratino for helping us out :)

    Best regards,

    Peter

    in reply to: Hoizontal Tabs not responsive with Firefox #115403

    Hi!

    Great :)

    Regards,

    Peter

    in reply to: Span blog-tags #115745

    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

    in reply to: Icon in Special Heading Section or Icon Shortcodes #115750

    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:

    &#128222;

    in reply to: How to activate the Coming Soon page? #115726

    Hey!

    Thanks Hausundplan for helping us out :)

    Regards,

    Peter

    in reply to: Hoizontal Tabs not responsive with Firefox #115401

    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….

    Hi!

    Great – we’ll add this fix to the next update.

    Best regards,

    Peter

Viewing 30 posts - 9,271 through 9,300 (of 9,352 total)