Forum Replies Created
-
AuthorPosts
-
Hey!
We’ll fix this with the next update. If you need a quick fix replace:
$author = apply_filters('avf_author_name', get_the_author_meta('display_name', $entry->post_author), $entry->post_author); $author = "<span class='av-magazine-author meta-color vcard author'>".__('by','avia_framework')." <span class='fn'>$author</span></span>";with
$author_link = get_author_posts_url($entry->post_author); $author_name = apply_filters('avf_author_name', get_the_author_meta('display_name', $entry->post_author), $entry->post_author); $author = '<a href='.$author_link.' title="'.__('by','avia_framework').' '.$author_name.'" rel="author">'.$author_name.'</a>'; $author_output = '<span class="av-magazine-author minor-meta">'.__('by','avia_framework')." "; $author_output .= '<span class="av-magazine-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>'; $author_output .= $author; $author_output .= '</span>'; $author_output .= '</span>'; $author = $author_output;in wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\magazine.php
Regards,
PeterHey!
If you want to create a template for a custom post type just copy the single.php template to your child theme folder and rename it to single-objects.php (and replace “objects” with the custom post type name if necessary). Then modify the single-objects.php template – I recommend to replace:
get_template_part( 'includes/loop', 'index' );with
get_template_part( 'includes/loop', 'objects' );– this change enables you to load another, separate loop template for your custom post type.
Then copy the wp-content/themes/enfold/includes/loop-index.php template into the child theme folder (i.e. to wp-content/themes/enfold-child/includes/ folder) and rename it to loop-objects.php. You can also modify the loop-objects.php template if necessary.
Best regards,
PeterHi nnn666nnn!
Please create us an admin account and post the login credentials as private reply.
Cheers!
PeterHi midischool!
You can try Sensei: http://www.woothemes.com/products/sensei/ – I provided some template files here: https://kriesi.at/support/topic/woothemes-sensei-plugin/ . Afaik you can ask for a refund (for 30 days) if the plugin doesn’t work for you.
Cheers!
PeterHi!
No, because https://gmpg.org/xfn/11 gives me a untrusted certificate warning. Thus I recommend to stick with http://gmpg.org/xfn/11
Best regards,
PeterHey AlbrechtM!
Ja, füge diesen Code in das Qzuick CSS Feld oder die child theme style.css Datei ein:
#commentform p.form-allowed-tags{ display: none; }Best regards,
PeterHi trevorjohnston!
1) The accordion doesn’t support such a feature yet and it’s also not easily possible to add it. You can suggest it here: https://kriesi.at/support/enfold-feature-requests/ or hire a freelancer who can customize the accordion script for you.
2) Try to insert this css code into the quick css field or child theme style.css file:
#top #wrap_all .aviaccordion-preview-title { padding-top: 0; }It will remove the 10% padding from the top and the titles should move to the top of the title wraps
Cheers!
PeterHi!
Please create us an admin account and post the login credentials as private reply.
Cheers!
PeterHey!
Dann dürfte W3TC irgendeinen JS Error verursachen, sobald es die Skripts komprimiert. Habt ihr schon probiert stattdessen zB https://wordpress.org/plugins/bwp-minify/ zu aktivieren?
Cheers!
PeterHey Willem-Paul!
Please see http://www.lostsaloon.com/technology/how-to-disable-comments-from-pages-and-posts-in-wordpress/
Best regards,
PeterHi atrixdave!
Unfortunately posts, product and shop pages do not support fullwidth elements (fullwidth masonry element, fullwidth slider, color sections, etc.) and you can’t easily get the color section background to stretch across the entire width of the screen like on standard pages or portfolio pages. If you really need this feature please hire a freelancer (i.e. here http://studio.envato.com/ or here http://kriesi.at/contact/customization ) who can customize the WooCommerce templates for you.
Best regards,
PeterJuly 17, 2014 at 5:31 pm in reply to: Plugin Update Error in wp-includes/update.php with ENFOLD 2.9.1 #292576Hey!
We’ll monitor the issue and check if more users report it. We use an envato class ( https://github.com/envato/envato-wordpress-toolkit-library ) for the theme updater and maybe it triggers this error somehow.
Best regards,
PeterHey fidelitas!
Yes, I recommend to add a custom class to the div or span elements and then use css code to remove any unecessary paddings or margings. If you need help with the css styling please add the code (div tags) to the header.php and we’ll investigate the code with the developer tools to provide the necessary css code.
I recommend to edit header.php directly because Enfold doesn’t support a Local Business Schema out of the box. You could add it with a filter but it doesn’t make much sense because you must edit header.php anyway.
Regards,
PeterHi!
I’m not sure if I understand the problem but I think you want to remove the dash – ( & #8211; ) from the Tweet content? Keeping the dash directly is not possible because it’s not a valid url charachter and thus Enfold converts it to an entity which is & #8211;. You can try to use a minus ( – ) instead or replace the dash with another character.
Regards,
PeterHey!
If you’re using the nsp code plugin the arrows will not work correct because the plugin breaks the default wordpress functions for next/prev post queries ( http://codex.wordpress.org/Function_Reference/get_next_post and http://codex.wordpress.org/Function_Reference/get_previous_post ). Personally I wrote some code for a workaround which works with the premium version of the plugin and which runs on my website:
add_filter('avia_post_nav_entries', 'avia_apply_custom_sort_order_to_post_nav', 10, 2); function avia_apply_custom_sort_order_to_post_nav($entries, $settings) { if(class_exists('APTO_functions')) { $APTO = new APTO_functions(); $category_ids = false; $args = array(); $the_id = get_the_ID(); if(!empty($settings['same_category'])) { $taxonomies = get_object_taxonomies(get_post_type($the_id)); $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id); if(!empty($taxonomies)) { foreach($taxonomies as $taxonomy) { if(!in_array($taxonomy, $excluded_taxonomies)) { $category_ids = wp_get_post_terms($the_id, $taxonomy, array("fields" => "ids")); if(!empty($category_ids)) { $args = array( 'taxonomy' => $taxonomy, 'term_id' => array_shift($category_ids) ); break; } } } } } $entries['prev'] = $APTO->apto_get_adjacent_post($args, true); $entries['next'] = $APTO->apto_get_adjacent_post($args, false); } return $entries; }but I’m not sure if it works with the free version. You can place it into the theme functions.php file. If it doesn’t work please contact the plugin author because we can’t support third party plugins and it’s beyond the scope of our support forum. As a temporary solution you can deactivate the nsp plugin.
Cheers!
PeterHi!
In wp-content/themes/enfold/includes/loop-index.php replace
if(is_single() && !post_password_required()) { //tags on single post if(has_tag()) { echo '<span class="blog-tags minor-meta">'; the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> '); echo '</span></span>'; } //share links on single post avia_social_share_links(); }with
if(is_single() && !post_password_required()) { //tags on single post if(has_tag()) { echo '<span class="blog-tags minor-meta">'; the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> '); echo '</span></span>'; } } //share links on single post avia_social_share_links();Regards,
PeterHi!
You can also try http://www.woothemes.com/products/groups-woocommerce/ and http://wordpress.org/plugins/groups/ . itthinx is a German developer.
Best regards,
PeterThis reply has been marked as private.July 17, 2014 at 4:52 pm in reply to: Events Manager Single Event Page Title using Blog "News" header title #292560Hi!
You can extend the container width of the fullwidth blog with some css code – insert it into the quick css field or child theme style.css file:
#top .fullsize .template-blog .post .entry-content-wrapper { max-width: 100%; } #top .fullsize .template-blog .post .entry-content-wrapper > * { max-width: 100%; }If you don’t like the results try to change the width value to i.e. 85 or 90%.
Cheers!
PeterHey holger!
Dies ist ein Problem mit der Server-Konfiguration. Ich schlage vor den the max_input_vars Wert in der php.ini Datei anzupassen – siehe http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-custom-menu-items-limit-in-wordpress/comment-page-1/#comment-186321 oder wenn der Server suhosin nützt: http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-custom-menu-items-limit-in-wordpress/
Cheers!
PeterJuly 17, 2014 at 4:45 pm in reply to: Woocommerce filters still not working on iphone/ipad after update #292555Hi!
I’ll mark this one for Kriesi and Josue – afaik both can test the dropdown fields with a Mac and can check if a js script solves the issue.
Regards,
PeterHi!
The calendar seems to work for me now: http://www.clipular.com/c/6408407292575744.png?k=t_fEjQ70YpbDAPqU8cAAyZcl8o4
and http://www.clipular.com/c/5656684064145408.png?k=xx8dV0nfXhGPhLf31OS-oL-MU7ERegards,
PeterHi calebcuster!
No, Magnific Popup doesn’t support such icons yet. You can suggest this feature here: https://kriesi.at/support/enfold-feature-requests/ and we’ll add it if more users request it.
Cheers!
PeterJuly 15, 2014 at 6:30 pm in reply to: Woocommerce filters still not working on iphone/ipad after update #291749Hey monkey_girl!
Please try if this css code fixes the issue on iphones/ipads:
div .product-sorting ul{ -webkit-transition: all 0.1s ease-in-out; -moz-transition: all 0.1s ease-in-out; -ms-transition: all 0.1s ease-in-out; -o-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; }Regards,
PeterThis reply has been marked as private.Hi!
Please try to insert this cpode into the enfold/functions.php file – it should change the subject to “New message sent by contact form at XXX” and instead of XXX the page title of the contact form page will be used.
add_filter('avf_form_subject', 'avia_change_subject', 10, 3); function avia_change_subject($subject, $new_post, $params){ $subject = __("New Message", 'avia_framework') . " (".__('sent by contact form at','avia_framework')." ".get_the_title().")"; return esc_html($subject); }Best regards,
PeterHi!
It depends on the blog layout – if you’re using a sidebar search for this line in enfold/functions.php:
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entriesand replace 270 with 220. If you’re using a fullwidth layout search for this line:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );and replace 360 with 220. Afterwards regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/
If you don’t want to edit the theme files you can install a plugin like: http://wordpress.org/plugins/simple-image-sizes/ to change the thumbnail sizes.
Best regards,
PeterHey!
Yes, please insert this code into the functions.php file (child theme functions.php or enfold/functions.php):
add_filter('avf_avia_builder_masonry_lightbox_img_size', 'avia_change_gallery_thumbnail_link', 10, 1); function avia_change_gallery_thumbnail_link($size) { return "full"; }Cheers!
PeterJuly 15, 2014 at 5:41 pm in reply to: Enfold – Change number of portfolio columns depending on screen width #291715Hey!
Please try this code:
@media only screen and (min-width: 767px) { /* Add your Desktop Styles here */ /* chnage height of fullwidth slider */ .avia-slideshow-inner { height: 350px !important; } .caption_container{ height: 350px !important; } } @media only screen and (min-width: 768px) and (max-width: 989px) { #top #wrap_all .grid-sort-container .av_one_fifth { width: 25%; } }If it still doesn’t work try to increase the max-width value – i.e. set it to 1024px or 1280px.
Cheers!
PeterJuly 15, 2014 at 5:35 pm in reply to: HELP! Doing an update and have this error – Fatal error: Call to undefined funct #291714Hi!
Try to re-upload the wp-content/themes/enfold/functions-enfold.php file. It contains the function mentioned in the first post (avia_get_header_scroll_offset()).
Regards,
Peter -
AuthorPosts
