Forum Replies Created
-
AuthorPosts
-
Hi southerndesign!
Maybe a plugin breaks the next/prev nav buttons. Try to deactivate all plugins and check if the issue persists.
Best regards,
PeterHey!
Yes, deleting the slides should be possible. You can find the slider data in the wp_layerslider table. It’s json encoded but you can use a tool like: http://json.parser.online.fr/ to parse the data. All layers are part of the “layers” array and start with “properties”. Each layer may contain several “sublayers” arrays.
Regards,
PeterHey!
It’s not possible to use portfolio filter across multiple portfolio pages. Someone created a feature request here: https://kriesi.at/support/enfold-feature-requests/ – (Click on “Popular”, page 14 and search for “AJAX Portfolio filtering over multiple pages”) but as you can see the idea is not popular enough and we’ll probably not implement this feature in the near future.
The portfolio filter will not pop up if a portfolio page just shows entries from one category – so if i.e. page 1 shows entries from 2012 and page 2 shows entries from 2013 no portfolio filter will be shown simply because it doesn’t make sense if there’re no categories to filter. However if the page contains entries from 2012 and 2013 the filter will be shown because the user can use it to select the entries from the 2012 or 2013.
Regards,
PeterMay 23, 2014 at 8:12 am in reply to: Ninja Forms Preview Shows Up in Breadcrumbs For ALL Media #269006Hey Frank!
You can try to add this code to your child theme functions.php file (or enfold/functions.php):
add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 10, 15); function avia_change_breadcrumb($trail) { foreach($trail as $key => $data) { $search = 'ninja_forms_preview_page'; if(strpos($data, $search) !== false) { unset($trail[$key]); } } return $trail; }
The code should remove the ninja_forms_preview_page link from the breadcrumb trail.
Regards,
PeterHi adrianwackernah!
Versuche einmal diesen code in die functions.php einzufügen:
add_filter('avf_title_args', 'avia_tax_term_title', 10, 2); function avia_tax_term_title($args,$id) { if(is_tax()) $args['title'] = single_term_title('', false); return $args; }
Cheers!
PeterHi!
No, unfortunately the “Visual” editor adds some tags to the text/code and we can’t deactivate these tags because it’s a standard wordpress behavior. You can use the code block or a plugin like: https://wordpress.org/plugins/insert-html-snippet/ to insert raw html code.
Regards,
PeterHey!
Ok, I’ll leave this thread open.
Best regards,
PeterMay 23, 2014 at 7:19 am in reply to: Masonry Gallery not loading more images on translated pages (WPML) #268997Hey!
I fixed it with some code in enfold/functions.php:
if(!function_exists('avia_translate_ids_from_query')) { function avia_translate_ids_from_query($query, $params) { $res = array(); if(!empty($query['tax_query'][0]['terms']) && !empty($query['tax_query'][0]['taxonomy'])) { foreach ($query['tax_query'][0]['terms'] as $id) { $xlat = icl_object_id($id, $query['tax_query'][0]['taxonomy'], true); if(!is_null($xlat)) $res[] = $xlat; } if(!empty($res)) $query['tax_query'][0]['terms'] = $res; } else if(!empty($query['post__in']) && !empty($query['post_type'])) { foreach($query['post__in'] as $id) { $xlat = icl_object_id($id, $query['post_type'], true); if(!is_null($xlat)) $res[] = $xlat; } if(!empty($res)) $query['post__in'] = $res; } return $query; } add_filter('avia_masonry_entries_query', 'avia_translate_ids_from_query', 10, 2); add_filter('avia_post_grid_query', 'avia_translate_ids_from_query', 10, 2); add_filter('avia_post_slide_query', 'avia_translate_ids_from_query', 10, 2); add_filter('avia_blog_post_query', 'avia_translate_ids_from_query', 10, 2); }
I’ll ask Kriesi to include it in the next update.
Best regards,
PeterMay 22, 2014 at 8:00 pm in reply to: AJAX-Suche – Workaround funktioniert nicht bei allen Texten #268759Hi!
Ihr verwendet eine alte Version des Enfold Themes. Bitte aktualisiert auf 2.9.1 und der Code sollte funktionieren.
Cheers!
PeterMay 22, 2014 at 9:23 am in reply to: WPML Translation management – linebreaks in tables not longer possible #268503Hi!
Ok, I’ll leave this thread open in case the WPML support can’t solve the problem.
Best regards,
PeterHi sfierst!
1) The portfolio urls/permalinks do not support categories or other dynamic elements – I’m sorry. You would need to hire a developer who can help you to customize the permalinks code.
2) If you want to show the categories in the breadcrumb insert this code into the child theme functions.php file (or insert it at the bottom of enfold/functions.php) if you’re not using a child theme:
if(!function_exists('avia_modify_portfolio_breadcrumb')) { function avia_modify_portfolio_breadcrumb($trail) { $parent = get_post_meta(avia_get_the_ID(), 'breadcrumb_parent', true); if(get_post_type() === "portfolio") { $page = ""; $front = avia_get_option('frontpage'); if(empty($parent) && !current_theme_supports('avia_no_session_support') && session_id() && !empty($_SESSION['avia_portfolio'])) { $page = $_SESSION['avia_portfolio']; } else { $page = $parent; } if(!$page || $page == $front) { $args = array( 'post_type' => 'page', 'meta_query' => array( array( 'key' => '_avia_builder_shortcode_tree', 'value' => 'av_portfolio', 'compare' => 'LIKE' ) ) ); $query = new WP_Query( $args ); if($query->post_count == 1) { $page = $query->posts[0]->ID; } else if($query->post_count > 1) { foreach($query->posts as $entry) { if ($front != $entry->ID) { $page = $entry->ID; break; } } } } $parents = get_the_term_list( $post_id, 'portfolio_entries', '', '$$$', '' ); $parents = explode('$$$',$parents); if($page) { if($page == $front) { $newtrail[0] = $trail[0]; foreach ($parents as $parent_item) { if($parent_item) $newtrail[] = $parent_item; } $newtrail['trail_end'] = $trail['trail_end']; $trail = $newtrail; } else { $newtrail = avia_breadcrumbs_get_parents( $page, '' ); array_unshift($newtrail, $trail[0]); foreach ($parents as $parent_item) { if($parent_item) $newtrail[] = $parent_item; } $newtrail['trail_end'] = $trail['trail_end']; $trail = $newtrail; } } } return $trail; } add_filter('avia_breadcrumbs_trail','avia_modify_portfolio_breadcrumb', 15, 1); }
Cheers!
PeterHey coinmaster!
You can try to change the imaage size in wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php – open up the file and search for:
$img_size = 'masonry';
Replace “masonry” with another thumbnail size like ‘square’, featured’, ‘featured_large’, ‘portfolio’, ‘gallery’, ‘entry_with_sidebar’,’entry_without_sidebar’,extra_large’ or “magazine”.
Cheers!
PeterHi!
Yes, please contact the server provider and ask them to check the cache settings.
Regards,
PeterHey simpson199!
Firefox reports a “cross domain origin” error. Please follow the instructions here: http://davidwalsh.name/cdn-fonts to fix the problem.
Best regards,
PeterMay 22, 2014 at 8:40 am in reply to: Problem visualising the Fullwidth Easy Slider from mobile #268484Hey Gurify!
You can decrease the font size for devices with smaller screens – insert this code into the quick css field and adjust the font size value:
@media only screen and (max-width: 767px){ .csstransitions .av_slideshow_full .avia-caption-title { font-size: 10px; } .caption_framed .slideshow_caption .avia-caption-content p{ font-size: 10px; } }
Regards,
PeterHey!
No, I don’t think this is the cause. However you can deactivate the “recommended plugins” installer by adding this code to the bottom of your child theme functions.php file (or enfold/functions.php if you’re not using a child theme):
add_action('after_setup_theme','avia_deactive_recommended_plugins'); function avia_deactive_recommended_plugins(){ remove_action( 'tgmpa_register', 'avia_register_required_plugins' ); }
Best regards,
PeterHi!
Please let us know if Flikk’s sugestion solved the problem.
@Flikk – thanks for helping us out ;)Cheers!
PeterHi!
By default the gallery images can’t link to external websites. However you can use a third party plugin to apply custom links to gallery images. If you want to use it with Enfold follow the instructions here: https://kriesi.at/support/topic/adding-links-to-a-gallery/#post-224832
Regards,
PeterHi!
Please create us an admin account and post the login credentials as private reply – we’ll look into it.
Cheers!
PeterMay 22, 2014 at 8:18 am in reply to: Layerslider transitions not working: Preview looks different than on site #268476Hey!
I can’t view the slider – I just see a “Wallstreet stylist coming soon” image.
Best regards,
PeterHi!
Please try this code:
#top .price span.amount{ display: block; }
Regards,
PeterHey!
Unfortunately we have no experience with Typekit and we can’t guarantee that it works without additional theme code customization. If you want to be on the safe side please purchase another theme which mentions Typekit support in the themeforest item description. We can not confirm that several clients use Enfold with Typekit because we didn’t keep track of Typekit reports in the past and we did not verify them.
Yes you can buy the theme over and over again from the same account. Envato will always add a new item to your “purchased item” list and will issue you a separate download link and license file for each purchase. The only drawback is that you can’t create a separate support account for your client because the theme will be connected to your email address/account login – if you want to allow the client to use our support forum please use a new account (or the client’s account) to purchase the theme.
Best regards,
PeterHey yes9310!
Regarding the server loading times and browser compression (gzip compression) you need to contact the server administrator because that’s a problem of the server hardware and configuration. If you want to reduce the number of javascript/css files you can use a minify/compression plugin like: https://wordpress.org/plugins/bwp-minify/ or https://wordpress.org/plugins/w3-total-cache/ which help you to merge the js/css files and to compress them.
Regards,
PeterHi!
Did you try to use the new “Code Block” element instead of the “Textblock”? If you can’t find it on the template builder page please update your theme to version 2.7.1 and then it should pop up. The code block does not process the input and it also won’t add p tags to the code.
Cheers!
PeterHey yes9310!
Try to insert this code into the quick css field to fix the issue:
#top div .wpcf7-list-item.first { margin-left: 5px; }
Regards,
PeterHey islandjoe1!
Can you please check the url? When I try to view http://www.islandjoescoffee.com/ in the browser I get a “not found” error.
Regards,
PeterHey!
You can move them with this code:
#top .social_bookmarks { top: 45px; right: 0; position: absolute; }
and replace 45px with a higher/lower value if you want to change the distance to the main menu.
Best regards,
PeterHi!
Insert this code at the very bottom of the child theme functions.php file (or enfold/functions.php if you’re not using a child theme)
add_filter('avf_postgrid_excerpt_length','avf_increase_postgrid_excerpt_length', 10, 1); function avf_increase_postgrid_excerpt_length($prepare_excerpt) { return 60; }
and replace 60 with your custom except length (i.e. 120). The default length is 60.
Regards,
PeterHi!
To fix the issue you must contact the server administrator (host provider) because the first error message
Warning: session_start() [function.session-start]: The session id is too long or contains illegal characters, valid characters are a-z, A-Z, 0-9 and ‘-,’
indicates that the server can’t create a session and this is a server configuration issue. All other errors are just follow up warnings which will vanish if you solve the session error.
You can temporarily fix the problem by adding this code:
add_theme_support('avia_no_session_support');
at the very bottom of the child theme functions.php file (or enfold/functions.php if you’re not using a child theme) however this may break the breadcrumb on some pages because the breadcrumb uses this session data.
Cheers!
PeterHi!
Do you need a html/css developer (= designer) or more a php/wordpress developer who is familiar with the theme/framework code?
Regards,
Peter -
AuthorPosts