Radek
Hi Rikard,
Thanks your for a reply, I clicked the support forum link you provided but it’s asking me to enter Purchase code, so obviously support forum is only for those who have already purchased your theme.
The cart table behavior I mentioned can be seen here https://kriesi.at/themes/enfold-shop/ – just add product to cart and view the page on mobile or resize your desktop browser. In mobile portrait I can see just Delete, Product and Price columns, in landscape there’s Total column added but Quantity is missing.
I searched your forum and the issue is mentioned here https://kriesi.at/support/topic/woo-commerce-chart-width-cut-off-on-cart-page/ and apparently was caused by user’s custom css. However, the first link I’ve given is your own demo, no custom css added, so it seems like a default Enfold theme setting.
Question is: can it be changed to have all cart columns visible on mobile?
Appreciate your help.
Hi,
I’ve installed Enfold 4.5 and the demo content.
However there is no visible slider. I’ve searched the documentation and can’t find information on where and how to configure the homepage slider. Can you please let me know where I find it?
Normally themes I buy have a slider plugin, however there is nothing with this one.
Any help is greatly appreciated.
Thanks
Ali
Hi guys,
I don’t want to come of strong and please don’t get me wrong, I love Enfold, but is it that hard to add some more variants to the stuff we already have within Enfold?
– Some different layouts for navigations ( logo in the middle, some neat hover effects, … )
– More (hover)styles for masonry and blogitems
– More effects/animations in sliders
– More variants for widgets
– Options to remove certain stuff for blogitems like: comment-indicator, category, tags, date, … just let me check it on or off… Seems like such a basic feature…
– A differently styled searchbar
– Squared ( or differently styled ) social media icons as a widget in the footer
– The option to center text in the socket
– Some cool preloaders
– A little more fonts
– Testimonial variants
– …
The possibilties are endless.
Honestly… it seems, for me, so obvious to do more stuff like this… After making 30 sites with Enfold, it’s starting to look all the same to me :D.
Just my 2 cents at midnight.
Kind regards :)
PS: Yes, I know about the documentation that shows some additional stuff. ^^
Hey lbccomm,
Please try the following in Quick CSS under Enfold->General Styling:
#top #searchsubmit {
width: 120px !important;
}
Best regards,
Rikard
@Vinay. Can you guys accept this is a bug and will be fixed in a new release?
This is not about hiding a page from Google.
ENFOLD knows the page ID. It is clearly defined in the Enfold theme settings.
A user should not have to start hacking code when the expected functionality of a feature is NOT to appear in search results. It is common sense surely.
Thanks @cg I will give this a go.
Hello!
After a few attempts I managed …. I had to copy the loop-search file that had been changed by enfold and paste it into enfold-child creating the “include” subfolder and editing the loop file again as per instructions (https: // kriesi.at/support/topic/add-featured-image-to-search-results/)
so the previews have reappeared!
I’m not sure it’s the process, if there’s a better way, please tell me.
Best regards
Sacha
-
This reply was modified 7 years, 4 months ago by
Marco.
Hi, i’ve found this procedure in another thred posted by a moderator:
###################################################################
Updating from 4.4.1 to 4.5 via (S)FTP manually works like a charm
However, the steps to get there are quite a lot. Let me describe it step-by-step here:
1) Make a full backup of your website using a backup plugin.
2) Safe the backup somewhere outside from the webserver of your website (e.g. on your local computer or in any cloud storage you trust).
3) Sign out from your WordPress website.
4) Go to your themeforest account, sign in and download the updated Enfold v4.5 to your computer. Extract it and search for the file enfold.zip. Extract this file as well to already have your folder ready to be uploaded.
5) Sign in to FTP or SFTP using FileZilla or any other tool which is able to do that.
6) Go to the folder ./wp-content/themes and search for “enfold”. If you want, you can download the enfold folder to your computer as well (just in case you want to restore if afterwards which is easier like that than using the whole backup).
7) Delete the folder enfold via FTP. This may take 5-10min, depending on the server speed obviously.
8) Wait until it is finished and the enfold folder is gone. If that is the case, upload the “new” enfold folder including v4.5 to your website in the same directory.
9) Sign in to your WordPress website again and go to the Enfold tab (or the one from your child theme). Scroll down to the tab called Theme Update.
10) Your current API token will not work anymore as Envato changed some stuff on their API. Therefore you need to remove your current key and generate a new private key as visible in your themeforest account under “Settings” -> “API keys”. Go to https://build.envato.com and follow the steps there. To me, https://kriesi.at/documentation/enfold/(Purchase code hidden if logged out) /#toggle-id-5 was also very helpful (scroll down a bit there to find out about the permissions your private API key needs in order to check for future Enfold updates). Without these permissions it will not work.
11) After revalidating your new private key within the Enfold update tab, you should see a blue rectangle saying when it could be checked for the last time.
12) Done!
I hope this helps anybody who has/had issues with updating Enfold to version 4.5.
Feel free to ask me in case you need any assistance.
#######################################################################
My question is:
considering that i’m using an Enfold child theme, is this procedure still right?
If yes, I have to apply this procedure only to the “Enfold” folder and not to the “Enfold child”, right?
Thanks
Prfect, that’s what I needed, but now everything has changed ….
please help me understand …
from now I can work daily on the child theme and all the changes will be automatically assimilated even in the parent theme? .. but in live there is the son theme?
and if something goes wrong how can I not make the changes effective?
and what about updates and important changes, such as the update of enfold 4.5.1 where do I install it? on the child theme, on the parent theme or both?
I have updated from the subject Child and I see that even the parent seems updated, however I have disappeared the previews in the research ajax that I had put through css recommended by you, how can I make them reappear?
.
I do not know how to proceed with the daily work .. Thanks
-
This reply was modified 7 years, 4 months ago by
Marco.
Hi
Nope – I didn’t – I did add some code I found on Relevansi’s site
/**
* Making Search work better with RELEVANSSI
*/
add_filter('avf_ajax_search_function', 'avia_init_relevanssi', 10, 4);
function avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)
{
$function_name = 'avia_relevanssi_search';
return $function_name;
}
function avia_relevanssi_search($search_query, $search_parameters, $defaults)
{
global $query;
$tempquery = $query;
if(empty($tempquery)) $tempquery = new WP_Query();
$tempquery->query_vars = $search_parameters;
relevanssi_do_query($tempquery);
$posts = $tempquery->posts;
return $posts;
}
add_filter( 'relevanssi_modify_wp_query', 'rlv_meta_fix', 99 );
function rlv_meta_fix( $q ) {
$q->set( 'meta_query', array() );
return $q;
}
But no diff…
I activated relevansi plugin again and tried your code for Enfold – Now search is BROKEN again (With or without the Relevansi code above?? :-(
Now we are back to the beginning of the error – The Ajax Dropdown works again on https://BizDoktor.dk but the search page shows NADA :-(((
I have set the “6” into line 1328 and removed all the relevansi scripts/code (yours and the above) in functions.php and disabled relevansi so we have a clean Enfold site (relative clean…)
No search page result is working (perhaps the update(s) to day did something?
(I dont plan to update to WP5.0 or Enfold 4.5.1 yet)
NOW: (Update)
SEARCH PAGE WORKS!!! Ajax dropdown works? ??? !!! ??? :-)))
Am I dreaming?
It must be your magic – only diff is the “6” in line 1328
No relevanssi – no code in functions.php ?? Pure Kebab ??
-
This reply was modified 7 years, 4 months ago by
Netzie.
Hi,
Thanks for the update. The ajax search is still not working on my end. Did you add this snippet after installing relevanssi?
// https://kriesi.at/documentation/enfold/search/#use-relevanssi-in-search-instead-of-the-default-search
Please disable it temporarily.
Best regards,
Ismael
The extra options are from the Remove HTTP plugin – but I have deactivate all plugins and redirect persists ( that was first thing I tried – I removed the entire plugin folder).
As per my original post – if I try to change the WordPress Address URL or the Site Address from https://ausmotorsearch.com.au to https://www.ausmotorsearch.com.au the theme refuses to save the changes. If I change themes I can change these settings and then www works.( both www and non work) ..as soon as I return to Enfold theme the URL return to https://ausmotorsearch.com.au and the redirect is enforced.
The www. http status code response is below .. I am wondering about the location of that set-cookie request
HTTP/1.1 301 Moved Permanently
Date: Thu, 06 Dec 2018 06:13:36 GMT
Server: Apache
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Set-Cookie: PHPSESSID=9738f7be35e396c0642aadb3de7c01f0; path=/
Location: https://ausmotorsearch.com.au/
Vary: User-Agent
Content-Length: 0
Content-Type: text/html; charset=UTF-8
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
@media only screen and (max-width: 767px) {
.html_elegant-blog #top.search.search-results .post-entry .post-title {
font-size: 14px;
}}
Best regards,
Yigit
Hello
i see that the Enfold Ajax Search don’t find Woocommerce products after installing Polylang Basic
do you know why ?
i asked Polylang but no answer
thxs for your help
Hi
I have Enfold installed on site ausmotorsearch.com.au – I have been trying to find an annoying 301 redirect that forces the site to non www.
After many many hours of searching .htaccess http.conf – etc I discovered that Enfold does allow me to change site URL in Settings.- but it refuses to save the change. If I activate another theme I can make the change to Site URL and the 301 redirect is removed. But I then activate Enfold the site URL reverts to the non www URL and the redirect is back in. Can you point me to the file/code that would be triggering this.
Thanks
Andrew
Hi Sachasilvestri,
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
.ajax_search_excerpt {
display: none;
}
If you need further assistance please let us know.
Best regards,
Victoria
I search for the location in Google Maps and then get the latitude and longitude from Google Maps
When I enter these values in Enfold in the Map it shows approx 30 meters away!
Dear Kriesi Team
In the data loop-search.php (\wp-content\themes\enfold\includes\loop-search.php) is one function not correct and we have to change it every time, when we make an update of the theme Enfold.
Maybe you can change it in a next version?
Use <?php the_time( get_option( ‘date_format’ ) ); ?> to add the date set in the admin interface.
Thank you and kind regards,
Barbara Aeschlimann
Hi team,
Once again, absolutely love the theme! It’s always been our go to option for most clients on WP unless they have something to do with custom WooCommerce layouts.
One of our recent clients wanted to showcase their products WITHOUT actually selling them online and in a wink, we decided to go the Enfold route and have built the dev site using the Portfolio Items to create the product category / subcategory and the products. While the site turned out the client’s satisfaction, we’ve come to a dead end with one of the requests – to bring the portfolio sub-category filters to the sidebar and not on the top.
I’ve been searching through the forums but
1. Don’t see a recent post – at least nothing on the current build version
2. Have tried some recommendations and the one that has come closest to a functioning solution is http://docs.designsandcode.com/search-filter/ but it fails to work in hierarchy.
Please can you suggest if there’s something I’m missing out on? Or what could I try to bring in the sub-category for each of the sub-category pages to the sidebar.
/Users/jackiemeudt/Desktop/CurrentlyLooksLike.png
/Users/jackiemeudt/Desktop/mathc this.png
Hi Victoria,
I just dragged and dropped the screenshots, so hope you can see what I’m trying to match?
I just reposted another request for help, as I haven’t been able to get what I want at the top of the page effect with the photo going on both sides of the color bar. I hope you or someone can help me with the Enfold Child Theme. I’ve been struggling for days on searching and trying to figure this out.
Any suggestions greatly appreciated!! Thank you,
Jackie
Google seems to be a lot tougher on the mobile score than the desktop. Looks to me like a lot of websites rank lower on the new mobile scoring system.
On my personal enfold site tho with just WP- rocket installed I’m getting 90 mobile and 100 desktop. I was getting much lower prior to optimizing images, minifying and deferring css and java, etc.
Try some more of the suggestions it gives you to increase score.
Even testing google.com they rate themselves 100 desktop and 91 mobile, and there’s nothing even on their search page… take it with a grain of salt.
-
This reply was modified 7 years, 4 months ago by
Brutalben.
Hi Sachasilvestri,
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
.search.search-results .search-result-counter {
width: 180px;
height: 180px;
}
.html_elegant-blog #top.search.search-results .post-entry .post-title,
.html_elegant-blog #top.search.search-results .post-entry .post-meta-infos {
margin-left: 160px;
}
.search.search-results .template-search .entry-content-wrapper .entry-content {
padding-left: 160px;
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi there,
Please find attached the error messages I keep getting when trying to update Enfold theme form 4.2 to 4.5.
Any advice would be greatly appreciated.
Warning: preg_match() expects parameter 2 to be string, array given in /home/searchd9/public_html/wp-admin/includes/class-wp-upgrader.php on line 258
Warning: file_exists() expects parameter 1 to be a valid path, array given in /home/searchd9/public_html/wp-admin/includes/class-wp-upgrader.php on line 258
Warning: strip_tags() expects parameter 1 to be string, array given in /home/searchd9/public_html/wp-admin/includes/class-bulk-upgrader-skin.php on line 61
Downloading update from …
Warning: parse_url() expects parameter 1 to be string, array given in /home/searchd9/public_html/wp-admin/includes/file.php on line 970
Warning: preg_split() expects parameter 2 to be string, array given in /home/searchd9/public_html/wp-includes/kses.php on line 1325
Warning: strtolower() expects parameter 1 to be string, array given in /home/searchd9/public_html/wp-includes/http.php on line 517
Warning: strtolower() expects parameter 1 to be string, array given in /home/searchd9/public_html/wp-includes/http.php on line 517
Hi Nikko,
I don’t own the LayerSlider plugin and got it through Enfold, so I can’t update it myself.
I think it’s weird that you’re bundling a plugin, but not maintaining it (or do I not get you right?).
What if a real vulnerability is found in the plugin?
According to wpvulndb.com LayerSlider had some vulnerabilities in the past, although it’s only sporadically.
Hey,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
#top .av_mobile_menu_tablet .av-main-nav .menu-item.menu-item-search-dropdown {
display: block!important;
}
It is currently hidden because you have following custom CSS code
@media only screen and (max-width: 1300px) {
#top .av_mobile_menu_tablet .av-main-nav .menu-item {
display: none!important;
}}
Best regards,
Yigit
Dear guys,
after changing our website to https there is a lot of mixed content alert, especially fonts are loaded over http
but for example also the facebook image ‘fake_facebook.jpg’ from Enfold images is loaded via http
After searching here, I installed Really simple SSL, but it didnt help.
If I open the site in firefox, fonts are not loaded at all.
Can you guys please help me??
I will add my credentials so you can look into it.
Thanks, TanSmi
GTMetrix is not down its your theme issue because its still showing error in GTMetrix as 404
Please check and resolve it for me
in Google Search Console unable to index site its showing errors as below
1. Error Text too small to read
2. Error Clickable elements too close together
3. Error Viewport not set
4. Error Content wider than screen
affected pages are
https://guesthousepk.com/wp-content/themes/enfold/framework/images/icons/
https://guesthousepk.com/wp-content/themes/enfold/framework/php/font-management/
Please check and fix the issue
Hi,
I used one of the demos for my Enfold site
when i run it through the google search console test to see if it is mobile friendly, it says it is not.
https://search.google.com/test/mobile-friendly?id=TsFQ28qkOp_e-DC_J-T32A
I haven’t messed around with it much, and it seems surprising that one of your theme demos isn’t.
Can you help?
I notice that when I look at my site on my samsung s8 phone, the sidebar doesn’t show at all, not even at the end of the content. So maybe that’s an issue?
Thank you!
Hello Enfold Team!
My site has a Header Meta bar at the top which displays some text on the left and the Secondary Menu on the right. The main menu is in the bar below that.
I am trying to append a Login/Logout link to the Main Menu, right before the Search icon. I have been able to do that with the code attached, but now the Secondary Menu is gone. Am I taking the right approach, and is there something wrong with the code or a conflict with the Priority 9996?
And where do we see a list of function Priorities?
Thanks for everything!
/* LOGIN MENU */
//first append search item to main menu
add_filter( 'wp_nav_menu_items', 'avia_append_login_menu', 9996, 2 );
add_filter( 'avf_fallback_menu_items', 'avia_append_login_menu', 9996, 2 );
function avia_append_login_menu ( $items, $args )
{
if(avia_get_option('header_position', 'header_top') != "header_top") return $items;
if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
{
global $avia_config;
ob_start();
if( is_user_logged_in() ) {
$user = wp_get_current_user();
$listclasses = "noMobile open-login menu-item menu-item-avia-special";
$greeting = "Hi, ".esc_html($user->user_firstname)."!";
$dashboardUrl = get_dashboard_url();
$logoutUrl = wp_logout_url( home_url() );
if( !current_user_can( 'administrator' ) && !is_admin() ) {
$submenu = '<a>My Profile</a>';
} else {
$submenu = '<a href="'.$dashboardUrl.'">Dashboard</a>';
}
$logout = '<a href="'.$logoutUrl.'">Logout</a>';
$loggedIn = <<<LOGGEDIN
<li class="$listclasses $class">
<a href="#">
<span class="btn-text">
$greeting
</span>
<span class="btn-icon">
<span class="dashicons dashicons-admin-users"></span>
</span>
</a>
<ul class="sub-menu">
<li>
$submenu
</li>
<li>
$logout
</li>
</ul>
</li>
LOGGEDIN;
} else {
$listclasses = "noMobile open-login lrm-login menu-item menu-item-avia-special";
$loggedOut = <<<LOGGEDOUT
<li class="$listclasses $class">
<a href="#">
<span class="btn-text">
Log In
</span>
<span class="btn-icon">
<span class="dashicons dashicons-admin-users"></span>
</span>
</a>
</li>
LOGGEDOUT;
}
if( is_user_logged_in() ) {
$items .= $loggedIn;
} else {
$items .= $loggedOut;
}
return $items;
}
}
Hey medienvirus,
Thank you for using Enfold.
It looks like a query for item filter. Did you install any plugins or add any scripts for that? What happens when you mark that url as solved in your google search console?
Best regards,
Ismael
Hey RonicsFotografie,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#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 {
background-color: white;
color: black !important;
}
Hope it helps.
Best regards,
Nikko