You can modify the post query but note that it will affect ALL portfolio grids. Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesportfolio.php and search for
$query = array( 'orderby' => 'post_date',
'order' => 'DESC',
'paged' => $page,
'posts_per_page' => $params['items'],
'post_type' => $params['post_type'],
'tax_query' => array( array( 'taxonomy' => $params['taxonomy'],
'field' => 'id',
'terms' => $terms,
'operator' => 'IN')));
Replace the operator value and use AND instead of IN
In this case I’d contact the hoster – ask them if any redirect rules are in place which can block or affect search queries. You can also try to switch to another theme (like TwentyTwelve). If this link: http://www.lighthousemktg.com.au/?s=test still redirects you to the front page it’s definitely a sever configuration issue.
Hi!
Sounds like a javascript issue/conflict. You can use the browser console to determine which script breaks the website.
Best regards,
Peter
I answered your single topic with the same question here: https://kriesi.at/support/topic/how-can-i-use-or-activate-woo-commerce-on-my-site#post-136152
Please try not to duplicate a question on multiple topics as it makes it harder for us to answer quickly and for others to search.
Regards,
Devin
Hi – I need to use the portfolio custom post type to create a searchable directory of attorneys. We have over 70 attorneys, so we’d need to be able to search for them by last name, title, expertise, etc.. We recognize that it may be possible to customize another plug-in to help accomplish this, but would appreciate some assistance working with the enfold theme and we just want to hire someone to do it.
If you can help, please email me at: (Email address hidden if logged out) and I can provide you more details. This is a very common function of larger attorney websites, so you could probably look at any law firm’s website that has more than 25 attorneys and see this kind of implementation.
Hi,
I am using Enfold on http://www.epicresearch.co/learningcentre
I need the theme to run properly with fallbacks on IE6 too. Please let me know how to achieve it.
Promptness will be appreciated.
Hi Ismael,
I am on version 2.0.1 and WordPress 3.6.
I have a couple of plugins like Akismet and WordPress SEO, but deactivating doesn’t fix the problem.
** Just realised it only happens when I am logged in to WordPress and that toolbar thing is at the top. Sorry!
Hey,
Please upgrade to Enfold 2.0.1. I think it will fix the issue. Upgrade WordPress to 3.6. Did you add plugins prior to this issue?
Regards,
Ismael
Actually we just use the standard search query and we have no influence on the search results. You can use this plugin to maximize the search power of your website: SearchWP
Refer to this link in order to integrate the plugin on ajax search: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/
It seems like the standard search query doesn’t work in your case. Eg
http://www.lighthousemktg.com.au/?s=test doesn’t work but the same search works on the demo page:
http://kriesi.at/themes/enfold/?s=test
Try following
1) Deactivate all plugins and check if the search works. If yes activate them one by one until the search doesn’t work again.
2) If 1) does not solve the problem upload all wordpress and theme files again. Use the latest versions (wp3.6 and Enfold 2.0.x).
3) If 2) doesn’t work go to Settings > Permalinks and hit the “save” button to flush the rewrite rules.
Open up wp-contentthemesenfoldincludeshelper-post-format.php and search for
$heading = is_singular() ? "h1" : "h2";
Replace h1 and h2 with any headline type of your choice. h1 is used on single post pages, h2 on the blog & archive page. If you’re using a child theme you can duplicate the avia_default_title_filter() function and overwrite the parent theme function if you like.
Hi
sorry for the late response, i wasn’t near a computer.
about the search issue, i paste the code in “enfoldcsscustom.css”
and no change…
inline style will always have priority over external css, no ?
thanks
I LOVE Enfold! Thank you for making me look so good to my boss.
On my site, when I search for a phrase and the home page is included in the search results, I get this sentence below the results heading for: Home:
“This is a Page excerpt. It will be displayed for search results”
Can you tell me where I can find this so I may remove it? (I am using a specific page named Home for my home page, not a posts page. I tried creating a posts page named Home and put in an excerpt that I wanted but it did not change the excerpt blurb on search results.)
Thank you!
Hi,
I have Enfold theme bought, and now I want to configure it with bbPress in the way I need.
1. Under topics list I have an “Add new topic” form. I would like to have a button instead and form to appear on separate page. Is it some Enfold specific thing to display the form? If yes how to fix it? If no do you know how to fix it or any tutorial maybe? I have searched through whole web and nothing
2. Is IP address under the avatar Enfold specific as well? How do I disable it. By hiding with css?
3. What is the field saying 0p under avatar for. What 0p means? Some points? How does it work. I assume again it is Enfold sepcific as I have not seen it in any other bbPress forum
Thanks in advance.
You can use Relevanssi for the ajax search query. Open up enfoldfunctions-enfold.php and replace
$defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
$_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
$query = array_merge($defaults, $_REQUEST);
$query = apply_filters('avf_ajax_search_query', http_build_query($query) );
$posts = get_posts( $query );
with
$defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
$_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
$searchquery = array_merge($defaults, $_REQUEST);
if(!function_exists('relevanssi_do_query'))
{
$searchquery = apply_filters('avf_ajax_search_query', http_build_query($searchquery));
$posts = get_posts($searchquery);
}
else
{
global $query;
$tempquery = $query;
$searchquery = apply_filters('avf_ajax_search_query', $searchquery);
$tempquery->query_vars = $searchquery;
relevanssi_do_query($tempquery);
$posts = $tempquery->posts;
}
Unfortunately this is not possible at the moment but you can hide certain menu items by inserting “noMobile” into the css class field of these items (if you can’t find this option field on the menu option page search for the “Screen Options” tab in the right top corner and click on it. Then tick the checkbox next to “CSS Classes” to activate this field).
If you really need to separate menus you can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests and we’ll look into it if more users request it.
Hi Guys
Since updating to latest theme files, the search button and also the “View All Results” buttons do not work. They both just refresh the home page. The dynamic list is working fine. It’s more if I hit View All Results or just type a word and hit enter.
Any suggestions?
Thanks in advance.
Cheers
Jase
Hello Dude,
Thanks for your response.
In this case, all these two ‘��’ should be removed. Therefore, the breadcrumb is created, the PHP code should cut off the string before these two invalid characters. Sometimes, you will see one of these as ‘�’. But this is just a representation of UTF-8 encodings in a browser, and using W3C HTML Validator reveals invalid character code is “xE3” in this case.
This can happen when you are trying to truncate a UTF-8 string at any character boundary. For example, if you have a string “あ”, which consists of 3 bytes “E3 81 82”. If you cut the string within these 3 characters, the original character “あ” will be corrupted, and it is represented like this ‘�’.
This issue is not limited to Japanese. In German, for example, a character ‘ä’ can be encoded as two bytes: “C3 A4”, and cutting these two bytes into half will make the ‘ä’ character invalid.
With a little search, I found a similar article:
http://stackoverflow.com/questions/8484162/how-to-truncate-an-utf8-string-in-php
I think using mb_strimwidth instead of substr will resolve this issue.
Thank you,
I absolutely love this theme, but this is the one problem I can’t seem to resolve. I have two websites using Enfold (drjenna.net and horsestreat.com). On the drjenna.net site I am having issues with the menu overlapping the logo as the window is made narrow and on iPad portrait. Horsestreat.com the menu completely disappears when viewing in iPad portrait mode. I’ve searched through this forum and tried some of the suggested CSS fixes as well as the modifying the .js file, and none have worked.
Please help!
Unfortunately we have no converting tool yet and the only solution is to modify the data directly in the database with tools like phpmyadmin. Access the wordpress database and click on the “wp_options” table. Then search for the data field with the “option_name” value “avia_options_enfold” and replace “enfold” with your child theme name. If the child theme name is “Enfold Child theme” the new “option_name” would be “avia_options_enfold_child_theme”.
As the title says, I’ve searched long and hard for a theme that suited my tastes, even paid someone alot of dough to try to create a site for me in WordPress but I just never liked it. Luckily last week I found ENFOLD and was sooo pleased that it offered the looks & functionality I’ve been looking for. Very luckily I figured out enough of it to get my new site up…..woot!
Anyhow, one prob I’m having is changing the favicon. I’ve searched this forum as well as many others, and have tried loading my favicon.ico file to my root directory where WP is located. I also followed WP instructions and put the file in the ENFOLD directory as well. I’ve cleared my cache, but still no new favicon.
Therefore, I saw one guy suggest adding some code on the header.php. When I opened the header.php I did find some mention of an Avia favicon but the code around it looked very different so I didn’t dare attempt to change anything.
So the million dollar question for me is how can I change the favicon?
Thanks for your help, and once again thanks for creating such a kickass looking theme!
Kind regards,
Chris
Hi,
my site link is http://career.guru99.com/
I am using your enfold theme.i want some customization in the theme.
1) Remove search button from header
2) apply different color to title and links to differentiate between them
3) enlarge font size to 14px
so how can i do this
4)how to include google search in header
see this image for what i am actually need
http://screencast.com/t/gTwaghZo
please help
Hi liondancetoronto,
Please do not make duplicate topics for your issues/questions. It makes it more difficult for others to search and for us to answer.
Regards,
Devin
Hi Devin and thanks for your reply,
as the plugin defined allmost every aspect of it’s design it is pretty isolated from the theme’s design. Of course it uses similar element (like a search-button), but they are all defined in it’s own styles. As I’m not a CSS-pro I’m happy that I at least found out how to manually define the design for the plugin but as most of the elements are already defined in enfold’s design I thought there might be a way to just reference the design and say “match plugin-button-design with enfold-button-design” like some kind of nesting.
If that’s not possible via CSS could you give me at least an idea on how to optimize my approach… for example there is an element called “sabai-btn” I know how to change the color with this:
.sabai-btn {
color:#000000
}
but how could I set the color dynamically that it’s always the color that comes from Enfold’s selected color-scheme?
Thanks again
quicky
Glad you found a quick fix :)
Let us know if you have any other questions or issues.
Regards,
Devin
Hello,
I’m currently using WordPress 3.6 and Enfold 2.0. While upgrading to Enfold 2.0 solved a lot of problems I was having with Post Sliders and Easy sliders (i.e. not displaying caption titles and title text, not rotating etc), a new one has been created. With the Post Slider, I am unable to choose what posts to display. The Which Entries? box is blank and if I click on the little arrows to bring up a drop box, all I get is ‘Display entries from:’ No other options are given. And when I click on it, nothing happens.
I am having similar problems with the Blog Posts Content element. The situation is a little better in that the ‘Do you want to display blog posts?’ drops down to give me a choice of ‘Display Blog Posts’ or ‘Display entries from a custom taxonomy.’ However, if I click on ‘Display entries from a custom taxonomy’ a ‘Which entries?’ box appears, but again, the only thing in the drop down menu is “Display entries from:’. And again, no choices are given and clicking on it does nothing.
Strangely, the post sliders I created prior to updating where I nominated a particular custom taxonomy are working fine (although if I try to change the custom taxonomy I have the same problems as above i.e. nothing to chose from.) The one on my home page was left to display the latest blog posts and is now blank although it was working fine before the latest update.
I am also having a problem with the blog post content element in that it won’t display at all if I choose Grid Style from the ‘Blog Style’ dropdown box. I have tried all the other options in that dropdown box and they display fine. Bizarrely, it is only the Grid Style that doesn’t work – basically it creates white space a couple of centimetres deep on the web page where it was meant to appear.
I have searched the Form and tried all the suggestions. I have re-installed Enfold at least three times using Filezilla without any error messages at any time. I deactivated all the plugins. The problems still persist.
Any ideas on how I can solve this frustrating problem?
My site is: http://www.petermoore.net
Thanks
Hi guys,
this time I do have a pretty generic question: I do have a plugin that has a pretty detailed custom css to define all aspects of the plugins design. As I would like the plugin to be aligned with Enfold’s design I would like to match different elements of the plugin that do have a defined style in the theme. E.g. if you go to http://www.dasjuengstegericht.org/verzeichnis/ you can see that there’s the default “search-button” from Enfold and the custom “search-button” from the plugin.
Taking this example: As I would like to be flexible (in case of updates), I would like to build some kind of reference that would match “if plugin-search-button-style, then use default-search-button-style”.
I know it will be a lot of work to manually match that but as I only want to do it for some items, my question is: Is that possible, and how can it be done?
Thanks in advance for any idea…
Cheers!
quicky