Hi!
I edited your post, please do not share admin logins publically :)
Best regards,
Yigit
Hello Ygit
http://www.rmasa.com/cms
ID: admin
PASSWORD : ********
thank you
-
This reply was modified 12 years, 5 months ago by
Yigit.
Hi obthway192!
Can you post the link to your website?
Best regards,
Yigit
Hello adlinedesign!
I just checked your website on IE versions 10, 9 and 8 and compared the look with Chrome but there is no difference. Can you check once again that you are not displaying in compability mode?
Best regards,
Yigit
I am writing because when I downloaded the enfold theme, my checkout page worked flawlessly. Now, a week later, it is no longer working. I have made absolutely no changes to my site except for CSS styling provided to me by Kriesi support.
I am devastated and do not know how to go about bringing my checkout page back. I keep getting a 404 page not found error.
Any help would be greatly appreciated. Thank you!
Hey!
Kriesi added these two lines to avoid “content flashes” which can occur with older versions of Chrome – see: https://kriesi.at/support/topic/retina-images-and-fonts-in-portfolio-grid-theme-enfold/#post-164007
If you want to remove them open up /wp-content/themes/enfold/css/layout.css and search for
-webkit-perspective: 1000;
-webkit-backface-visibility: hidden;
– then delete both lines.
Best regards,
Peter
Hi Wizards of Enfold,
Not sure if this is a WordPress or Enfold question. I need to edit the navigation bar. Where do I find the top-level items, and where do I find the drop-down items? Thanks.
Hey!
I’m glad it works for you :)
Best regards,
Peter
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling
.avia_google_maps_container { height: 230px!important; }
Cheers!
Yigit
Hey gmmediadienste!
Ich habe dbzgl den Autor von wpseo schon vor einiger Zeit angeschrieben und Herrn Sergej gefragt, ob er Interesse hat mit uns zu kooperieren, sodass wir auch sein Plugin mit unseren Themes zum Laufen bringen und er hat es nicht einmal der Mühe wert gefunden auf diese Anfrage zu antworten. Von daher kann ich leider auch nicht helfen, da ich keine Lizenz für wpseo habe und mir auch keine zulegen möchte und ich mir denke, dass bei einem Theme/Plugin Konflikt beide Seiten an einer Lösung interessiert sein sollten…
Ich empfehle daher auf Yoast SEO umzusteigen: http://wordpress.org/plugins/wordpress-seo/ da Joost de Valk und sein Team mit uns zusammenarbeiten und wir Enfold auf WordPress SEO und Yoast’s Premium Plugins optimiert haben.
Cheers!
Peter
Thanks Devin, is the cropping Enfold-specific or WordPress itself?
I like the featured images in the Enfold theme, but I don’t want to be bothered finding a different image for each post. I have five categories on my blog, and would like to use featured images by category. Is there any way to set a featured image for each category, so I don’t have to add them manually?
The problem is I can’t follow your instructions as you suggested here (https://kriesi.at/support/topic/how-to-translate-enfold-site-with-wpml-correctly/#post-162796) cos when I try to rescan I got an Access Error message (nothing else).
I dont’ care about those errors, just mentioned them to resolve the main issue which is I cannot use the plugin.
hello,
I’m sure you’re response a million of time at this question.
How can I reduce the height of my header, in particular the space between my main menu and the layer slider
Thank you your incredible job.
Stéphane
-
This topic was modified 12 years, 5 months ago by
obthway192. Reason: a
Ok. now I try. Thanks a lot.
Request: replace the font icons with images
Hi,
i have been searching around quite a bit, but did not find an idea so far:
Is there any way to replace the font icons in three specific icon boxes with three individual images?
Thanks for your help!
Cheers, Sebastian.
Hey!
Yes, actually WP will overwrite the widget settings if you try to save different settings/categories for different languages. This is a wordpress limitation because every widget gets an unique id and WPML does not duplicate the widget when you switch the language but the widget will keep the same id – thus you can also overwrite the settings. The only workaround I’m aware of is to add two instances of the widgets to the sidebar. First select one language and add a portfolio widget to the sidebar. Add ICL_LANGUAGE_CODE == ‘XX’ into the widget logic field and replace XX with the right language shortcut of the current selected language. Then configure the widget for the current selected language and hit the save button. Then switch to the other language and configure the second widget/instance for the other language. Don’t click the “blue” save button of the first widget or you’ll overwrite the settings of the first language again. I made a short video to demonstrate the setup: http://www.screenr.com/CyZH
Best regards,
Peter
Perfekt…das hat mein erstes Problem mit den Überschriften gelöst :) . Vielen Dank schon mal!
Nun fehlt nur noch eine Lösung für das zweite Problem:
“2. Die H3 Schrift ist auf einmal ein ganz kleines bisschen größer und die Fett markierten Wörter sind zwar noch Fett geschrieben, aber nicht mehr in meiner “Primary color” (Enfold/Styling).”
Liebe Grüße,
Marco
Hey!
The text string you marked in the screenshot can be found in: /wp-content/themes/enfold/config-wpml/config.php – search for
$output .= "<li><span class='avia_cur_lang_edit'>Editing:</span><span class='avia_cur_lang'><img title='".$languages[ICL_LANGUAGE_CODE]['native_name']."' alt='".$languages[ICL_LANGUAGE_CODE]['native_name']."' src='".$languages[ICL_LANGUAGE_CODE]['country_flag_url']."' />";
$output .= ICL_LANGUAGE_NAME_EN." (Change)</span>";
Replace “Editing” and “Change” with your custom text. We’ll make it translatable in the next version.
Best regards,
Peter
Hi!
thanks for the reply. I don’t think is so complicated, only i don’t understand why i can’t override the opacity of the element with the one write in css inside my keyframes animation.
.image-overlay {
overflow: hidden;
}
.image-overlay .image-overlay-inside::before {
font-size: 30px;
}
@-webkit-keyframes avia_pop_small {
0% { -webkit-transform: scale(6); opacity:(0);}
100% { -webkit-transform: scale(1);opacity:(1); }
}
@-moz-keyframes avia_pop_small {
0% { -moz-transform: scale(6);opacity:(0);}
100% { -moz-transform: scale(1); opacity:(1);}
}
@-o-keyframes avia_pop_small {
0% { -o-transform: scale(6); opacity:(0);}
100% { -o-transform: scale(1); opacity:(1);}
}
@keyframes avia_pop_small {
0% { transform: scale(6); opacity:(0);}
100% { transform: scale(1); opacity:(1);}
}
a:hover .image-overlay .image-overlay-inside {
-webkit-animation: avia_pop_small 0.35s 1 cubic-bezier(0.000, 0.980, 0.440, 1.100)!important;
-moz-animation: avia_pop_small 0.35s 1 cubic-bezier(0.000, 0.980, 0.440, 1.100)!important;
-o-animation: avia_pop_small 0.35s 1 cubic-bezier(0.000, 0.980, 0.440, 1.100)!important;
animation: avia_pop_small 0.35s 1 cubic-bezier(0.000, 0.980, 0.440, 1.100)!important;
}
Hello!
Actually I used a similar solution to calculate the menu width and the logo width and to adjust the menu width dynamically based on the logo & menu container width. The difference though is that my function does not switch to the mobile menu but it tries to reduce the paddings and the logo image width based on the screen resolution. Tbh I think the mobile menu should only be displayed on very small screens.
The code was added with theme update 2.2 and I improved the code now ( see: https://kriesi.at/support/topic/enfold-2-2-breaks-site-logo-image/#post-165531 ) – the new code will be part of the 2.3 update. The updated version supports all types of logos (different aspect ratios, etc.) and it will calculate the padding for each menu item individually whereas my first version of the script just applied the paddings of the first item to all menu items.
Best regards,
Peter
Hey!
Please try following bug fix – open up /wp-content/themes/enfold/framework/php/class-form-generator.php and replace
$header = 'MIME-Version: 1.0' . "\r\n";
$header .= 'Content-type: text/html; charset=utf-8' . "\r\n";
with
//$header = 'MIME-Version: 1.0' . "\r\n";
$header = 'Content-type: text/html; charset=utf-8' . "\r\n";
and
$header = 'MIME-Version: 1.0' . "\r\n";
$header .= 'Content-type: text/html; charset=utf-8' . "\r\n";
with
//$header = 'MIME-Version: 1.0' . "\r\n";
$header = 'Content-type: text/html; charset=utf-8' . "\r\n";
Cheers!
Peter
That plugin works perfectly for widget such as Latest News.
But for Enfold Latest Portfolio its use is not so clear.
In my Portfolio Categories I have a number of items for every language. So, I suppose, I have to set a Portfolio Entry to its category in a specific language. For example, I have Category A and its translation which is Category B: my Portfolio Entry in language A will be set as Category A and my Portfolio Entry in language B will be set as Category B.
Plus, I created a sidebar menu with Enfold Latest Portfolio which lets me choose only Categories in Language A. To choose Categories in Language B I need to switch my admin language to Language B. But when I do this, sidebar with Portfolio Entries in Language A disappears.
Hope I explained it clear.
Have the same problem with (No data received Error)
I download Enfold 2.2 then update to WordPress 3.6., still did not fix the issue. Steps that causes this issue – Starting from the admin page, when you click the update button from “Home Page” the error will occur. Yes I am hosting with GoDaddy.
On you demo site the theme seems to work with IE9 & 10. Why doesn’t it work for me.
see http://www.adlinedesign.com.au/websites/yarrastore/
This is a basic install. WordPress version 3.6.1. latest version of enfold. Dummy data imported. No mods.
Works great on other browsers but completely stuffed on IE9.
I’ve tried all theme alternatives and predefined CSS settings but nothing works.
Like everyone else I wish explorer would die but for now we have to deal with it.
Hi!
I’m also not aware of a quick solution and it seems like you need to rewrite some parts of the menu script. Tbh I think this is beyond the scope of our support forum and I’d suggest to hire someone (i.e. a freelancer from http://www.microlancer.com/ ) who can help you with this customization.
Cheers!
Peter
Hi Yigit,
I can help you with the Italian translation, but I need time because I am quite busy and I want to do a good job!
In exchange what can you offer me? An internship at Kriesi? Ah ah ah ah! :)
Just joking, but will be nice to learn new things!!
I did what you suggested: deactivated all plugins but wpml and Codestyling, This is what I got:
Looks like there’s something wrong with the Theme itself.