Forum Replies Created
-
AuthorPosts
-
March 31, 2014 at 5:51 pm in reply to: How to prevent feature image from showing on top in an image post type #245563
Hi!
#top .single-format-image .big-preview.single-big{ display: none !important; }
Regards,
PeterMarch 31, 2014 at 5:49 pm in reply to: Plugin bbPress Support Topic:"[Support request]" showing three times in myheader #245561Hi!
The link http://besos.pw/forums/topic/materiale-laboratorio-21-marzo-2014/ just gives me a 404 error.
Cheers!
PeterHi!
Ok, I’ll close this thread for now. If you’ve a follow up question (or another unrelated question) please start a new thread.
Cheers!
PeterHi!
Actually the date & time output uses the same code & filter. The code I posted here: https://kriesi.at/support/topic/remove-dates-displayed-in-child-latest-news-widget/#post-241094 should remove the date & the time.
Cheers!
PeterHey AmbientInnovation!
Please try to insert this code into the functions.php file to fix the issue:
add_filter( 'avia_google_maps_widget_load_api', 'avia_remove_widget_script', 10, 2); function avia_remove_widget_script($load, $config) { $content = apply_filters('avia_builder_precompile', get_post_meta(get_the_ID(), '_aviaLayoutBuilderCleanData', true)); if(strpos($content, 'avia-google-maps')) return false; return true; }
Regards,
PeterHey!
Maybe try to rename the font family and use “fontello-custom” instead of “fontello”. I’ll mark the thread for Kriesi’s attention.
Cheers!
PeterHi doa!
Google does not allow you to change the styles with css. You can modify the enfold\config-templatebuilder\avia-shortcodes\google_maps.php if you want to add new options or use the avf_gmap_vars filter to add custom js code to the script output. The api ( https://developers.google.com/maps/documentation/javascript/ ) is quite complex and I suggest to hire a developer if you’re not an experienced php/js coder.
Cheers!
PeterHi JochenBake!
I suggest to compress the images. Many of your images have a size between 300-400kb and your website size is over 8,2mb. I suggest to decrease the image quality and to compress the images with a tool like: http://www.obviousidea.com/de/windows-software/light-image-resizer/
Cheers!
PeterHey!
1) Yes, it’s the default mobile menu styling. If you want to customize it I suggest to hire a freelancer who can change the styling of the “desktop” version of the menu based on you requirements.
2) You can apply a custom class to the section: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then use this class to add a pattern image as background. I.e. use the class “avia-custom-background” and into the quick css fields insert:
#top .avia-custom-background{ background-image: url(https://mywebsite.com/pattern.png); }
instead of http://mywebsite.com/pattern.png insert the url to the pattern/png image. You can also add multiple images http://www.css3.info/preview/multiple-backgrounds/ if necessary.
Best regards,
PeterHi Globema!
1) The font icons are loaded from a different domain ( http://cms.globema.pl/konferencja2014/ ). Make sure that all font files are loaded from the same domain or change the htaccess settings http://davidwalsh.name/cdn-fonts
2) Thanks, I reported it to Kriesi.
3) You can use the “Icon” shortcode (magic wand icon in the TinyMCE toolbar) to add icons to your menu titles/links.
Cheers!
PeterHey!
I can’t access your website (maintenance mode).
Best regards,
PeterHey!
You can try to apply a custom class to the color section (see: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and then use this class to apply a semi-transparent background image. With css3 you can even apply several background images to the same element – see: http://www.css3.info/preview/multiple-backgrounds/
Best regards,
PeterHey!
Afaik Enfold does not change the sort order for products but I’ll mark this thread for Kriesi.
Regards,
PeterHey Jyles!
Enfold shows a next/prev post navigation by default (on the left/right side of the screen) – i.e. like here: http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-gallery-3/
Regards,
PeterHi!
Please try to re-install the parent theme (enfold) with ftp: http://vimeo.com/channels/aviathemes/67209750 – and overwrite all theme files on your server with the updated files.
Best regards,
PeterMarch 30, 2014 at 11:55 am in reply to: how can I make the title for each portfolio entry 18 point? #245059Hey!
Open up enfold\single-portfolio.php and replace
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
with
$avia_config['size'] ='full';
Cheers!
PeterHi!
Yes – you can use the avf_title_args filter. An example code snippet can be found here: https://kriesi.at/support/topic/blog-header-goes-to-index-instead-of-blog/#post-238081
Cheers!
PeterHi!
The Post Types Order plugin should work just fine. I use the premium version with Enfold on my website too and I didn’t notice any issues. Make sure that the “Allow reorder” option includes the “Portfolio” post type and the “AutoSort” option is set to “On”. If it doesn’t work I suggest to contact the plugin author because it’s probably just a configuration issue.
Regards,
PeterMarch 30, 2014 at 11:19 am in reply to: Possible bug: blog posts grid 4 column IPad image scaling #245049Hi!
I’ll mark this post for Kriesi. Personally I couldn’t reproduce the issue with Chrome but I can’t test it with an ipad/iphone.
Regards,
PeterMarch 30, 2014 at 11:14 am in reply to: Bug: Umlaut in Team Member Job title breaks team member widget #245046Hey humanbrand!
I can’t reproduce this issue on my test server. Please create me an admin account and I’ll look into it.
Regards,
PeterHey adiuvoNL!
I’m not sure if “slider_blog” is a valid id. Did you try to use a numeric id instead?
http://www.clipular.com/c/5816379106131968.png?k=NqfyH6VsUGBnwQt3-Bvn44XE4zcCheers!
PeterHey!
Please use the code I posted here: https://kriesi.at/support/topic/wpml-language-switcher-flags/#post-241574 and place it at the very bottom of the enfold/funcions.php file or into your child theme functions.php file.
Regards,
PeterHey awilson3rd!
Try to add this code to the theme functions.php file:
function category_specific_post_nav($settings) { if($settings['taxonomy'] == 'portfolio_entries') $settings['same_category'] = true; return $settings; } add_filter('avia_post_nav_settings','category_specific_post_nav', 10);
Note that the code will only work with WP3.8+ and Enfold 2.6.+
Regards,
PeterHi Lissasan!
Please try to deactivate all third party plugins – maybe a plugin causes a conflict. If this doesn’t help try to re-install the theme with ftp: https://vimeo.com/channels/aviathemes/67209750
Regards,
PeterHi!
Ismaels code contains a syntax error. Please change it to:
.icon-gap { display: block; clear: both; height: 50px; }
Cheers!
PeterMarch 30, 2014 at 10:37 am in reply to: WPML language switcher disappeared from secondary menue #245035Hey!
Kein Problem ;)
Best regards,
PeterHi!
Try to insert this code into the quick css field:
.woocommerce-account .template-page .entry-content-wrapper h2 { clear: both; }
Best regards,
PeterHi Carolina!
I visited your website and I couldn’t find the flags on your French and English website. Did you solve the issue?
Cheers!
PeterMarch 30, 2014 at 10:27 am in reply to: Blog links sending people to wrong page – Avia glitch? #245032Hey!
Please insert this css code into the quick css field to fix the issue:
.avia-section .template-page .entry-content-wrapper { position: relative; z-index: 5; }
It seems like the “subscribe” link at the bottom overlaps the blog links somehow.
Regards,
Peter -
AuthorPosts