Forum Replies Created
-
AuthorPosts
-
Actually Kriesi uses several files for the blog post. The main file is wp-contentthemesenfoldsingle.php which then includes several other files – eg the wp-contentthemesenfoldincludesrelated-posts.php template for the related posts component. You can add your code to single.php or to one of the templates in the wp-contentthemesenfoldincludes folder.
Hi!
It seems like the height value does not support percentage values. I’d recommend to use a common value like 720px or 1080px.
Best regards,
Peter
I’d use a conditional: http://www.quirksmode.org/css/condcom.html instead – add following code to header.php (before the closing head tag):
<!--[if lt IE 9]>
#menu-item-search {
background: url(../images/layout/loading.gif) no-repeat center;
text-indent: -9999px;
}
<![endif]-->Replace the image url with an absolute url address which points to the icon on your server.
Hey!
You can use following css code – insert it into the quick css field:
#top .main_color .av_promobox{
background: #fcfcfc;
}Regards,
Peter
No, unfortunately this is not possible due to a bug (or tbh it’s more a limitation) of the get_next_post()/get_previous_post() function – see: https://kriesi.at/support/topic/is-it-possible-to-create-two-completely-seperate-portfolios
Probably the WP devs will fix this in WP3.6 or 3.7 and then you can also use these functions with custom post types and the portfolio.
Hey!
No, but you can deactivate the portfolio filter effect. Then the users can use the main menu and they are not irritated by the filter bar.
Best regards,
Peter
Open up and replace:
$constant_font = avia_backend_calc_preceived_brightness($primary, 230) ? '#ffffff' : $bg;
with
$constant_font = $primary;
and all occurrences of
$stripe = avia_backend_calculate_similar_color($primary, 'lighter', 2);
with
$stripe = $primary;
and
$constant_font = avia_backend_calc_preceived_brightness($primary, 230) ? '#ffffff' : $bg;
with
$constant_font = $primary;
Unfortunately it’s not possible to add a shadow to the box if you’re using a background image. The problem is the html structure which does not allow you to add the shadow to the box itself but you must apply it to the body element. If you can live without background image you can use following code:
.responsive .boxed#top{
-moz-box-shadow: 0 0 15px #111;
-webkit-box-shadow: 0 0 15px #111;
box-shadow: 0 0 15px #111;
}Otherwise you can’t add a shadow to the box at the moment – I’m sorry.
Please don’t use the same slug for your categories and page name. This can break the permalink rewrites and in the worst case you’ll get 404 errors. I’m not sure why WP displays sometimes the page & sometimes the archive – probably it depends on the id of the entry or which slug rewrite rule is processed first. A tool like: http://wordpress.org/plugins/rewrite-rules-inspector/ helps you to analyze it – however it’s probably a waste of time – just use another slug and you’re on the safe side.
Hey!
I’m sorry but custom post types are not supported by the slider. However you can select a custom taxonomy from the dropdown which will often give you similar results.
Best regards,
Peter
Hey!
It may take some time before you can tracking code works: http://wordpress.org/support/topic/google-analytics-ecommerce-tracking-on-working-with-woo-commerce
Also make sure that the “Integration” options are configured properly (WooCommerce > Settings > Integration).
Best regards,
Peter
Hey!
Or open up functions-enfold.php and delete
add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
Regards,
Peter
Hi!
No, just one skin (called “fullwidth”) is supported at the moment.
Best regards,
Peter
You can try to standard wordpress export tools (integrated in WP 3+ http://wordpress.org/plugins/advanced-export-for-wp-wpmu/ ) to export the page content. Then import it into the other blog/website. Maybe you can also use database export/import tools but I’m not sure. The advanced layouts shouldn’t conflict with the export tools because they’re just simple shortcodes.
Afaik there’s no (code) limitation but I’ll tag this thread for Kriesi. That said I can imagine it’s possible to hit some limits because of the server configuration. I’d try to increase the php execution time to 60 or 90 seconds and the php allocated memory to 128M ( http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP ).
May 23, 2013 at 11:55 am in reply to: Problem with logo in the mobile format with new mobile menu #120608Hi,
you can try to use a media query to resize the image on mobile devices – eg use:
@media only screen and (max-width: 768px) {
.responsive .logo img {
width: 50%;
}
}To reduce the image width to 50% of the original width on devices with a (maximum) screen resolution of 768px.
Hi!
I tagged this thread for Kriesi because I’m not sure. Probably he purchased it here: http://istockphoto.com/ or here http://photodune.net/
Best regards,
Peter
May 23, 2013 at 11:27 am in reply to: I have some issues with translation issues and with the contact form! #1203641) Personally I’d recommend to translate Enfold with Codestyling: http://wordpress.org/plugins/codestyling-localization/
a) Delete the file C:xampphtdocswp-contentthemesenfoldconfig-layersliderLayerSliderlanguagesLayerSlider-en_US.po because ii will break the codestyling plugin.
b) Install & activate the plugin and go to Tools > Loccalisation to translate all themes/plugins. Search for the Enfold theme in the list and use the the wp-contentthemesenfoldlang folder as base directory.
c) Click the button to generate the language files and then you can translate all text strings from the “avia_framework” textdomain (including the search results page).
2) I don’t understand the question – please rephrase it.
You can use following code – add it zo the bottom of functions.php:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['PT Sans'] = 'PT Sans:300,400,800';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['PT Sans'] = 'PT Sans:300,400,800';
return $fonts;
}Enfold will automatically load the right stylesheet for you. Replace PT Sans with your font family.
Hi!
Did you find the solution? I’m asking because the thread is marked as resolved :)
Best regards,
Peter
Yes, Enfold uses a special config file (located in wp-contentthemesenfoldconfig-wpml) which is required to use all theme features with WPML. Without the config.php file the portfolio custom post type won’t translate properly and you can’t set different theme options for different languages (which is necessary if you want to set a different logo, etc. for each language). The config file itself doesn’t “break” Polylang for sure but the main problem is that our theme isn’t “prepared” for Polylang. All translation plugins require hooks (actions or filters) and translation functions to manipulate the query or output based on the current selected language and imo Polylang won’t work without some theme code adjustments. There’s no need to turn existing code “off” because it won’t be executed anyway if WPML isn’t installed/activated but you’d need to “add” new code which integrates Polylang into Enfold. That said I’d stick with WPML because we can’t help you with polylang, qtranslate or other translation plugins out there.
May 21, 2013 at 10:46 am in reply to: Ability to filter Blog Post content element by Tag or Author? #120150You can display the posts which contain a tag. Select the “Display entries from a custom taxonomy” and select “Post Tag” in the second dropdown. Then select one or more tags
There’s no feature to display the posts from a certain author though. You can try a workaround and use tags or categories instead or link to an author archive page (looks like: http://kriesi.at/themes/enfold/author/kriesi/ )
Hey!
Please create a new thread and post a link to your website.
Best regards,
Peter
Tbh I’m not sure how Kriesi created the entypo-fontello-charmap.php. Maybe he used a script or he just looked up the unicodes here: http://www.entypo.com/characters/ – I’ll mark this thread for him.
Hi!
Can you give us more details please – I just tested it with IE and it seems to work fine for me: http://www.screenr.com/IwTH
Regards,
Peter
Hey!
Yes, it seems to work for me now.
Best regards,
Peter
Hey!
Maybe you need to (re)configure your spam filter? Personally I’d recommend to contact the hoster and to ask them how to change the spam filter rules (exclude emails from certain domains, etc.).
Best regards,
Peter
You can use following code to hide it:
@media only screen and (max-width: 959px){
.avia-layerslider.main_color.avia-shadow{
display: none !important;
}
}You can change the max-width value if you want to include/exclude different screen sizes.
Hi!
Great, glad you found a solution :)
Best regards,
Peter
-
AuthorPosts