I need your prompt respond! the posts in my blog does not appear, and all I get is the following error:
Fatal error: Call to undefined function mb_strimwidth() in /home/wiseil/public_html/wp-content/themes/enfold/framework/php/function-set-avia-backend.php on line 515
and in the past 30 minuts i see that the layer slider does not work as well
WHAT IS GOING ON???????
Hi!
@device Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 480px) {
.avia-caption .avia-caption-title { padding: 10px;
font-size: 18px;
}}
Best regards,
Yigit
Hi djsmbd!
You can try creating a child theme and copying the modified file to your child theme ( http://kriesi.at/documentation/enfold/using-a-child-theme/ ). You can also request such feature here https://kriesi.at/support/enfold-feature-requests/
Cheers!
Yigit
Hello,
How could i solve sub categories in Enfold theme?
I have portfolios in this order:
categories–>sub categories—> Portfolio products
-
This topic was modified 11 years, 4 months ago by
spavli2.
Hi Andrew!
It seems like you are having caching issues it does work fine on my end http://i.imgur.com/ebhaXL5.jpg
Please flush browser cache and settings of caching plugin if you are using any after making styling changes and refresh your page a few times
Cheers!
Yigit
Hi bert787!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
#js_sort_items { font-size: 16px; font-family: "Times New Roman",Georgia,Serif; }
Regards,
Yigit
Hi yoginthusiast!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
.html_mobile_menu_tablet #mobile-advanced { background-color: red; }
Regards,
Yigit
Hi Labhanshi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.header_color .avia-menu-fx { background-color: #fe05d0!important; }
#top .av_header_transparency .avia-menu-fx { opacity: 1; filter: alpha(opacity=1); }
Cheers!
Yigit
Thank you very much Ismael! Enfold theme and support is the best I have come across since I’ve been working with wordpress. You guys do excellent work :)
as per above..
Enfold and über menu = NO sub menus on iPhone or on responsive menu
When über menu is activated there is no sub menus showing- i have posted this here as it worked fine before the last enfold update.
I have also posted it on the uber menu support site
Thanks!
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.html_main_nav_header #top .main_menu .menu>li:last-child>a, .html_bottom_nav_header #top #menu-item-search>a {
padding-right: 13px;
}
Best regards,
Yigit
Hi Sebastian!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.header-scrolled .logo a > img {
opacity: 0;
}
Cheers!
Yigit
Hi, the posts in my blog does not appear in my site,
I get the following error message:
Fatal error: Call to undefined function mb_strimwidth() in /home/XXX/public_html/wp-content/themes/enfold/framework/php/function-set-avia-backend.php on line 515
need your immediate help!
Thanks
Tal
Hey Peter, I wasn’t necessarily referring directly to this thread, I just happened to be in this one when I decided to comment as it seems that in many cases people post private replies unnecessarily and it does grate sometimes when browsing the forums :-)
Hey!
Actually there’s nothing relevant in the private posts. Just the log in info and the website url. The essential information is that google generates the preview content based on the search term of the user and the relevance of your website content. It does not (only) rely on the meta description text. Otherwise everyone could use this meta tag as “backdoor” for better rankings even for search terms which have nothing to do with your website content.
Best regards,
Peter
Boy it gets really frustrating when some users mark every reply as private. There are many cases when other users might be interested in the topic too!
Hello,
i’m using WPML and update Enfold theme
and now in the admin widget page when i change the language in EN, the widgets stay in FR.
I had to translate using WPML String translation…
Know why ?
Hi,
ich würde gerne meine Enfold-Webseite während ich sie noch fertig erstelle und anpasse in einen für außen sichtbaren Wartungsmodus setzen.
Dazu habe ich folgenden Code gefunden
<?php
/**
* Plugin Name: Wartungsmodus
*/
add_action("get_header", "schalte_Website_in_Wartungsmodus");
function schalte_Website_in_Wartungsmodus() {
if (!current_user_can("edit_themes") or !is_user_logged_in()) {
wp_die("Wartungsmodus! <br />\n".
"Der Blog ist in Kürze wieder erreichbar.\n");
}
}
?>
Kann ich diesen einfach in die functions.php integrieren oder bietet Kriesi diese Möglichkeit vielleicht bereits im Theme an?
Hi,
I am using the Header with social icons and bottom navigation but would like to replace the social icons (the space to the right side of logo on the header) with my own header, to include text and images especially the phone number and emall address.
I assume I will have to customized the code somewhere, can you tell me what file to update and how I can do this?
I am a bit of a novice, so any steps you can give me would be useful.
Thanks
-
This topic was modified 11 years, 4 months ago by
teddybaker.
Hi!
There’s nothing we can change or “fix” on the admin page. As I said in my last post all pages already have a meta description (you can check this by viewing the source code in your browser or by using a tool like: http://www.seocentro.com/tools/search-engines/metatag-analyzer.html ) and everything works as intended.
Best regards,
Peter
I am doing a test here:
http://wordpress.nancymunford.com/?page_id=1097
but still have problem with my header on mobile, and the css changes I made to it messed up all my other css.
Can you take a look? Is my header the wrong size or are there other options for the mobile header that I am not seeing.
thanks
n
Hi, i dont know what happened but after the last Enfold update the wordpress-backend navigation (on Head) on preview site is transparent. How can i change it? Thanks for any help!
-
This topic was modified 11 years, 4 months ago by
ConnyQ.
Hi Josue,
Ok I understand. But can you find why your theme is causing my problem? Because I’d rather not having this “patch solution” and having my wordpress to work as it was installed.
The javascript problem in my admin area in only on Enfold so I’d like a fix for that. I love that theme but I don’t like when a theme is causing some problems that are not resolved and affect my wordpress settings.
Thanks for your understanding.
Kind regards
Chrys
This reply has been marked as private.
Hey FotografieDuo!
You can define a new widget based on the existing newsbox widget. Insert this code:
add_action('after_setup_theme','avia_load_additional_widget');
function avia_load_additional_widget()
{
if (!class_exists('avia_customcptbox'))
{
class avia_customcptbox extends avia_newsbox
{
function avia_customcptbox()
{
$this->avia_term = 'portfolio_entries';
$this->avia_post_type = 'portfolio';
$this->avia_new_query = ''; //set a custom query here
$widget_ops = array('classname' => 'newsbox', 'description' => 'A Sidebar widget to display latest cpt entries in your sidebar' );
$this->WP_Widget( 'customcptbox', THEMENAME.' Latest CPT', $widget_ops );
}
}
register_widget( 'avia_customcptbox' );
}
}
into your child theme functions.php or into enfold/functions.php and replace “portfolio_entries” with your custom taxonomy, “portfolio” with your custom post type, “Latest CPT” with your widget title/name.
Best regards,
Peter
This reply has been marked as private.
Hey!
You can find them in the wp_options table – it’s a field called “avia_options_enfold”
Cheers!
Peter