Forum Replies Created
-
AuthorPosts
-
Hey bogosavljev!
I guess jquery and jquery migrate will always load together (since wp3.6) and you can’t load your script before the jquery migrate script. You can try this hack: http://aahacreative.com/2013/08/05/remove-jquery-migrate-wordpress-36/ to remove the migrate file and then enqueue it later. I wouldn’t recommend this hack though because many js scripts still depend on the migrate functions and you provoke js errors with this code change.
Cheers!
PeterDecember 16, 2013 at 9:57 am in reply to: issue – Displaying custom post types inside of the Avia Layout Builder #200611Hi!
At the moment cpts or multiple portfolio post types are not planned but you can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests/ and we’ll implement it if more users request it. If you’re in a hurry you can also hire someone to implement this feature. A developer who is familiar with the theme framework can implement cpts with some hours of work.
Cheers!
PeterHey dalcnetsrl!
As far as I know the Socialize plugin doesn’t offer a shortcode or php function which allows you to directly embed the shortcode into the post/page content. In your case I recommend: http://wordpress.org/plugins/simple-share-buttons-adder/ which supports some shortcode ( http://www.simplesharebuttons.com/wordpress/wordpress-configuration/ ) and you can even use it for advanced share buttons (post slider, etc.: https://kriesi.at/support/topic/add-share-buttons-to-postslider-php/ ).
Best regards,
PeterHi!
But if your website isn’t responsive you shouldn’t activate the “responsive” option for the slider. Otherwise the slider tries to scale down based on the screen size whereas the other theme elements are not responsive and won’t scale down. Please go to the option screen of layerslider, set the width to 100% and deactivate the responsive mode: http://www.clipular.com/c/5777169653432320.png?k=kReMjoIo-DB9Ntjk1Us2tknuNdg
Cheers!
PeterHi kudesign!
I noticed that IE8 outputs a js error on your website because it can’t calculate the logo offset. This will be fixed in the next theme update but for a quick fix open up /wp-content/themes/eunoia/js/avia.js and replace
if(logo_offset.left < menu_offset.left)
with
if(typeof logo_offset == "undefined" || typeof menu_offset == "undefined") { var offset_right = 0; var offset_left = 0; } if(logo_offset.left < menu_offset.left)
I think this should also fix the image issue – if not we’ll check the css code.
Cheers!
PeterDecember 16, 2013 at 9:28 am in reply to: WordPress 3.8 and Lost of Categories in the Portfolio Item #200601Hi!
Please create us an admin account and post the login data as private reply. I’ll look into it.
Cheers!
PeterHi!
Can you please provide a php error log? The “Couldn’t add the font because the server didn’t respond” error is very generic and it basically just tells you that something on the server went wrong. It could be a problem with the php memory limit – in this case try to increase the allocated memory limit to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP – or a server side configuration issue like here: https://kriesi.at/support/topic/iconfont-manager-upload-problem/
If you don’t have a php error log please contact the hoster/server administrator and ask him to provide the error logs.
Cheers!
PeterHi!
Bitte erstelle mir einen Admin Account und sende mir die Login Daten als “Private Reply”.
Cheers!
PeterHey PPCHound!
Yes – open up /wp-content/themes/enfold/includes/loop-index.php and replace
//on single page replace the link with a fullscreen image if(is_singular()) { $link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url'); }
with
//on single page replace the link with a fullscreen image if(is_singular()) { $link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url'); } $external_link = get_post_meta($the_id, 'external_url'); if($external_link) $link = $external_link;
Cheers!
PeterHi jmaguirrei!
Add following code into the quick css field
#top .big-preview a{ pointer-events: none !important; }
Best regards,
PeterHi!
1) The submenu modification would require some additional coding (js/css) and this customization is beyond the scope of our support forum. I recommend to hire someone here: http://www.microlancer.com/ or here: http://kriesi.at/contact/customization who can help you to modify the theme files or you can search for a menu plugin here: http://wordpress.org/plugins/
2) You can use following code to align the menu items on the left side and to remove the dots for the child menu items
#top .sidebar_left .widget_nav_menu li { text-align: left; } #top .sidebar_left .widget_nav_menu ul ul li:before { content: ""; }
Best regards,
PeterHey!
Please try following css code
@media only screen and (min-width: 1px){ .responsive #av_section_4 .container, .responsive #av_section_4 .container .twelve.units { width: 100% !important; } }
Regards,
PeterHi MHM!
Please use the method which gives you the best result and post a link to your website. We’ll investigate the css code and if possible we’ll provide some code to fix the styling issues.
Cheers!
PeterHey yoice!
Diesen Fehler werden wir mit dem nächsten Update beheben. Für eine schnelle Lösung zur sofortigen Fehlerbehebung siehe: https://kriesi.at/support/topic/enfold-portfolio-not-working-after-wordpress-3-8-update/#post-199805
Regards,
PeterHey!
1) Download the icon from fontello.com and install the icon with the icon font uploader (Theme Options)
2) Insert following code into functions.php
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_icon($icons) { $icons['slideshare'] = array( 'font' =>'fontello', 'icon' => 'ue801'); return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); function avia_add_custom_social_icon($icons) { $icons['Slideshare'] = 'slideshare'; return $icons; }
3) Go to to Enfold > Theme Options and add the Slideshare icon to the social icons.
Cheers!
PeterDecember 14, 2013 at 12:12 pm in reply to: Flyout Menu – Responsive Screen Sizes (including iPad Portrait) #200197Hi!
Did you try to use another “switch width” px value? Obviously Ismael assumed that the width of the ipad display is 886px if you use it in portrait orientation mode. However I’m not sure if 886 is the right display width/height and it may vary from ipad to ipad because (or tablet to tablet) because the displays have different resolutions. You might want to play around with the value a bit (i.e. set it to 1024px or 800px and check which value works for you).
Regards,
PeterHi!
The slider and blog seems to work now. I deleted the “blog” pages in the trash and created a new page for the blog (same title + permalink) and the blog page seems to work just fine now. Maybe it was a database error and the recreation of the page fixed it.
Cheers!
PeterHi!
Please try to insert following code into the quick css field
.avia-content-slider .slide-image img { max-width: 100%; width: auto; }
Cheers!
PeterHey!
Try to insert following code into the quick css field
#top .entwicklung_sort{ pointer-events: none; /* Disables the links for Entwicklung portfolio items */ }
Best regards,
PeterHi!
If you just want to activate the responsive menu for the French version replace following line in avia.js
avia_responsive_menu();
with
var thehtmllanguage = $('html').attr('lang'); if(thehtmllanguage == "fr-FR") avia_responsive_menu();
Regards,
PeterHey!
Yes, maybe the theme code triggers the issue somehow but I’m not aware of another, similar bug report and thus it seems to be related to your server configuration. Otherwise we would receive bug reports regarding the same issue from 16,400+ Enfold users which is not the case at the moment. TwentyTwelve is a very basic theme without any extra features/function whereas Enfold extends WordPress in many ways and Enfold requires more code/resources – obviously this increases the risk that certain limitations take effect as soon as you activate our theme.
Regards,
PeterHey!
Open up /wp-content/themes/enfold/framework/php/class-framework-widgets.php and replace
echo "<a class='news-link' title='".get_the_title()."' href='".get_permalink()."'>";
with
$url = get_permalink(); $format = get_post_format(); if($format == 'link') { $current_post = array(); $current_post['content'] = get_the_content(); $current_post['title'] = get_the_title(); if(function_exists('avia_link_content_filter')) { $current_post = avia_link_content_filter($current_post); } $url= $current_post['url']; } echo "<a class='news-link' title='".get_the_title()."' href='".$url."'>";
Regards,
PeterHi DavyE!
See https://kriesi.at/support/topic/enfold-portfolio-not-working-after-wordpress-3-8-update/#post-199805
Regards,
PeterHey!
See https://kriesi.at/support/topic/enfold-portfolio-not-working-after-wordpress-3-8-update/#post-199805 for a temporary fix. We’ll include this patch in the next theme update.
Cheers!
PeterHi jmaguirrei!
I think the tab function doesn’t work because only the hash value changes and the url is always the same. We’ll take care of this limitation with the next theme update but for now you can fix this by modifying shortcodes.js: https://kriesi.at/support/topic/tab-navigation-2/#post-193576
Cheers!
PeterHi!
Great work! I love the design and how you used the color sections to structure the content :)
Regards,
PeterHey!
Tbh I’m not aware of other, similar bug reports and I’m pretty sure that the vast majority of our theme users host their websites on shared servers (i.e. my websites are shared on a server with 50 other clients/websites and I don’t use a VPS or dedicated server too and I never had such a problem). I recommend to switch to another shared hoster instead of upgrading to a VPS plan. I can’t recommend a hoster in the US/UK but Kriesi and I host our websites here: All-Inkl and I know many clients who host Enfold and other Kriesi themes here: Host Europe without any problems.
Regards,
PeterHey!
Unfortunately the “Could not add the font because the server didn’t respond” is a very generic error message and doesn’t help us to identify the problem. We need an error log or detailed error report from the server/host provider. I guess the issue is caused by a missing php library like here: https://kriesi.at/support/topic/iconfont-manager-upload-problem/
Best regards,
PeterHi!
I think this article will help you: http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-custom-menu-items-limit-in-wordpress/
If you don’t use the suhosin extension on your server try this fix: http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-custom-menu-items-limit-in-wordpress/comment-page-1/#comment-186321Regards,
PeterHi!
As far as I know you don’t need to “hack” the theme files because since Enfold 2.4.2 the Youtube icon is supported out of the box. Go to Enfold > Header and select “Youtube” in the “Social Icon” dropdown. Then insert your youtube url into the text field on the right side (“Social Icon URL”) and save the settings.
If you want to change the size of the icons insert following code into the quick css field
#top .social_bookmarks li a { width: 60px; line-height: 64px; min-height: 60px; font-size: 30px; } #top .social_bookmarks { height: 60x; } .header_color .social_bookmarks a{ color: #889095; }
and change the px values (and color value) of required.
Best regards,
Peter -
AuthorPosts