Forum Replies Created
-
AuthorPosts
-
September 23, 2016 at 1:25 pm in reply to: Enfold 3.8 > remove "avia_append_lang_flags" stopped working #690699
great, was just about finding that myself but your support-response was super-quick!
- This reply was modified 8 years, 2 months ago by maratino.
I had the same issue – it was relatet to the settings of “intuitive CPO” plugin
It was a WP Bug.
FIX – Shortcodes: Handle do_shortcode(‘<[shortcode]’) edge cases. #33116Done.
March 17, 2015 at 7:05 am in reply to: 3.1: avia_header_html_custom_height breaks navigation layout #412787Hi Elliot,
yes, it’s in function avia_header_html_custom_height(). I deleted this now.
“#top #header_main > .container .main_menu ul:first-child > li a” is styling my first-level submenu link with 70px height.
Here is a screenshot: https://db.tt/MkjTiAONSame here. “No conflict mode” in GF settings solved the problem.
October 12, 2014 at 7:36 pm in reply to: data-default-height in Slide-Show (full-width) element #334540well, we are going to extend the full-screen element ourselves – well be able to specify a custom height for different breakpoints.
October 10, 2014 at 1:44 pm in reply to: data-default-height in Slide-Show (full-width) element #333830http://hu.datema.de/leistungen/elektro-und-gebaeudetechnik/smart-building/
I don’t want a full-screen slideshow. I just want to set a min-height for the slide-show.
This seems to happen in Chrome only and now i see an error:
XMLHttpRequest cannot load https://fiberreed.de/wp-admin/admin-ajax.php?lang=en. No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://fiberreed.com’ is therefore not allowed access.it does not work for me too
April 13, 2014 at 1:47 pm in reply to: WooCommerce "My Account" Country drop-down is messed up #250747Yes because i deactivated that option in WooCommerce. Once again: Enfold can not display this Option “Erweiterte Länderauswahl-Boxen aktivieren” correctly.
April 10, 2014 at 11:18 am in reply to: WooCommerce "My Account" Country drop-down is messed up #249722It’s an option in WooCommerce that Enfold CSS can’t handle correctly.
WooCommerce > Einstellungen > Allgemein > Stile und Skripte > Erweiterte Länderauswahl-Boxen aktivieren
Dies wird ein Skript aktivieren, welches die Länder-Felder durchsuchbar macht.April 10, 2014 at 9:21 am in reply to: WooCommerce "My Account" Country drop-down is messed up #249680This reply has been marked as private.April 8, 2014 at 8:35 am in reply to: WooCommerce "My Account" Country drop-down is messed up #248691ok, that was a link to an Evernote PNG. just click it ox try this…
https://www.dropbox.com/s/0w9tb3lu3rcxoi9/Pasted%20Graphic.pngThere should be an option to turn it off. In my opinion it’s not a good user experience – you can’t use the portfolio ajax slideshow without this overlay coming up all the time.
Would be great to have some responsive options for builder elements. E.g. a three Column-Product-Slider for desktops, a two-column slider for tablets.
January 13, 2014 at 8:56 pm in reply to: Portfolio items sorting not visible in WPML translated page. #209161Hmm, after adding new categories and saving the portfolio grid several times it seems to work now. But it’s really not stable. If I open the portfolio grid module again – no categories are selected.
- This reply was modified 10 years, 10 months ago by maratino.
January 13, 2014 at 8:34 pm in reply to: Portfolio items sorting not visible in WPML translated page. #209147This reply has been marked as private.Add an admin list-filter for portfolio entries…
function restrict_portfolio_listing() {
global $typenow;
$post_type = ‘portfolio’; // change HERE
$taxonomy = ‘portfolio_entries’; // change HERE
if ($typenow == $post_type) {
$selected = isset($_GET[$taxonomy]) ? $_GET[$taxonomy] : ”;
$info_taxonomy = get_taxonomy($taxonomy);
wp_dropdown_categories(array(
‘show_option_all’ => __(“Show All {$info_taxonomy->label}”),
‘taxonomy’ => $taxonomy,
‘name’ => $taxonomy,
‘orderby’ => ‘name’,
‘selected’ => $selected,
‘show_count’ => true,
‘hide_empty’ => true,
));
};
}add_action(‘restrict_manage_posts’, ‘restrict_portfolio_listing’);
function convert_id_to_term_in_query($query) {
global $pagenow;
$post_type = ‘portfolio’; // change HERE
$taxonomy = ‘portfolio_entries’; // change HERE
$q_vars = &$query->query_vars;
if ($pagenow == ‘edit.php’ && isset($q_vars[‘post_type’]) && $q_vars[‘post_type’] == $post_type && isset($q_vars[$taxonomy]) && is_numeric($q_vars[$taxonomy]) && $q_vars[$taxonomy] != 0) {
$term = get_term_by(‘id’, $q_vars[$taxonomy], $taxonomy);
$q_vars[$taxonomy] = $term->slug;
}
}add_filter(‘parse_query’, ‘convert_id_to_term_in_query’);
OK, it seems to work now. I don’t know what’s changed this.
i doubt its a permalink issue – the problem is the same with standard settings.
the shortcode used to produce a blog listing is on this page:
http://bar.datema.de/thomas-henry/
the link to the second “page” of that listing is a completely other page:
http://bar.datema.de/thomas-henry-klassentreffen-2013-no-2-hamburg/2/to my understanding it should be sth. like:
http://bar.datema.de/thomas-henry/page/2/October 30, 2013 at 11:42 pm in reply to: Solution Found: Hack/Workaround for fixed-width, non-fullframe Masonry Gallery #182670i found a similar solution: give your grid an id and use some css:
#home-masonry { max-width: 1210px; float: none; margin: auto; } @media only screen and (min-width: 1800px){ .responsive.html_stretched .av-masonry-entry{width:24.9%;} }
September 24, 2013 at 3:35 pm in reply to: create a new content element for Avia Layout Builder #165686ok, it’s quite easy: https://kriesi.at/support/topic/more-content-elements/
Thx for your support. The problem is related to “WooCommerce Multilingual” a needed plugin – i will contact WPML. Thx for your support. The problem is related to “WooCommerce Multilingual” a needed plugin – i will contact WPML.
September 10, 2013 at 7:00 pm in reply to: WooCommerce German Market v. 2.2 will break search and fixed header scaling #140319Thx for your support. The problem is related to “WooCommerce Multilingual” a needed plugin – i will contact WPML. Thx for your support. The problem is related to “WooCommerce Multilingual” a needed plugin – i will contact WPML.
September 10, 2013 at 2:10 pm in reply to: WooCommerce German Market v. 2.2 will break search and fixed header scaling #140317Hi Devin,
it’s in development…
http://mod.fiberreed.de/produkt/fiberreed-carbon-classic-alt-saxophon/
Uncaught TypeError: Cannot call method ‘replace’ of undefined woocommerce.min.js?ver=2.0.14:1
Right now i am just checking some basics and i also noticed problems using the “German Market” Plugin”:
https://kriesi.at/support/topic/fixed-header-wont-scale-on-scroll-with-installed-woocommerce-german-market
however this specific cart issue is appearing without this plugin…
http://mod.fiberreed.de/Produkt/fiberreed-carbon-classic-alt-saxophon/?added-to-cart=22
Nope, it does not show up. I installed WooCommerce before mapping the main-menu – could that be the cause?
Best would be to create a childtheme and put this in your functions.php:
add_filter(“kriesi_backlink”, “”);
June 25, 2013 at 10:07 am in reply to: Pinterest button with the post thumbnail – how to get rid of "rel="lightbox… #126530changed a[href$=jpg] to .avia-gallery a[href$=jpg] in avia.js
-
AuthorPosts