Forum Replies Created
-
AuthorPosts
-
Hey!
No, unfortunately there’s no other way to change the position right now. You can try to use LayerSlider or a plugin like Master Slider if you want to change thwe position(s) of your text layers.
Best regards,
PeterHi!
Please use ftp to connect to your server, then download wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-builder.css and replace this code:
#_aviaLayoutBuilderCleanData{width:100%; height:300px; margin:20px 0; display:none;}
with
#_aviaLayoutBuilderCleanData{width:100%; height:300px; margin:20px 0; display:inline-block;}
Then save the file and upload it to your server (overwrite the existing file if necessary).
Regards,
PeterHi!
Glad you solved the issue ;)
Best regards,
PeterHi crschulz!
It depends on the cpts and taxonomies. If these post types use the same taxonomy you can query posts from multiple post types. If all (or some post types) use different taxonomies it’s not possible because our widget can just display the terms of one taxonomy.
Regards,
PeterHi!
Yes, you always need to select the right taxonomy. If you want to display portfolio entries please select the “portfolio entries” taxonomy. If you want to display standard blog posts please select “Categories”.
Regards,
PeterHi peterjaniga!
Yes please provide a link to your website. Use the ” Set as private reply (Only you and moderators will see the content of this post)” checkbox below the text editor to post the link as private message.
Cheers!
PeterHi SaraMichelle!
I recommend to use this plugin: Foobar. I used it for a project and it worked very well and stable. It uses a table layout for the notification bar and it’s responsive.
Regards,
PeterHey kevinjsutton!
Open up wp-content/themes/enfold/js/shortcodes.js and replace:
// public method: shows next image next : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'next' ); }, // public method: shows previous image previous : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'prev' ); },
with
// public method: shows next image next : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'next' ); this.options.autoplay = true; this._startSlideshow(); }, // public method: shows previous image previous : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'prev' ); this.options.autoplay = true; this._startSlideshow(); },
Regards,
PeterHey!
Unfortunately I can’t tell you how to fix the session error – this is definitely something which needs to be fixed by the server administrator/host. We just use the session_id() function: http://www.php.net/manual/en/function.session-id.php to check if a session exists and if not we call the session_start() function http://www.php.net/manual/en/function.session-start.php to create a new session. Everything else is handled by php on your server and our code can’t change/affect the session processing. The only “solution” would be to deactivate the theme session completely but this may break the breadcrumb. If you want to deactivate the session insert this code into your child theme functions.php file:
add_theme_support('avia_no_session_support');
Regards,
PeterHey lsrmedia!
We use the wp_get_shortlink() function ( http://codex.wordpress.org/Function_Reference/wp_get_shortlink ) to get the short url of the entry and you can’t change this url. Maybe WP still stores the old domain/url in the database and you need to replace it. I recommend to use WP MigrateDB or WP MigrateDB PRO to export the database. Use the “domain replacement” feature to replace all occurrences of your old domain with the new domain in your database and export the database. Then make a backup of your old database, delete the database data and import the database file you exported with the migrate plugin.
Cheers!
PeterHey!
In fact the vast majority of Enfold users rely on Yoast SEO or another popular seo plugin which takes care of the page title and our theme complete leaves it up to the seo plugin to generate the page title. Enfold does not generate meta descriptions, meta keywords, og meta data,, etc. and if you want to enjoy seo you must install a dedicated seo plugin anyway. Enfold does not replace a seo plugin.
I.e. Yoast supports the %%page%% shortcut to add the page number to the archive page title…
Best regards,
PeterHey msbllc!
Please try to clear the browser cache and cookies for your website. It seems like the session cookie contains some invalid data and this data triggers the warning.
Best regards,
PeterHi!
Our theme does not use the default WPML language switcher and thus it ignores the language switcher settings. If you want to show the language name just insert this code into the quick css field:
.avia_wpml_language_switch li span.language_native{ display: block; }
If you want to show the translated language name instead use this code:
.avia_wpml_language_switch li span.language_translated{ display: block; }
Regards,
PeterMay 28, 2014 at 7:04 pm in reply to: AJAX-Suche – Workaround funktioniert nicht bei allen Texten #271353Hi!
Warum diese Fehlermeldung kommt weiß ich leider auch nicht. Ihr könnt aber versuchen die Zeile mit dem Funktionsaufruf zu löschen:
$iconfont = $image ? "" : av_icon_string($post_type);
Regards,
PeterHey Lido!
Please try to increase the allocated memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Cheers!
PeterHey!
Ok, try to insert this code into your child theme functions.php file or enfold/functions.php:
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); add_action('ava_after_main_menu', 'avia_wpml_language_switch', 10); }
Then insert this code into the quick css field:
.avia_wpml_language_switch{ margin-top: -30px; }
and change the margin-top value if necessary.
Best regards,
PeterHi!
I recommend to add a margin-top to the icons to fix the alignment issue – insert this css code into the quick css field
.postid-237 .avia-icon-list .iconlist_icon { margin-top: 10px; }
Regards,
PeterHi Rolf!
Maybe a plugin which is activated for the entire network breaks the magic wand button?
Cheers!
PeterHi!
Try to insert this code into the child theme functionsphp file or into enfold/functions.php
add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 5, 1); function avia_change_breadcrumb($trail) { if(is_page()) { global $post; $front = avia_get_option('frontpage'); $blog = avia_get_option('blogpage'); if($post->ID == $blog || $post->ID == $front) return $trail; $parents = get_post_ancestors($post->ID); if(!empty($parents)) { $home = $trail[0]; $last = array_pop($trail); $trail = array(0 => $home); foreach($parents as $key => $data) { $link = '<a href="'.get_permalink($data).'">'.get_the_title($data).'</a>'; $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link); $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link); $link = '<span typeof="v:Breadcrumb">'.$link.'</span>'; $trail[] = $link; } $trail[] = $last; } } return $trail; }
Cheers!
PeterHi Michael!
Tbh I’m not sure if we want to add this to the core files. We’ll discuss this with Kriesi. I recommend to use a filter and your child theme functions.php to modify the output – then you don’t need to customize the header.php file. Use the filter like:
add_filter('avf_title_tag', 'avia_change_title_tag', 10, 2); function avia_change_title_tag($title, $wptitle) { $page = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : get_query_var( 'page' ); if(!empty($page) && $page > 1) $title .= ' - ' . $page; return $title; }
Best regards,
PeterHi!
I noticed that the Post Types Order plugin breaks the next/prev navigation buttons. Unfortunately I don’t know how to fix this because we use standard wordpress functions ( http://codex.wordpress.org/Function_Reference/get_next_post and http://codex.wordpress.org/Function_Reference/get_previous_post ) and it seems to be a plugin/wordpress conflict which has nothing to do with our theme code. I suggest to contact the plugin author and to submit a bug report.
Regards,
PeterHey!
You just need to add this code to your child theme functions.php file. Then you can select the Rum Raisin font from the “font” dropdown on the theme options page (Enfold > Theme Options > General Styling > “General” tab – “Heading Font” dropdown). If you want to apply the font family to the menu links insert this code into the quick css field:
#avia-menu li a{font-family: "Rum Raisin";}
Cheers!
PeterMay 28, 2014 at 3:25 pm in reply to: Placing blog title above featured image, excerpts below #271180Hey!
Did you upload your modified shortcode file into the wp-content/themes/enfold-child//shortcodes/ folder?
Regards,
PeterHey itchybrain!
I don’t know a plugin which adds table controls to the editor but if you want to create advanced tables I can recommend this plugin: http://tablepress.org/ which works with shortcodes. It also supports responsive tables: http://tablepress.org/extensions/
Regards,
PeterHi soluciones1!
1) Please post a link to your website and we’ll provide some css code to move the flags to the top of the menu.
2) The icon boxes don’t support custom images. You can just select a font icon from fontello: http://fontello.com/ . If you want to add an image to your text I recommend to use the column elements to create the columns, then place an image element (you can find it in the “Media Elements” tab) into each column and then use some textblock elements to add some text to the columns. The round circle around your image requires some Photoshop work.
Best regards,
PeterMay 28, 2014 at 3:13 pm in reply to: CSS Wrap All and Advanced Layout Builder Blog Pagenation Issue #271171Hey!
1) Please create us an admin account and post the login credentials as private reply – we’ll check the configuration.
2) No, Enfold just uses the standard wordpress search which doesn’t support such a feature. You can try a search plugin like: SearchWP though.
Regards,
PeterHi!
Please replace the code Ismael posted :
if(!is_archive()){ echo $content; } else { $excerpt = the_excerpt(); echo $excerpt.'<a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a>'; }
with
if(!is_archive()){ echo $content; } else { $excerpt = get_the_post_thumbnail( get_the_ID(), "large"); get_the_excerpt(); $excerpt .= get_the_excerpt(); echo $excerpt.'<a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a>'; }
Regards,
PeterHi!
Thanks Flikk for helping us out ;)
Best regards,
PeterMay 28, 2014 at 3:04 pm in reply to: How to change the product-slider item size / Wie ändere ich die product-slider g #271156Hey!
Versuche einmal diesen Code:
#top .products.slide-entry-wrap .inner_product_header { display: none !important; }
Cheers!
PeterHi fotograf561!
Die Größe des Tooltips wird von Google Maps automatisch anhand des Inhalts und der Größe des Browser-Fensters berechnet und kann mWn nicht unmittelbar per JS Code beeinflusst werden. Du könntest probieren die minimale Größe per CSS Code zu setzen, aber ich bin mir ehrlich gesagt nicht sicher, ob dies funktioniert. Hierzu fügt folgenden Code in das Quick CSS Feld ein:
.gm-style .gm-style-iw, .gm-style .gm-style-iw div { min-width: 330px !important; }
Ihr könnt natürlich statt 330px auch einen anderen Wert verwenden.
Cheers!
Peter -
AuthorPosts