Forum Replies Created

Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • in reply to: Produktfotos in der Katalogübersicht #658035

    Alles gut!
    Es hat sich mit der Eingabe der Maße in den Woocommerce Einstellungen gelöst.

    Sorry für die “Störung”

    in reply to: Woocommerce single product page #633762

    Thank you Andy,
    I have solved my problems
    Best regards

    in reply to: Woocommerce single product page #629822

    Hi Ismael,

    now I found the fault in your description https://kriesi.at/support/topic/sidebar-rechts-single-page/#post-580220

    function avia_add_sidebar() {
    global $avia_config; // was missing
    if(is_product()) {
    $avia_config[‘currently_viewing’] = “shop_single”;
    get_sidebar();
    }
    }

    So – now I have the right sidebar with product widget area.

    But how I can put it on the left side?
    Thanks

    in reply to: Woocommerce single product page #629771

    Hi Ismael,

    no I have done the changes you recommend in https://kriesi.at/support/topic/sidebar-rechts-single-page/#post-580220

    But it does not work correctly ( the old modifications worked better)

    Now the sidebar is just the standard sidebar, not the product widget area in the sidebar.
    And how I can put it to the left side? This is not so easy as with the old modifications.

    Best Regards

    in reply to: Woocommerce single product page #629488

    Hi Ismael,
    now I have almost done it. would you please look at the test-site (link in private content)

    I just need a little help with the woocommerce-tabs and product description. It is too small.
    It should be place nearby the sidebar as wide as product image + product summary together.

    The following steps I have done:

    I added in function.php

    
    #
    # wrap single product image in an extra div
    #
    
    function avia_add_image_div() {
     echo "<div class='single-product-main-image alpha'>";
    }
    
    function avia_close_image_div() {
     echo "</div>";
    }
    
    #
    # wrap single product summary in an extra div
    #
    
    function avia_add_summary_div() {
     echo "<div class='single-product-summary'>";
    }
    
    function avia_close_summary_div() {
            global $avia_config;
            echo "</div>"; //close out the summary	
            $avia_config['currently_viewing'] = "shop_single";
    		get_sidebar();	
    }
    
    function avf_product_sidebar_layout_mod($layout){
     if( is_single() )$layout = "sidebar_left";
     return $layout;
    }
    
    add_action('init', 'ava_product_sidebar_mod');
    function ava_product_sidebar_mod() {
     add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2 );
     add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20 );
     add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25 );
     add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3 );
     add_filter( 'avf_product_sidebar_layout', 'avf_product_sidebar_layout_mod', 5);
    }

    and in enfold/config-woocommerce/config.php I deleted

    $sidebar_setting = avia_layout_class( ‘main’ , false );
    and added
    $sidebar_setting = apply_filters( ‘avf_product_sidebar_layout’, avia_layout_class( ‘main’ , false ) );

    in child css I added:

    
    .single-product .product {
    width: 68%;
    margin-left: 4%;
    clear: none;
    float: right;
    }
    
    .single-product-main-image {
        width: 50%;
    }
    
    .single-product .reviews_tab{
    display:none;
    }
    
    .single-product .sidebar {
        padding-top: 10px;
    }

    Would you help me the last step, please

    Thank you

    in reply to: Woocommerce single product page #627282

    Hi Yigit,
    the right sidebar of your post 580220 works fine, i tried it.

    But that is not what I need. Perhaps I expressed myself badly.
    – The sidebar on the left may remain your standard sidebar for product pages – But I need it not under the product foto – but on the left side of the foto. (First Column: Sidebar, second column: foto, third column: product summary)
    – And the Description should be two Colums wide (not one – like in the template)
    Please take a look on the picture I sent, again.
    Best Regards

    in reply to: Breadcrumbs in The Events Calendar #584007

    Hallo Thomas,

    ich habe in der Sprachdatei Enfold/lang/de_DE.po
    “Events” mit Veranstaltungen übersetzt.

    Du musst aber auch, wie von Josue in dem Ticket vorgeschlagen, folgendes in die functions.php eingeben

    add_filter(‘tribe_events_register_event_type_args’, function($args) {
    $args[‘has_archive’] = false;
    return $args;
    });

    Dann erscheinen die Breadcrumbs richtig.
    Ich würde mir aber schon wünschen, dass das Problem von Kriesi anders gelöst würde.

    Schöne Grüße
    AL

    Hi,
    I got it !
    I have just copied the sample slider with its settings.

    Now I have changed Slider settings to slider width: 1310px (previously: 100%)
    and at Full-width slider settings I have disabled Full-width.

    That’s it

    Thank you for your help

    Hi Ismael,

    it is a different slider, but the issue is the same. The 1px border left is also there with your example slider !
    I’m using a 15,6 inch monitor, resolution 1366 x 768.

    If I reduce the browser size a little bit, the border dissapears! I quiet agree with Vinay.

    Thank you

    in reply to: Breadcrumbs in The Events Calendar #564458

    Hi Andy,
    sorry, aber das kanns gar nicht sein.
    – Die Breadcrumbs funktionieren ja – aber in Enfold eben nicht ganz korrekt
    – Die Lösung von Joshue funktioniert – aber eben nicht ganz.

    Hab mich jetzt nochmal selbst nochmal auf die Suche gemacht und bin auch fündig geworden

    in der Datei …enfold/config-events-calendar/config.php
    gibt es die Funktion

    function avia_events_breadcrumb($trail)
    {
    global $avia_config, $wp_query;

    if(is_404() && isset($wp_query) && !empty($wp_query->tribe_is_event))
    {
    $events = __(‘Events’,’avia_framework’); ………………………

    Das Wörtchen Events ist in eurer Sprachdatei nicht übersetzt.

    Also:
    – Notlösung von Joshue und
    – Sprachdatei ergänzen

    dann gehts.

    Vielleicht könnt ihr das Ganze ja in einer kommenden Version von Enfold beheben.

    Gruß
    AL

    Hi,

    no, you are wrong, the issue is still the same

    Regards
    AL

    in reply to: Breadcrumbs in The Events Calendar #563823

    Hi Andy,

    beim Standard-Theme 2015 funktioniert es richtig (ich habs jetzt nochmal ausprobiert. Ich hab den Kalender auch schon bei anderen Themes verwendet.
    Es muss an Enfold liegen. Deshalb habe ich auch den Support von Autor des Plugins noch nicht kontaktiert.

    Gruß
    AL

    1. Margin at the top of page
    Hi Yigit,
    thanks for the solution.
    Is there also a quick solution to get a smoother transition? With Firefox it looks not good,
    You can see the “normal” Header scrolling to top behind fixed header since margin is 0.
    Then scrolled header “jumps” to top

    Thank you.

    2. Left white border with slider

    Hi Vinay,

    I have tried it with cropping a few pixels from top of the picture – there is no effect.
    I also tried it with your demo-sliders. The border remains.

    What can I do?

    Best regards

    in reply to: Breadcrumbs in The Events Calendar #563072

    Hi Andy,

    ich habe den Events URL slug richtig eingestellt!! sh. oben.

    In dem Ticket
    https://kriesi.at/support/topic/breadcrumbs-displaying-events-twice-to-same-link-using-ecp/
    wird der Fehler in Enfold beschrieben:
    ————————————————–
    Hey!
    Check it now, i added this to your child theme functions.php:

    add_filter(‘tribe_events_register_event_type_args’, function($args) {
    $args[‘has_archive’] = false;
    return $args;
    });

    Enfold was taking both the /events/ slug and the /events/ archive in consideration for the breadcrumb trail so disabling one of those seems to do the trick.

    Regards,
    Josue

    —————————————————————–

    Anscheinend wird dann der Slug entfernt und nicht das Arichiv. Im Englischen ist das ja egal, weil beide Male “events” steht.
    Nur im Deutschen hätte ich gerne “Veranstaltungen stehen.

    Dankeschön

    Would you please look at another problem at the site. There is a small white border on the left of the Layer slider at the frontpage.
    I’m using a laptop with Windows 7. The problem exist with Firefox 43.0.3 and IE 11. There is no problem with Google Chrome

    Hi,
    I send you a link to my test site.
    Is it possible when scrolling to get the shrinking header to the top of page – without margin?

    Thanks

    in reply to: Standard WordPress Galerie #539110

    Hi Andy,
    ich wollte die Standard Galerie verwenden, weil ich da eine individuelle Größe der Fotos angeben kann. Bei der Enfold Galerie ist das nicht so einfach. Da werden die Fotos immer irgendwie skaliert.

    Aber ich habe mich jetzt mit der Enfold Galerie arrangiert. Deshalb gibt es auch keinen Link zum Anschauen.
    Dankeschön

    in reply to: Sticky Header on standard android 4.3. browser #281033

    Hi,

    ….”The solution about decreasing the opacity tells us that on asus stock browser, the header_bg container covers the logo and the menu”…

    This is correct. But: is NOT the asus stock browser (with asus there is another problem, but we can leave this)
    It is the stock browser of a Samsung Galaxy Tab 2.

    And the problem also exists with your websites kriesi.at/themes/enfold and also kriesi.at.
    It is interesting, that on kriesi.at the social icons at the top are correctly displayed.
    Logo and menu are hardly visable.

    “Ismael:
    ….. the header_bg container covers the logo and the menu. Is that correct? ”

    Yes, that is correct.

    I think, it’s a problem with the z-index, but i can’t find it out, where I have to change it.

    And the problem just exists with the sticky header, not with a scrollable header. Therefore, it think, it can’t be just a problem of the device.

    Best Regards

    • This reply was modified 9 years, 10 months ago by anna-leo.
    in reply to: Sticky Header on standard android 4.3. browser #280593
    This reply has been marked as private.
    in reply to: Sticky Header on standard android 4.3. browser #274424

    Hi,
    o.k. lets drop the issue with the asus browser.

    But the standard android browser is the most used in Germany.
    StatCounter Global stats

    For me it is no problem, I also have Chrome as browser. But perhaps it’s a problem for my customers.

    So my request is to get a solution of the problem with the transparent font of the sticky header.

    What can I do, to make the background and the font just of the sticky header non-transparent?
    Would you please help me.

    in reply to: Sticky Header on standard android 4.3. browser #273956

    Hi,
    now I wanted to check the problem with another Tablet:
    A Samsung Galaxy Tab 2 10.1
    Browser
    And there there the problem with the moving sticky header does not exist.

    But there is another problem.
    When scrolling down, the FONT of the sticky header gets nearly transparent, so you can’t read the menu points anymore.
    This problem also exists on kriesi.at and kriesi.at/themes/enfold

    How I can fix this? Perhaps it’s a problem with the Z-index

    And: I want to have a transparent Header at the Hompage.
    But I don’t need a transparent sticky header – weather the background nor the font.
    Thank you

    • This reply was modified 9 years, 10 months ago by anna-leo.
    in reply to: Sticky Header on standard android 4.3. browser #273914

    Hi,

    its the standard browser of Asus or Android – I have found this:
    inside handy
    It’s a webkit-browser.
    Best Regards

    in reply to: Sticky Header on standard android 4.3. browser #271021

    Hi Ismael,
    thank you for your quick answer.

    The quick CSS is not working. Then my transparent header on the homepage is no more transparent. and also the header is no more sticky.
    – also with Chrome.

    Screenshot

    My tablet is an Asus Memo Pad FDH 10, Resolution 1920×1200, Android 4.3.

    Regards

    • This reply was modified 9 years, 10 months ago by anna-leo.
Viewing 23 posts - 1 through 23 (of 23 total)