Forum Replies Created
-
AuthorPosts
-
November 5, 2014 at 7:58 pm in reply to: Editing Woocommerce single product page and customer emails. #346727
Hey!
Try adding this to your custom CSS,
div.product .product_title { margin-top: 100px !important; }
And then add this to the bottom of your /enfold/functions.php file,
add_action( 'woocommerce_after_single_product_summary', 'the_content', 1 ); add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 ); function woo_remove_product_tabs( $tabs ) { unset( $tabs['description'] ); unset( $tabs['reviews'] ); unset( $tabs['additional_information'] ); return $tabs; }
Regards,
ElliottNovember 5, 2014 at 7:40 pm in reply to: Displaying author via custom field instead of WordPress' author system #346721Hey sasusc!
Try adding this to the bottom of your /enfold/functions.php file,
add_filter( 'the_author_posts_link', 'customization_change_author' ); function customization_change_author( $link ) { global $post; $author = get_post_meta( $post->ID, 'custom_author', true ); if ( $author != null ) { return $author; } else { return $link; } }
And change “custom_author” to whatever key your custom field is set to.
Best regards,
ElliottNovember 5, 2014 at 7:21 pm in reply to: Anyway Solution to Hide Portfolio Child Categories? #346715Hey JaredBurnett!
Try opening up /enfold/config-templatebuilder/avia-shortcodes/masonry-entries.php and find line 888 which should look like this,
'terms' => $terms,
Add this beneath it,
'include_children' => false,
This should exclude the child categories.
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hey Grant!
Try adding this to your custom CSS,
.header_bg { opacity: 1 !important; }
Best regards,
ElliottHi!
Thanks for posting your solution momon. Let us know if you have any other questions.
Best regards,
ElliottHey miramontes!
See here for more info, https://kriesi.at/support/topic/enfold-theme-options-header-social-icon/.
Cheers!
ElliottHi!
Does it happen in all pages or just a certain page? Can you send us a WordPress login so we can take a closer look?
Best regards,
ElliottHey!
The only other thing I can think of would be to have the title and excerpt display on hover. There just isn’t enough space on a small screen to display them on top of the image like that.
Cheers!
ElliottHey!
Ahh, I see what you mean now. Try adding this to the bottom of your /enfold/functions.php file.
add_action( 'parse_tax_query', 'customization_portfolio_archive_no_children' ); function customization_portfolio_archive_no_children( $q ) { if ( is_tax( 'portfolio_entries' ) ) { $q -> tax_query -> queries[0]['include_children'] = 0; } }
Cheers!
ElliottHey!
Versuchen Sie dies zu Ihrer benutzerdefinierten CSS,
@media only screen and (max-width: 767px) { .avia-builder-el-0.av-minimum-height-100 .container, .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow { height: 400px !important; } }
Möglicherweise müssen Sie spielen, um mit der 767px Wert ein wenig, um es gut aussehen .
Grüße,
ElliottNovember 5, 2014 at 5:12 pm in reply to: How can I add a location on the googlemap by Longitude and Latitude? #346638Hey!
Not sure why it’s working for some coordinates and not others. For some coordinates it would only return this for the images, https://maps.gstatic.com/mapfiles/transparent.png.
I tested this plugin out, http://www.wpgmaps.com/, and your coordinates seem to work fine in it.
I’ll flag this for the rest of our team to see if they have any idea on what it could be.
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
November 5, 2014 at 3:58 pm in reply to: Add "Read more" link on blog page and Comments section on Blog page #346580Hi!
It’s working fine on my XAMPP setup. Are you sure you have copied the file to your child theme? Try clearing your browser cache and any caching related plugins you might have installed.
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
November 5, 2014 at 3:55 pm in reply to: Installed bbpress but can't see forums in the dashboard #346577Hi!
I see them fine on my end. Try clearing your browser cache.
Cheers!
ElliottHey printdesignfactory!
Can you send us a WordPress login and mark the reply as private so we can take a closer look?
Regards,
ElliottHey OriginsSpeak!
All of the text and other elements are working fine on my end. Try clearing your browser cache and any caching related plugins you might have installed.
Cheers!
ElliottHey ascensionpresspublishing!
Perhaps your losing quality when your editing with Photoshop. Send us a link and we’ll take a look.
Regards,
ElliottHi!
Glad you got it sorted dmoz. Let us know if you have any other questions.
Regards,
ElliottHi momon!
I’m not sure if this edit would be feasible in a child theme but you can do this by opening up /enfold/includes/admin/register-portfolio.php and changing line 38 from this,
'supports' => array('title','thumbnail','excerpt','editor','comments')
To this,
'supports' => array('title','thumbnail','excerpt','editor','comments', 'author')
EDIT:
You can try adding this to your child theme’s functions.php file but I’m not sure if this is safe or not so I would wait for another member of our team to check and see if there is a better way.
add_action('init', 'customization_portfolio_register'); function customization_portfolio_register() { global $avia_config; $labels = array( 'name' => _x('Portfolio Items', 'post type general name','avia_framework'), 'singular_name' => _x('Portfolio Entry', 'post type singular name','avia_framework'), 'add_new' => _x('Add New', 'portfolio','avia_framework'), 'add_new_item' => __('Add New Portfolio Entry','avia_framework'), 'edit_item' => __('Edit Portfolio Entry','avia_framework'), 'new_item' => __('New Portfolio Entry','avia_framework'), 'view_item' => __('View Portfolio Entry','avia_framework'), 'search_items' => __('Search Portfolio Entries','avia_framework'), 'not_found' => __('No Portfolio Entries found','avia_framework'), 'not_found_in_trash' => __('No Portfolio Entries found in Trash','avia_framework'), 'parent_item_colon' => '' ); $permalinks = get_option('avia_permalink_settings'); if(!$permalinks) $permalinks = array(); $permalinks['portfolio_permalink_base'] = empty($permalinks['portfolio_permalink_base']) ? __('portfolio-item', 'avia_framework') : $permalinks['portfolio_permalink_base']; $permalinks['portfolio_entries_taxonomy_base'] = empty($permalinks['portfolio_entries_taxonomy_base']) ? __('portfolio_entries', 'avia_framework') : $permalinks['portfolio_entries_taxonomy_base']; $args = array( 'labels' => $labels, 'public' => true, 'show_ui' => true, 'capability_type' => 'post', 'hierarchical' => false, 'rewrite' => array('slug'=>_x($permalinks['portfolio_permalink_base'],'URL slug','avia_framework'), 'with_front'=>true), 'query_var' => true, 'show_in_nav_menus'=> true, 'taxonomies' => array('post_tag'), 'supports' => array('title','thumbnail','excerpt','editor','comments', 'author') ); $args = apply_filters('avf_portfolio_cpt_args', $args); $avia_config['custom_post']['portfolio']['args'] = $args; register_post_type( 'portfolio' , $args ); $tax_args = array( "hierarchical" => true, "label" => "Portfolio Categories", "singular_label" => "Portfolio Category", "rewrite" => array('slug'=>_x($permalinks['portfolio_entries_taxonomy_base'],'URL slug','avia_framework'), 'with_front'=>true), "query_var" => true, "supports" => array('title', 'editor', 'author' ) ); $avia_config['custom_taxonomy']['portfolio']['portfolio_entries']['args'] = $tax_args; register_taxonomy("portfolio_entries", array("portfolio"), $tax_args); //deactivate the avia_flush_rewrites() function - not required because we rely on the default wordpress permalink settings remove_action('wp_loaded', 'avia_flush_rewrites'); }
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hi kifela!
Add this to line 420,
$output .= the_field('field_name');
I’m not sure if that function echoes or returns. If it returns then your good but if it echoes then it’s going to display outside of the content slider. There is probably a PHP trick out there for that but I do not know of it. You’ll want to contact the plugin author in that case or use get_post_meta, http://codex.wordpress.org/Function_Reference/get_post_meta.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hey!
@ddndesign, Your using Enfold 2.4.1 but the latest version is 3.0.2. Go ahead and update to fix the problem.
@web93design, Can you send us a WordPress login so we can take a closer look? Make sure to mark your reply as private.Cheers!
ElliottHey GOWD!
It looks like it’s because of some custom CSS your using,
.responsive .container { max-width: 80%; }
Yes I think ubermenu should be working fine. Go ahead and activate it and we’ll take a look. If you have time then a screenshot highlighting the problem would be great.
Cheers!
ElliottNovember 5, 2014 at 12:18 am in reply to: Tri.be Event Calendar Pro – Single Event view… MESSY #346254Hey!
Open up /enfold/config-events-calendar/views/single-event.php and on lines 31 – 75 you will see the content for that section. What you’ll want to do is just delete all of the divs you see on those lines. For example,
<div class='av-single-event-meta-bar'> </div>
That will get rid of the columns and have everything display beneath each other.
Regards,
ElliottHi!
Add this to the style tag as well,
.flex_column .avia-slideshow { margin-bottom: 0px !important; } .entry-content-wrapper .flex_column { margin-top: 3px !important; }
Cheers!
ElliottHi!
It’s a little too advanced to learn it overnight. You would want to hire a freelancer to help you out. I recommend using Werkpress which you can contact through this form, http://kriesi.at/contact/customization.
Best regards,
ElliottNovember 4, 2014 at 11:39 pm in reply to: Editing Woocommerce single product page and customer emails. #346229Hi!
Unfortunately I don’t see an easy way of doing that. We can use CSS to move it around but that will affect all of your product pages and I’m sure you will have different descriptions for each product. The grey part is because it’s a tab where the user can switch between description and reviews. Are you wanting to just get rid of all of that and display the description on it’s own?
Best regards,
ElliottHi erussell!
Try splitting it up into two gallery shortcodes. If your still seeing the problem then send us a WordPress login so we can take a closer look. Be sure to mark the reply as private.
Cheers!
ElliottHey Morendo_Memoria!
You can target it with this class,
#sub_menu1 .sub-menu { }
They appear full height to me. Make sure to target the links like so,
#sub_menu1 .sub-menu a:hover { background: red !important; }
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hi dereknicholson!
You currently have that one set to be a mega menu.
Uncheck the mega menu option when editing the menu link to have it return to normal.
Cheers!
ElliottHey adrianej!
Open up /enfold/includes/loop-index.php and add this on line 200,
//show related posts based on tags if there are any get_template_part( 'includes/related-posts');
Next open up /enfold/single.php and comment out line 40,
//get_template_part( 'includes/related-posts');
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hi Annemarie!
Try adding this to your custom CSS,
.avia-button { background: transparent !important; border: #333333 2px solid !important; color: #333333 !important;
If you edit the button and switch to the “Colors” tab then the “Dark Transparent” style is very close to what your trying to set it to.
Regards,
Elliott -
AuthorPosts