Hi,
I changed the .php to display a different logo as per your instructions here
This seems to work fine except when I view on an Iphone 5 and there is a slight clipping on the right side of the logo by the search icon which is between the logo and the hamburger menu.
I have tried different css to try and resize it or move it slightly to the left but nothing seems to work
I think I only need this to effect screens below 768px as it looks fine on the later Iphones and Ipads
Regards
Ian
Hello.
Thank you for a great theme. I have searched through the forum, but have not found a resolution for my issue. I have recently had problems with the “Featured Image” in my portfolio. The thumbnail images are not resizing to the previously consistent size as you can see in the link provided below. Instead, the images are too large and appear to be cut off. The image sizes are identical to all the previous images i have used: 1920 x 1080. I am not sure what is causing the difference in portfolio items now. My two most recent posts have this issue.
I really enjoy this theme. I hope to be able to continue its use. Any help you can offer would be greatly appreciated.
i see in your css:
#top .main_color .input-text, #top .main_color input[type="text"], #top .main_color input[type="input"], #top .main_color input[type="password"], #top .main_color input[type="email"], #top .main_color input[type="number"], #top .main_color input[type="url"], #top .main_color input[type="tel"], #top .main_color input[type="search"], #top .main_color textarea, #top .main_color select {
border-color: #363636;
background-color: #111111;
color: #8c8c8c;
}
and this is in your vip.entertainment.css ( don’t know where this comes from- it is no enfold including css file)
or do you have renamed your child-theme?
change the background-color to your #fff
try to overwrite these rules on taking the contact-form 7 classes:
.wpcf7-form .wpcf7-select,
.wpcf7-form .wpcf7-text {
background-color: #fff !important
}
and on your logo – i would do it in the way to have two logos on top
you know how you did place the search in secondary logo – and your nav seems to be a different nav than the enfold one.
but here you can see how it works with two logos on top and a little shift of nav.
i will send you the link
Hello Enfold team,
I need to update my wordpress version, I’m not even certain which version I am running, but on my dashboard it is asking me to update to 4.9.4. I also need to run the latest Enfold theme update (Version 4.2.3); however I have custom CSS (Quick CSS) on my theme and some other custom code on some of the template editors, will I loose all of that if I update.
Very frightened that I will crash my site (personal portfolio site) and I am in the midst of job searching, so recruiters are looking at my site all the time currently and I cannot risk it crashing.
What is my best plan of action to update and not loose any custom CSS and have my site look and behave like it should?
http;//www.stacymarie.co
Hey guys,
Moved from Enfold 4.2 to the latest 4.2.3 and now Google’s Structured Data Testing Tool is reporting 2 errors that I guess must be in relation to your new schema markup on images that was mentioned in the one of the change logs.
https://search.google.com/structured-data/testing-tool#url=https%3A%2F%2Fwww.microstockman.com%2Fmicrostock-agency-reviews%2Fshutterstock-review%2F
as an example, you will see 2 errors on the “WebPage” property relating to images.
Can you please take a look and figure out how to resolve this?
Also, I was excited to see images being marked up in the new update, but unfortunately that is not the case on WooCommerce product pages. Eg: https://www.microstockman.com/stock-photos/love-letters/ – surely product pages is one of the pages that would need image markup the most?
Anyway, thanks for your help in advance.
Regards
Tim
-
This topic was modified 8 years, 1 month ago by
THP Studio.
Hey Dan,
1- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#top #header .av-main-nav > li#menu-item-search > a {
font-size: 30px;
}
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
2- You have some other modifications on header. It would be easier for us to login and replace/remove some of your existing custom CSS code. If you do not mind, could you please create a temporary admin login and post it here privately so we can look into it?
Best regards,
Yigit
Hi Fine,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.av_header_transparency #header_main .social_bookmarks li a {
color: #666;
}
.header_color li, #top #menu-item-search,
#top .av_header_transparency .avia-menu.av_menu_icon_beside {
border-color: #38b5ad;
color: #38b5ad;
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi Basilis,
Also found in functions:
/* Append the burger menu */
if(!function_exists(‘avia_append_burger_menu’))
{
//first append search item to main menu
add_filter( ‘wp_nav_menu_items’, ‘avia_append_burger_menu’, 9998, 2 );
add_filter( ‘avf_fallback_menu_items’, ‘avia_append_burger_menu’, 9998, 2 );
function avia_append_burger_menu ( $items , $args )
{
global $avia_config;
$location = ( is_object( $args ) && isset( $args->theme_location ) ) ? $args->theme_location : ”;
$original_location = isset( $avia_config[‘current_menu_location_output’] ) ? $avia_config[‘current_menu_location_output’] : ”;
/**
* Allow compatibility with plugins that change menu or third party plugins to manpulate the location
*
* @used_by Enfold config-menu-exchange\config.php 10
* @since 4.1.3
*/
$location = apply_filters( ‘avf_append_burger_menu_location’, $location, $original_location, $items , $args );
if( ( is_object( $args ) && ( $location == ‘avia’ ) ) || ( is_string( $args ) && ( $args == “fallback_menu” ) ) )
{
$class = avia_get_option(‘burger_size’);
$items .= ‘<li class=”av-burger-menu-main menu-item-avia-special ‘.$class.'”>
<span class=”av-hamburger av-hamburger–spin av-js-hamburger”>
<span class=”av-hamburger-box”>
<span class=”av-hamburger-inner”></span>
‘.__(‘Menu’,’avia_framework’).’
</span>
</span>
‘;
}
return $items;
}
}
if(!function_exists(‘avia_is_burger_menu’))
{
function avia_is_burger_menu ()
{
$burger_menu = false;
if(avia_get_option(‘menu_display’) !== “burger_menu”) return $burger_menu;
if(avia_get_option(‘header_position’) !== “header_top”) return $burger_menu;
//if(avia_get_option(‘header_position’) !== “header_top”) return $burger_menu;
//if(strpos(avia_get_option(‘header_layout’), ‘main_nav_header’) === false) return $burger_menu;
return true;
}
}
Hi, I went in to do some maintenance on an client and saw his Enfold theme was out of date (v 4.0.2 I believe). After updating to the latest version I got the issue I have gotten with all of my clients after updating — mobile menu items appear above the site’s header container while on desktop. Using a bit of css I found awhile back on this forum:
#mobile-advanced, #menu-item-search, .av-burger-menu-main {display:none !important; }
@media only screen and (max-width: 767px) {
.av-burger-menu-main {display:block !important; }
}
This fixed the issue on my other websites and fixed the issue on this clients site Except…the mobile burger menu does not do anything when clicked. The menu never opens up.
Here is the website (this client has another site very similar to layout/design and needs the same Enfold update but I am waiting until I get this issue fixed): http://superiorfarms.com/
Thanks,
Slade
Hi,
I am afraid not a lot we can do further for it.
Most of the search is controlled from Enfold – or 3rd party plugins as Victoria said.
Best regards,
Basilis
Dear @Ismael,
as you told me in this thread https://kriesi.at/support/topic/adding-advanced-layout-builder-to-custom-taxonomy-under-new-toolset-types-plugin/ I now create this topic. … and I try to locate the potential search queries a little bit better for all comming users after me with the same issue.
The question is how to integrate the Avia Layout Builder from Enfold with the Toolset plugin.
In the private content you’ll find all needed data.
I’m so looking forward for your help.
PackmannGuest
We use the Enfold them in the website of kaaphorncharters.nl. We have activated the child, and regularly receive updates. Last week we tried to update the theme. Before the update It was no longer possible to make adjustments via the back-end or to open pages in the back-end, he keeps searching for content. After the update the look and feel is completely broken and there is a double menu.
We have tried to find out where it goes wrong but we can not find it. I hope you can help us to solve the problem.
Thank you Rikard!
That is what I have finally done.
Thing is: on the themes website you promote a post slider:
But there is no button to be found. So I was confused searching for a specific avia builder button “post slider”.
Everything is fine now. File can be closed.
best regards
Gerhard
Hi,
Aren’t both (different) results based on the theme Enfold?
Again, the main search result is base on the default WP search query while the search box is using the get_posts function (functions-enfold.php > avia_ajax_search). You can try the following filter but I’m not sure if it’s going to help.
add_filter('posts_search', 'avf_posts_search_mod', 9999, 2);
function avf_posts_search_mod($search, $query) {
global $wpdb;
$like_op = 'LIKE';
$andor_op = 'AND';
$search = $wpdb->prepare( "(({$wpdb->posts}.post_excerpt $like_op %s) $andor_op ({$wpdb->posts}.post_content $like_op %s))", $_GET["s"], $_GET["s"] );
$search = " AND ({$search}) ";
return $search;
}
Best regards,
Ismael
Choose to show breadcrumb on those pages you like to show!
you can try to change position of av_section_1 and the title container via functions.php of your child-theme:
function change_position(){
?>
<script>
(function($){
$('#av_section_1').each(function () {
$(this).insertBefore($(this).prev('#main .title_container'));
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'change_position');
if you have transparency option – in this case the breadcrumb can be displayed – but i have to look in code where the breadcrumb output is prevented in this case.
Edit: on functions-enfold.php on line 824ff (Enfold 4.2.2) ( if you got older Enfold Versions – search for that)
to comment it out:
//deactivate title bar if header is transparent
if(!empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';
so there is:
//deactivate title bar if header is transparent
//if(!empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';
has the solution – if we could do this via child-theme ? i don’t know (now) how-to
see here in action (with transparency option): https://webers-testseite.de/breadcrump-under-first-color-section/
-
This reply was modified 8 years, 1 month ago by
Guenni007.
Hi Ismael,
Many Thanks for your comprehensive answer. Aren’t both (different) results based on the theme Enfold?
Why isn’t it in sync?
And is there a way to improve search.php to make results equal to the ajax results?
Thanks again, Thorsten
Hello Basilis,
sometimes I’m wondering how good the support team knows their own documentation and the theme itself…
After some hours of research I found the right key words to find this:
And this:
https://kriesi.at/support/topic/display-only-excerpt-on-archive-page/
And this:
https://kriesi.at/support/topic/grid-read-more-button-in-archive/
And this:
https://kriesi.at/support/search/?bbp_search=tag.php
So the relevant file is tag.php
Regards, Enrico
Topic can be closed.
Almost a year later and I finally figured this one out, so wanted to post in case others search and run into the same problem. (Also good for the mods to know).
I did not realize I have to “attach” my media file uploads to specific pages and posts. My process is to upload a bunch of pictures to the media area, then add them to posts or pages with ALB. This results in the images being “unattached” to a post, and Yoast SEO does not then know to re-direct Google crawler inquiries to the master post.
(It would be GREAT if Enfold would automatically attach media files to posts / pages when they are imported to those pages,…)
If you want to read more about this issue, go to this link:
https://digwp.com/2012/05/attach-unattached-media-files/
and this link from Yoast:
https://kb.yoast.com/kb/redirect-image-attachment-urls/#not-working
Hope this helps someone else!
Best,
Rob
Hey Julie,
Thank you for using Enfold.
Do you want to decrease the space around the search text? Please use the following css code.
.av_minimal_header .main_menu ul:first-child > #menu-item-search .avia-search-tooltip a {
height: 20px;
line-height: 20px;
}
Best regards,
Ismael
What plugin you are taking about?
Isn’t it Enfold which shows different results between Search Box (auto load) and Search Results Page?
Cheers
Hey Julie,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
.search-no-results #search-fail p.entry-content {
font-size: 18px;
}
Hope this helps :)
Best regards,
Nikko
Why any Facebook Widget is working?
I was tried the original enfold Facebook Widget and nothing shows.
Tryied Tird Party PLugins and still nothing shows.
The Theme is uptadet to 4.2.2 version, the latest one.
Thi is my site: http://beesbrasil.com.br/
Ps.: Yes i already searched for similar problem on the forum, but any solutions solved my problem.
Ps2.: The Facebook link is a page, not a profile.
Hello,
I’m wondering if I can customize the result page which comes up after selecting a tag (from the build in enfold tag widget).
Right now I’m getting whole blog articles on an endless page. I’d prefer to get the results the same as on the search result page. This means a headline, a short text and a “read more” link.
Thanks, Enrico
Hello, I am using enfold 4.0.7.
I have set up directory password protection for the wp_admin folder in my wordpress installation.
If I enter something in the search field (wordpress frotend), there is a pop up box asking for authorization.
Any idea how to fix this?
Thanks in advance!
There have been reports in the past about a problem with WooCommerce Measurement Price Calculator in combination with Enfold. With WMPC enabled you will receive the error message “Please match the requested format” if you try to put a product to the cart.
The current solution was to dequeue woocommerce-mod.js from Enfold and to replace it with a custom one. I just ran into this issue on a customer project. The solution provided was not satisfying because it will remove the nice quantity selector. Therefore I did some research to why this happens with only a couple of themes like Enfold and to find a better solution.
Finally I found the core reason to the problem and provided a solution to Skyverge (developers of WooCommerce Measurement Price Calculator) for review. Skyverge has approved my fix for Enfold and officially posted a GIST.
Hi. I am using enfold to create a directory listing. I want to hide dates throughout the site. This means from latest page, categories, tags, search results, comments and all other places.
I want to hide date only – not all post-meta-infos. I want comments, categories and tags to remain visible. Only hide date.
I searched the forums but didnt get help. Please suggest the css code.
Hi,
Try to modify the following files:
enfold > includes > loop-author.php (line 127)
enfold > includes > loop-index.php (line 228)
enfold > includes > loop-search.php (line 50)
and find this code in each file:
comments_popup_link( "0 ".__('Comments','avia_framework'),
"1 ".__('Comment' ,'avia_framework'),
"% ".__('Comments','avia_framework'),'comments-link',
"".__('Comments Disabled','avia_framework'));
and replace it with
comments_popup_link( __('Comments','avia_framework'),
__('Comment' ,'avia_framework'),
__('Comments','avia_framework'),'comments-link',
"".__('Comments Disabled','avia_framework'));
Hope this helps :)
Best regards,
Nikko