Forum Replies Created
-
AuthorPosts
-
Hey DustinH93!
Thank you for using Enfold.
1.) Please look for this code:
if($show_meta && !empty($excerpt)) { $output .= "<div class='slide-meta'>"; if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio') { $link_add = $commentCount === "0" ? "#respond" : "#comments"; $text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' ); $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>"; }
Replace it with:
if($show_meta && !empty($excerpt)) { $output .= "<div class='slide-meta'>"; if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio') { $link_add = $commentCount === "0" ? "#respond" : "#comments"; $text_add = $commentCount === "1" ? __('Contribute', 'avia_framework' ) : __('Contribute', 'avia_framework' ); $commentCount = $commentCount !== "0" ? $commentCount : ''; $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>"; }
Again, look for this line of code:
$commentCount = get_comments_number($the_id);
Replace it with:
$commentCount = $entry->comment_count;
2.) Can you please provide a link to the issue? We would like to check it.
Best regards,
IsmaelHi!
@vicrub: You can add your css modifications to the Enfold > General Styling > Quick CSS field. You can also modify some elements inside the Advanced Styling panel.
@cbentley65: This is for the tab title and tab content:div .main_color .tabcontainer .active_tab_content, div .main_color .tabcontainer .active_tab { background-color: red; } #top .main_color .tabcontainer .tab:hover { background-color: red; } .main_color .template-archives .tabcontainer a, #top .main_color .tabcontainer .tab:hover, #top .main_color .tabcontainer .tab.active_tab { color: yellow; }
Use google inspector or firebug to find the right selectors for the elements that you want to modify via css.
Cheers!
IsmaelHi!
Did you change the id “459” to the id of the “My Work” page?
$page = get_post(459, ARRAY_A);
Cheers!
IsmaelHey!
I think it’s because of the width of the invisible line on both sides of the icon. You set the width of the separator with the issue to 200px and the other to 50px. It doesn’t automatically resize the width of this elements on smaller screens so it pushes the icon out of line. A fix should be included on the next update.
Best regards,
IsmaelHey!
Unfortunately, you can’t use the advance layout builder when designing category pages. Yes, it will require custom coding. Please hire a freelance developer. If you want the avia_post_nav (post navigation) to filter the same category, add this to the functions.php file:
add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod'); function avia_post_nav_settings_mod($settings) { $settings['is_fullwidth'] = false; $settings['same_category'] = true; return $settings; }
Cheers!
IsmaelHi!
Edit the page then look for Layout > Header visibility and transparency. Select “Transparent Header”.
Cheers!
IsmaelHey!
Add the !important attribute after the css value.
input#subscribe-field { border-radius: 2px!important; width: 250px !important; font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important; font-weight: 100!important; max-width: 250px !important; box-sizing: border-box; font-weight: 100!important; border: 1px dotted #e1e1e1 !important; }
Adjust the width and max-width if necessary.
Best regards,
IsmaelHi!
Add the menu items of the secondary menu to the menu that you set as Enfold Main Menu. Add this to the Quick CSS field to remove the header_meta container:
#header_meta { display: none; }
Cheers!
IsmaelHi!
Try to replace the code with this:
add_filter('avf_title_args', 'avf_portfolio_title_args', 10, 1); function avf_portfolio_title_args($args) { if(is_single()) $title = get_the_title($id); if(is_singular('portfolio') && is_single()) { $terms = get_the_terms( $id, 'portfolio_entries' ); }elseif(is_singular('post')){ $terms = get_the_terms( $id, 'category' ); } if(is_singular(array('portfolio', 'post')) && is_single()) { $portfoliocat = array(); foreach ( $terms as $term ) { $portfoliocat[] = $term->name; } $args['title'] = $portfoliocat[0]; } else { $args['title'] = $title; } return $args; }
Regards,
IsmaelHi!
Edit config-woocommerce > config.php, replace it with this code: http://pastebin.com/hjiKP5Jx
Cheers!
IsmaelHi!
Maybe the solution provided by another user will help: https://kriesi.at/support/topic/problem-installing-coming-soon-demo/#post-402978
Best regards,
IsmaelHi CharlieTh!
Thank you for using Enfold.
You can add this to the Quick CSS field:
.avia_desktop.avia_transform3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image:hover .av-inner-masonry-content { background: yellow; }
Best regards,
IsmaelHey mlk92!
Thank you for using Enfold.
1.) Edit the portfolio item then set the Overwrite Portfolio Link setting to custom link. Add the url of the video. Make sure that url structure look something like this:
http://www.youtube.com/watch?v=G0k3kHtyoqc
2.) Create a page, add the Portfolio Grid element. Make sure that the Link Handling option is set to default, not AJAX.
Best regards,
IsmaelHey pallisvans!
Thank you for using Enfold
Custom sidebars should be placed at the top by default. Can you please explain what you mean? You can also set the page layout to “No Sidebar” then use the Widget Area elements to control the sidebar or widget area position.
Best regards,
IsmaelHey!
Yes, that is possible but it will require a custom script, jquery or javascript probably, that should calculate the height of the two smaller blocks (a & b) then apply the total height as the height of block c. It is also possible with html codes inside a text or code block but it will require too many css media queries to make it work on smaller or larger screens. So doing it via jquery is easier. You can refer to these links for example:
http://stackoverflow.com/questions/3275850/set-a-div-height-equal-with-of-another-div
http://pressupinc.com/blog/2014/02/setting-dynamic-equal-heights-multiple-elements-jquery/Regards,
IsmaelHey!
Yes, the fix should be included on future updates. You’re actually the only user who reported the issue.
Cheers!
IsmaelHi ThomasWitzany!
Thank you for using Enfold.
You can save it as Template, look for the “Template” button at the top right corner of the advance layout builder. Or switch the builder to debug mode to preview the actual shortcode: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Best regards,
IsmaelHi!
Go to the Relevanssi panel then increase the Minimum word length to index: value to at least 4 then resave the index. You will get fewer and more relevant results when using the ajax search. Also, the theme’s ajax search returns a maximum of 5 items per post types, you can decrease that by adding this filter to the functions.php file:
add_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1); function avf_modify_ajax_search_query($search_parameters) { parse_str($search_parameters, $params); $params['numberposts'] = 3; $search_parameters = http_build_query($params); return $search_parameters; }
Adjust the numberposts parameter.
Cheers!
IsmaelHi!
Use the iframe code instead of the media element. Video attributes will be removed when using the WP embed code, unfortunately, this is the same script use in the theme.
Regards,
IsmaelHi!
I tried the link above, wp-admin and wp-login but they aren’t working. Please check.
Best regards,
IsmaelMarch 2, 2015 at 6:38 am in reply to: Video backgroud Layerslider WP strange display in mobile phones #404306Hey NaRanJiTo78!
Thank you for using Enfold.
The problem, the slider height is too high, 1000px and the Layers Container is not set. Refer to this link: https://kriesi.at/support/topic/responsive-layerslider-wp-in-mobile-phones/#post-404303
Cheers!
IsmaelHi NaRanJiTo78!
Thank you for using Enfold.
This is a possible but it will require a custom modification that is beyond the scope of support. Anyway, users can always click right mouse button then enable “Mute”.
Regards,
IsmaelHey NaRanJiTo78!
Thank you for using Enfold.
Set a value to the Responsive Under and Layers Container field.
Regards,
IsmaelMarch 2, 2015 at 6:22 am in reply to: random visual and speed isues after last update 4.1.1 + 3.0.8 #404297Hey!
I refreshed the page exactly 5 times but I can’t reproduce the issue. Maybe, it’s an intermittent issue with the server which randomly occur at a random time of the day. Please contact them for more info. Try to install a cache plugin. It should help.
Cheers!
IsmaelHey!
Thank you for using Enfold.
I’m sorry but I don’t see any layer slider on the home page. Can you please create a test page? You need to play around with the Duration and Delay options of the layer. Make sure that it doesn’t exceed the general duration settings of the whole slide.
Best regards,
IsmaelHi!
I checked the site and the cart_dropdown isn’t showing even when you add an item. Please replace the code with this:
@media only screen and (max-width: 767px) { .responsive #top .cart_dropdown { right: -160px; } .responsive #top .cart_dropdown.visible_cart { right: 7.5%px; } }
Also, the social icons are visible on mobile. Please remove browser cache then reload the page. Use this to adjust the position:
@media only screen and (max-width: 767px) { .responsive.html_header_top #header_main .social_bookmarks { top: 0; right: -60%; }}
Best regards,
IsmaelHey!
Glad you figured it out. If you still want to translate other text or strings, you can use this plugin: https://wordpress.org/plugins/codestyling-localization/
Best regards,
IsmaelHi!
I’m sorry but I don’t understand what you’re saying. What is “Piebald this but please times.”?
Like I said, there are only 5 endpoints. I edited the menu for you:
http://franzelina.com/wp-admin/nav-menus.php?action=edit&menu=3793
The login and register page is the same as the my account page so when you’re logged in to the site and you click the login or register menu items, you will be redirected to the my account page.
Best regards,
Ismael -
AuthorPosts