Forum Replies Created
-
AuthorPosts
-
Hi codecreative!
Thank you for using Enfold.
You can use this on functions.php to remove the debugging info:
remove_action('wp_head','avia_debugging_info',1000); remove_action('admin_print_scripts','avia_debugging_info',1000);
Best regards,
IsmaelJanuary 23, 2015 at 1:08 pm in reply to: How to implement a group of elements to appear in multiple pages? #384328Hey!
No, unfortunately,that is not possible. Aside from saving the template and switching the builder to debug mode (http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/), I’m afraid we can’t help you further. Please contact a plugin developer to build such feature.
Cheers!
IsmaelHi trevorjohnston!
Thank you for using Enfold.
I’m sorry but we don’t provide support for third party plugins so instead of using the Post Types Order plugin, you can add this on functions.php:
function custom_post_grid_query( $query, $params ) { $query['orderby'] = 'menu_order'; $query['order'] = 'ASC'; return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2); add_filter('avf_portfolio_cpt_args', 'avf_portfolio_add_custom_fields', 1); function avf_portfolio_add_custom_fields($args) { $args['supports'] = array('title','thumbnail','excerpt','editor','comments', 'custom-fields', 'page-attributes'); return $args; }
Edit the portfolio items then look for the Page Attributes > Order metabox. Insert a number to manually reposition the items. You can do this on the Quick Edit screen.
Cheers!
IsmaelHey!
You need to insert all contents inside the Color Section. Right now, the content such as the gallery, text block is outside the color section with the background.
Best regards,
IsmaelJanuary 23, 2015 at 12:51 pm in reply to: header: glassy small bar combined with no trancparency main bar + height #384317Hi!
Actually, the top header is already transparent but the page is not set to transparent header. Edit the page then look for Layout > Header visibility and transparency. Set it to Transparent or Glassy Header. You can use this on Quick CSS:
.header_color .header_bg { background: rgba(255,255,255,.2); }
Cheers!
IsmaelJanuary 23, 2015 at 12:45 pm in reply to: Enfold WPML flags and social media icons get centered in mobile view #384315Hi!
Adjust the padding with this:
@media only screen and (max-width: 767px) { .responsive #header_meta .sub_menu>ul>li { padding: 0 1px; } }
If you want a dropdown switcher, please refer to this link: https://kriesi.at/support/topic/wpml-12/#post-374726
Cheers!
IsmaelJanuary 23, 2015 at 12:39 pm in reply to: how to make background of main page content transparent or almost transparent? #384312Hi!
Alright. Let us know once the site is fixed. Try the Color Section element to apply a custom background on a specific page.
Cheers!
IsmaelHi!
Thank you for using Enfold.
What is the email that you are using? Try to install this plugin to configure the smtp server:
https://wordpress.org/plugins/wp-mail-smtp/
https://wordpress.org/plugins/easy-wp-smtp/Best regards,
IsmaelJanuary 23, 2015 at 12:29 pm in reply to: moving config-woocommerce files to child theme possible? #384307Hi RobWu!
Thank you for using Enfold.
I’m sorry but we don’t provide support for third party plugins as stated on our support policy. Unfortunately, it is not possible to modify the WooCommerce config.php on the child theme. You can use the WooCommerce filters and hooks to modify the layout of the product page.
Best regards,
IsmaelJanuary 23, 2015 at 12:27 pm in reply to: Did the more shortcode get extra vertical space since enfold 3.0.5 #384305Hey!
Alright. Add this on Quick CSS to remove the link on single post view:
.single p.excerpt + p { display: none !important; }
Cheers!
IsmaelJanuary 23, 2015 at 12:25 pm in reply to: Background Video toggles presentation with undesirable margins #384304Hey!
Try to replace the Video Aspect Ratio value with 16:9 instead of 4:3.
Best regards,
IsmaelJanuary 23, 2015 at 12:13 pm in reply to: Add icons to Cart page buttons: 'Apply Coupon', 'Update Cart', and 'Checkout' #384300Hey!
You can create your own icon then use this on Quick CSS:
#top .actions .checkout-button.button.alt { background-image: url('ICON URL HERE'); background-position: 5px 5px; background-repeat: no-repeat; }
Use this for the update to cart button:
#top table.shop_table .actions input[name="update_cart"] { }
Best regards,
IsmaelHey!
The breadcrumb is based on page hierarchy not on menu hierarchy. There is no relation between the breadcrumbs and how you order the menu items. There is also a script which renders the page where you are, previously. If you want to disable it and show the actual category of the portfolio items, add this on functions.php:
add_action('after_setup_theme','avia_remove_portfolio_breadcrumb'); function avia_remove_portfolio_breadcrumb(){ remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb'); }
Cheers!
IsmaelHey!
You can add an excerpt and a read more link on the magazine element. Refer to these links:
https://kriesi.at/support/topic/show-excerpt-in-all-magazine-blog-list-2/#post-310861
https://kriesi.at/support/topic/show-excerpt-in-all-magazine-blog-list-with-read-more-link/#post-311683Regards,
IsmaelJanuary 23, 2015 at 11:43 am in reply to: Slider Picture Size for Enfold Photography Portfolio? #384286Hey!
I’m sorry, the size of the images used in the demo is 1400x1000px. You can use larger images.
Regards,
IsmaelHey!
What do you mean by “are not in responsive design”? Let’s visit this page, http://www.ungecombo.de/powerchords/galerie/. Can you please provide a screenshot on how you want that page to look like? How you want the background to look like to be exact.
Cheers!
IsmaelHey!
Disable the sidebar on the page then use column layouts to separate the content from the sidebar. Use the Widget Area element to call back the sidebar or custom widget.
Cheers!
IsmaelHey!
You can copy the whole avia_sidebar_menu on the child theme’s functions.php:
function avia_sidebar_menu($echo = true) { $sidebar_menu = ""; $subNav = avia_get_option('page_nesting_nav'); $the_id = @get_the_ID(); $args = array(); global $post; if($subNav && $subNav != 'disabled' && !empty($the_id) && is_page()) { $subNav = false; $parent = $post->ID; $sidebar_menu = ""; if (!empty($post->post_parent)) { if(isset($post->ancestors)) $ancestors = $post->ancestors; if(!isset($ancestors)) $ancestors = get_post_ancestors($post->ID); $root = count($ancestors)-1; $parent = $ancestors[$root]; } $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'=>'menu_order, post_title'); //enables user to change query args $args = apply_filters('avia_sidebar_menu_args', $args, $post); //hide or show child pages in menu - if the class is set to 'widget_nav_hide_child' the child pages will be hidden $display_child_pages = apply_filters('avia_sidebar_menu_display_child', 'widget_nav_hide_child', $args, $post); $children = wp_list_pages($args); if ($children) { $default_sidebar = false; $sidebar_menu .= "<nav class='widget widget_nav_menu $display_child_pages'><ul class='nested_nav'>"; $sidebar_menu .= $children; $sidebar_menu .= "</ul></nav>"; } } $sidebar_menu = apply_filters('avf_sidebar_menu_filter', $sidebar_menu, $args, $post); if($echo == true) { echo $sidebar_menu; } else { return $sidebar_menu; } }
Do the modification above.
Cheers!
IsmaelJanuary 23, 2015 at 9:45 am in reply to: Video in Layerslider not 100% responsive, please help #384255Hi designbyjm!
Thank you for using Enfold.
Please refer to this link on how to create a full width video: https://kriesi.at/support/topic/layerslider-zoom-video-to-fill-banner-space/#post-327976
Best regards,
IsmaelJanuary 23, 2015 at 9:33 am in reply to: How to have the blog width smaller than the main content? #384251Hey!
Add this on Quick CSS to modify the width and alignment of the featured image:
#top .fullsize .template-blog .big-preview img { width: 100%; max-width: 660px; margin: 0 auto; }
Best regards,
IsmaelJanuary 23, 2015 at 9:23 am in reply to: Latest News Widget Query from ALL custom post types #384249January 22, 2015 at 2:33 pm in reply to: Did the more shortcode get extra vertical space since enfold 3.0.5 #383686Hey!
Alright. I can see the blog page now. You can adjust the top margin of the more link with this:
#top .template-blog .more-link { margin-top: 20px; }
Cheers!
IsmaelJanuary 22, 2015 at 2:32 pm in reply to: Did the more shortcode get extra vertical space since enfold 3.0.5 #383685Hey Marc!
Thank you for using Enfold.
I checked the site but the read more link for the blog posts are missing. Did you remove it?
Best regards,
IsmaelJanuary 22, 2015 at 2:30 pm in reply to: Post with featured image not above but beside the header #383683Hi!
Add this on Quick CSS to increase the width of the excerpt container:
.template-blog .blog-meta { position: absolute; } header.entry-content-header { padding-left: 120px; } .template-blog .entry-content { padding-top: 20px; } .post_author_timeline { display: none; }
Regards,
IsmaelJanuary 22, 2015 at 2:24 pm in reply to: header: glassy small bar combined with no trancparency main bar + height #383682Hey leftm!
Thank you for using Enfold.
If you don’t mind, please provide a screenshot on how you want the header to look like. Remove the top bar with this on Quick CSS:
div#header_meta { display: none; }
Set the height of the header on Enfold > Header > Header Size. Set it to custom pixel value.
Best regards,
IsmaelHi krievinshj!
Thank you for using Enfold.
Please refer to this link for a possible fix: https://kriesi.at/support/topic/wpml-customization/#post-352885
Best regards,
IsmaelHi crewneck!
Thank you for using Enfold.
Change the border color with this:
.html_header_top.html_bottom_nav_header .main_menu ul:first-child>li a { border-color: red; }
Regards,
IsmaelHi!
I was able to add the content slider without any problem: http://www.newmarketing.no/wordpress/scatec4/wp-admin/post.php?post=9&action=edit&message=1
Best regards,
Ismael -
AuthorPosts