Forum Replies Created

Viewing 30 posts - 8,971 through 9,000 (of 9,352 total)
  • Author
    Posts
  • in reply to: Images and Text jumps when moused over #118391

    No, that’s another issue imo. You can try it but it seems like the jumping image issue is related to the display attribute (display:inline vs display:block-inline). please do not use this thread for your questions – I don’t want to mix things up.

    in reply to: How to remove featured image inside single post? #117987

    Hi!

    I tagged this thread for Ismael.

    Best regards,

    Peter

    in reply to: Enfold Instagram Icon #119858

    Hi!

    Thanks jeutie for helping us out :)

    Best regards,

    Peter

    in reply to: Please Help – Time Sensitive #119864

    The problem is that the settings are saved as serialized data and if the domain name changes the serialized strings (often) will break because of the different number of characters. You can use the migrate plugin: WP MIGRATE DB to migrate the database to another server.

    No, unfortunately not because we use the standard wordpress embed shortcode. The oembed api of WordPress doesn’t support this parameter at the moment: http://wordpress.stackexchange.com/questions/59751/youtube-parameters-within-wordpress-embed-code

    You can try to embed the iframe directly though.

    in reply to: Enfold Showcase #116461

    Hey!

    Thanks for the kind words :)

    Best regards,

    Peter

    in reply to: Menu Font Changes #119189

    Hey!

    Try following code:

    #top .main_menu .menu li.current-menu-item > a
    font-weight: bold !important;
    }

    Best regards,

    Peter

    in reply to: Problem with Gravity Forms #119264

    Hey!

    Tagged the thread for Ismael.

    Regards,

    Peter

    in reply to: Images and Text jumps when moused over #118388

    Open up the /js/avia.js file in your enfold folder, find lines 245-287 that look like:

    elements.on('mouseenter', function(e)
    {
    var link = $(this),
    current = link.find('img:first'),
    url = link.attr('href'),
    span_class = "overlay-type-video",
    opa = 0.7;

    overlay = link.find('.image-overlay');

    if(!overlay.length)
    {
    if(current.outerHeight() > 100)
    {
    if(link.height() == 0) { link.addClass(current.get(0).className); current.get(0).className = ""; }
    if(!link.css('position') || link.css('position') == 'static') { link.css({position:'relative', overflow:'hidden'}); }
    if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline-block'}); }
    if( url.match(/(jpg|gif|jpeg|png|tif)/) ) span_class = "overlay-type-image";
    if(!url.match(/(jpg|gif|jpeg|png|.tif|.mov|.swf|vimeo.com|youtube.com)/) ) span_class = "overlay-type-extern";

    overlay = $("<span class='image-overlay "+span_class+"' style='opacity: 0;'><span class='image-overlay-inside'></span></span>").appendTo(link);
    }
    }

    if(current.outerHeight() > 100)
    {
    overlay.css({left:current.position().left + parseInt(current.css("margin-left"),10), top:current.position().top + parseInt(current.css("margin-top"),10)})
    .css({display:'block','height':current.outerHeight(),'width':current.outerWidth()}).stop().animate({opacity:opa}, 400);
    }
    else
    {
    overlay.css({display:"none"});
    }

    }).on('mouseleave', elements, function(){

    if(overlay.length)
    {
    overlay.stop().animate({opacity:0}, 400);
    }
    });

    and replace the entire block above with the block below

    elements.each(function(e)
    {
    var link = $(this),
    current = link.find('img:first'),
    url = link.attr('href'),
    span_class = "overlay-type-video";

    overlay = link.find('.image-overlay');

    if(!overlay.length)
    {
    if(link.height() == 0) { link.addClass(current.get(0).className); current.get(0).className = ""; }
    if(!link.css('position') || link.css('position') == 'static') { link.css({position:'relative', overflow:'hidden'}); }
    if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline-block'}); }
    if( url.match(/(jpg|gif|jpeg|png|tif)/) ) span_class = "overlay-type-image";
    if(!url.match(/(jpg|gif|jpeg|png|.tif|.mov|.swf|vimeo.com|youtube.com)/) ) span_class = "overlay-type-extern";

    overlay = $("<span class='image-overlay "+span_class+"' style='opacity: 0;'><span class='image-overlay-inside'></span></span>").appendTo(link);
    }
    });

    elements.on('mouseenter', function(e)
    {
    var link = $(this),
    current = link.find('img:first'),
    opa = 0.7;

    overlay = link.find('.image-overlay');

    if(current.outerHeight() > 100)
    {
    overlay.css({left:current.position().left + parseInt(current.css("margin-left"),10), top:current.position().top + parseInt(current.css("margin-top"),10)})
    .css({display:'block','height':current.outerHeight(),'width':current.outerWidth()}).stop().animate({opacity:opa}, 400);
    }
    else
    {
    overlay.css({display:"none"});
    }

    }).on('mouseleave', elements, function(){

    if(overlay.length)
    {
    overlay.stop().animate({opacity:0}, 400);
    }
    });

    I’ll ask Kriesi to implement this fix in the next version.

    in reply to: Images bouncind everywhere #119695

    Hi!

    Fix can be found here: https://kriesi.at/support/topic/image-moves-from-right-to-left-firefox

    Best regards,

    Peter

    in reply to: Images bouncind everywhere #119691

    It seems like you insert the code at the very top of avia.js. http://www.wafbmuseum.org/wpdocs/wp-content/themes/enfold/js/avia.js

    Please revert the change and don’t insert the code at the very top but replace the (already existing) line

    if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline-block'}); }

    with

    if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline'}); }

    in reply to: View category as excerpts #119703

    Hi!

    You can use the more quicktag: http://codex.wordpress.org/Customizing_the_Read_More , http://en.support.wordpress.com/splitting-content/more-tag/ to split your content into an excerpt and full version.

    Regards,

    Peter

    Hi!

    No, afaik this is not possible at the moment.

    Regards,

    Peter

    in reply to: Adding Custom Icons #118915

    All icons which are used by the theme are stored in an array in functions.php:

    /*
    * These are some of the font icons used in the theme, defined by the entypo icon font. the font files are included by the new aviaBuilder
    * common icons are stored here for easy retrieval
    */
    $avia_config['font_icons'] = array(
    'search' => '&#128269;', //36
    'standard' => '✎', //6
    'link' => '&#128279;', //40
    'image' => '&#128247;', //46
    'audio' => '♪', //51
    'quote' => '❞', //33
    'gallery' => '&#127748;', //145
    'video' => '&#127916;', //146
    'info' => 'ℹ', //120
    'next' => '', //190
    'prev' => '', //187
    'behance' => '', //246
    'dribbble' => '', //223
    'facebook' => '', //212
    'flickr' => '', //206
    'gplus' => '', //215
    'linkedin' => '', //221
    'pinterest' => '', //217
    'skype' => '', //238
    'tumblr' => '', //219
    'twitter' => '', //210
    'vimeo' => '', //208
    'rss' => '', //98
    'mail' => '✉', //5
    'cart' => '',
    'reload' => '&#128260;',
    'details' => '&#128196;',
    'clipboard' => '&#128203;'
    );

    If the unicode of the icons didn’t change you don’t need to modify the array, otherwise replace the cuurent codes with the new codes (take them from the custom charmap).

    You can try conditionals to change the headline – add following code to functions.php (insert it at the very end):

    function avia_default_title_filter($current_post)
    {
    $output = "";
    $headline = is_single() ? 'h1' : 'h2';
    $output .= "<$headline class='post-title'>";
    $output .= " <a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title'];
    $output .= " <span class='post-format-icon minor-meta'></span>";
    $output .= " </a>";
    $output .= "</$headline>";

    $current_post['title'] = $output;

    return $current_post;
    }

    in reply to: Contact From Not Scrolling To Top #119441

    Try following – in wp-contentthemesenfoldjsshortcodes.js replace:

    form.slideUp(400, function(){responseContainer.slideDown(400); send.formElements.val('');});

    with

    form.slideUp(400, function(){responseContainer.slideDown(400); send.formElements.val('');});
    jQuery('#scroll-top-link').trigger('click');

    in reply to: Search result layout #119070

    Yes, the problem is that the “use_main_query_pagination” parameter is not part of the theme code yet. The next update will include it. For now (if you want to use pagination) please stick with the default search.php code and use the code I posted above when we release the update (Enfold 1.5)

    Hi,

    I fixed it. I added following code to functions.php:

    function avia_editor_fix_style() {
    echo '<style type="text/css">body>.ui-widget-overlay{z-index: 1000 !important;}</style>';
    }

    add_action('admin_head', 'avia_editor_fix_style');

    I’ll tag this thread for Kriesi too – it seems like he’s using a very high z-index value for the overlay which can break other plugins with modal windows. Code in avia-modal.css:

    /*legacy thickbox scripts should be displayed above modal window*/
    body #TB_overlay, body>.ui-widget-overlay{
    z-index: 1000 !important;
    }
    body #TB_window, body>.ui-dialog.ui-widget{
    z-index: 200001;
    }

    in reply to: Images bouncind everywhere #119689

    Hi,

    Try following – open up enfold/js/avia.js and replace:

    if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline-block'}); }

    with

    if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline'}); }

    in reply to: Load time implications with layer sliders? #119696

    Hey!

    Yes sure – especially if you add many image layers to the slider. Simple text layers won’t affect the performance.

    Regards,

    Peter

    in reply to: How do you update enfold to latest version? #119705

    You won’t loose your settings when you update the theme. If you customized some theme files you need to make a backup of the old files, then upload the new ones and then customize the updated files.

    in reply to: Using other Plugins renders MCE useless! #119605

    Can you check the developer console please because I can’t reproduce the error: http://www.screenr.com/SvI7 . Use Chrome and on the editor page make a right click and select “Element untersuchen”. Then click on the “Console” tab. Now open the text block element and Chrome will probably output a js error in the Console. Can you post the error message please or make a screenshot of the console. I’ll ask Kriesi to answer this thread too because only he knows the ETA of the next bug fix release.

    in reply to: Avia Layout Builder Sidebar Element #119416

    Hey!

    Yes. I’m not sure why Kriesi didn’t include x/5 elements – especially because 1/5 doesn’t make much sense in combination with eg 1/2 or 2/3, etc. I’ll tag this thread for him.

    Best regards,

    Peter

    in reply to: Installation problem #119430

    Maybe your server hides this folder too (probably you’re using a linux server). I’m not sure how you can delete it in this case – maybe try to contact your hoster and ask them to delete the folder for you.

    in reply to: Woocommerce plugin "Tab manager" don't work #119164

    In wp-contentthemesenfoldincludeshelper-template-logic.php replace

    if (isset($_GET['s']) && empty($_GET['s']) && $query->is_main_query())

    with

    if (isset($_GET['s']) && empty($_GET['s']) && empty($_GET['adv_search']) && $query->is_main_query())

    We’ll fix this in the next version too.

    Hey!

    Versuche einmal folgenden css Code:

    .single-post .big-preview {
    padding: 0 10px 0 0;
    }

    Wie immer in das quick css Feld einfügen.

    Ich weiß jedoch nicht ob dies ein “Fehler” (daher ungewollt) oder künstlerische Freiheit ist – ich markiere den Thread einmal für Kriesi :)

    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

    in reply to: WooCommerce plugin compatibility issue – Help me #119530

    Hey!

    https://kriesi.at/support/topic/woocommerce-plugin-tab-manager-dont-work

    Best regards,

    Peter

    in reply to: Woocommerce plugin "Tab manager" don't work #119161

    We’ll look into it. A temporary fix would be to replace following code in wp-contentpluginswoocommerce-tab-managerwoocommerce-tab-manager.php:

    if ( 'yes' == $override_tab_layout ) {

    with:

    if($override_tab_layout == 'on') $override_tab_layout = 'yes';
    if ( 'yes' == $override_tab_layout ) {

    and in wp-contentpluginswoocommerce-tab-manageradminwoocommerce-tab-manager-admin-functions.php

    $override_tab_layout = get_post_meta( $post->ID, '_override_tab_layout', true );

    with

    $override_tab_layout = get_post_meta( $post->ID, '_override_tab_layout', true );
    if($override_tab_layout == 'on') $override_tab_layout = 'yes';

    in reply to: Comments for advanced layout editor? #119490

    There’s no comments element at the moment. If you want to add the comments to pages open up page.php and replace

    get_template_part( 'includes/loop', 'page' );

    with:

    get_template_part( 'includes/loop', 'page' );

    //wordpress function that loads the comments template "comments.php"
    comments_template( '/includes/comments.php');

Viewing 30 posts - 8,971 through 9,000 (of 9,352 total)