Forum Replies Created
-
AuthorPosts
-
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.
Hi!
I tagged this thread for Ismael.
Best regards,
Peter
Hi!
Thanks jeutie for helping us out :)
Best regards,
Peter
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.
May 18, 2013 at 6:36 am in reply to: Turning off related Youtube videos ?rel=0 is not working. #119877No, 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.
Hey!
Thanks for the kind words :)
Best regards,
Peter
Hey!
Try following code:
#top .main_menu .menu li.current-menu-item > a
font-weight: bold !important;
}Best regards,
Peter
Hey!
Tagged the thread for Ismael.
Regards,
Peter
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.
Hi!
Fix can be found here: https://kriesi.at/support/topic/image-moves-from-right-to-left-firefox
Best regards,
Peter
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'}); }
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
May 17, 2013 at 7:08 am in reply to: re-arrange raws in a table within advanced layout editor #119710Hi!
No, afaik this is not possible at the moment.
Regards,
Peter
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' => '🔍', //36
'standard' => '✎', //6
'link' => '🔗', //40
'image' => '📷', //46
'audio' => '♪', //51
'quote' => '❞', //33
'gallery' => '🌄', //145
'video' => '🎬', //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' => '🔄',
'details' => '📄',
'clipboard' => '📋'
);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).
May 17, 2013 at 6:23 am in reply to: Titles on blog page with h2 but single post title with h1 #119122You 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;
}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');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)
May 17, 2013 at 5:35 am in reply to: My DatePicker isn’t working, so I can’t enter or edit Information – EventManager #119501Hi,
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;
}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'}); }
Hey!
Yes sure – especially if you add many image layers to the slider. Simple text layers won’t affect the performance.
Regards,
Peter
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.
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.
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
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 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.
May 16, 2013 at 3:35 pm in reply to: Gallerie 710px breite im Post nicht richtig dargestellt #119314Hey!
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
May 16, 2013 at 2:59 pm in reply to: My DatePicker isn’t working, so I can’t enter or edit Information – EventManager #119499Hey!
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
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';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'); -
AuthorPosts