Forum Replies Created

Viewing 30 posts - 10,081 through 10,110 (of 10,882 total)
  • Author
    Posts
  • das was da als Name steht ist sekundär. der Link ist intern festgelegt ( es sei denn du setzt einen eigenen Link im Menu)

    du kannst ja sogar in “angezeigter Name” ein Bild einfügen durch
    Also obwohl gleiches Linkziel unterschiedliche Namen möglich !

    in reply to: [Resolved] Move main menu to sidebar #622563

    to put something via widget just after main container opens you can use this code here in child-theme functions.php file:

    add_action( 'ava_after_main_container', 'enfold_customization_newlogo_widget_area' );
    function enfold_customization_newlogo_widget_area() {
    	dynamic_sidebar( 'newlogo' );
    }

    and on dashboard / widget you than have to create a new widget area called: newlogo

    than you can place your logo and backlink to landingpage to a text-widget in this new area

    in reply to: [Resolved] Move main menu to sidebar #622497

    why don’t you use this demo settings here:

    http://kriesi.at/themes/enfold-consulting/

    set the div .logo to display none and put on all pages the logo on top of main

    in reply to: You need top sticky the following #616211

    What about this rule? This isn’t part of 3.5.3 Enfold ?

    in reply to: Enfold update problem- How to don't lose customisations! #614720

    On updating your theme files i allways uses the ftp manual version. See here on http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Scroll down to : “Update manually via FTP” and have a look to the video

    in reply to: Enfold update problem- How to don't lose customisations! #614716

    It is in General (not only for enfold) a good advice to have a child theme installation for wordpress!
    There is a nice online documentation (or on your envato complete Download of Enfold an offline Version) for Enfold here:
    http://kriesi.at/documentation/enfold/

    Here is a little tutorial for enfold child theme: http://kriesi.at/documentation/enfold/using-a-child-theme/

    On Download Section there is a downloadable Child-Theme of Enfold with at least a (on default) empty functions.php (for that child theme)
    Some files in the wordpress hierarchy do not overwrite the existing ones but they can add information and rules to the original files of the theme itself. One of those Files is the functions.php. So here on board there are a lot of customization hints by adding some code to that child-theme functions.php !

    If you activate first the parent theme and after that the child theme – there are some options to transfer the settings of the parent theme to the child theme. Read and see the tutorial mentioned above on “Moving to a Child Theme”

    One of the greatest benifits of Child-Theme Installation is that on updating the parent theme those customizations of your child theme are not influenced !

    in reply to: Support nötig für Theme Update ?? #612510

    das ich keine gültige Lizenz mehr am laufen hatte ist bisher noch nicht vorgekommen. Heißt – bei mir kam immer mal wieder eine frische hinzu für neue Aufträge. Daher ist die Frage trotzdem auch für mich interessant.

    in reply to: Icon beside category #609863

    if not it will be nice to have some possibilities to selekt those words specifically.
    If you do this:

    Villa Santi
    <span class="bed icons"> 4 Bedroom</span> | <span class="bath icons">4 Bathroom</span> | <span class="size icons">Land Size : 750 m2</span>
    <span class="beach icons">10 min. walk to beach</span> | <span class="shop icons">10 min. walk to Shopping, Restaurants, Spa and Massage</span>
    <span class="airport icons">25 min. drive to airport</span>
    .icons::before {
        font-family: entypo-fontello;
        font-size: 24px;
        position: relative;
        padding-right: 5px
    }
    
    .bed::before {
        content: "\e8af";
        top: 3px;
    }
    .bath::before {
        content: "\e8ce";
        top: 3px;
    }
    .size::before {
        content: "\e869";
        top: 3px;
    }
    .beach::before {
        content: "\e8b9";
        top: 3px;
    }
    .airport::before {
        content: "\e8b6";
        top: 3px;
    }
    .shop::before {
        content: "\e859";
        top: 3px;
    }

    see here: http://webers-testseite.de/enf02/testsite/
    for formating your text with span tags you can use f.e. Bueltges Add quicktag plugin

    or if it is allways the same text underneath those hotels you can copy paste the whole content and fillout than the correct values for the given Hotel

    <span class="bed icons"> 4 Bedroom</span> | <span class="bath icons">4 Bathroom</span> | <span class="size icons">Land Size : 750 m2</span>
    <span class="beach icons">10 min. walk to beach</span> | <span class="shop icons">10 min. walk to Shopping, Restaurants, Spa and Massage</span>
    <span class="airport icons">25 min. drive to airport</span>

    PS: i did the top value to the specific class because sometimes it might be better to put in different values.

    • This reply was modified 8 years, 7 months ago by Guenni007.
    in reply to: Icon beside category #609835

    yes now i know what you mean – i will think of it a while becaus i want to make it

    is the text under your images dynamicaly generated or do you fill out those details?

    Villa Santi
    4 Bedroom ; 4 Bathroom - Land Size : 750 m2
    10 min. walk to beach | 10 min. walk to Shopping, Restaurants, Spa and Massage | 25 min. drive to airport
    in reply to: cancel masonry animation #609438

    if you want no animation at all:
    but the images has to load on page load – this animation “mimics” that loading time – the non animation mode looks very boaring – sorry
    btw. if you only want to influence some Masonries you have to use custom css class.

    .avia_desktop.avia_transform3d .av-masonry-entry {
        perspective: none;
    }
    .avia_sortable_active .isotope {
        transition: none ;
    }
    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry {
        animation: none;
    }
    .av-masonry-image-container, .av-inner-masonry-content, .av-masonry-pagination {
        transition: none;
    }
    .avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
        transform: none
    }
    in reply to: Icon beside category #609428

    yes!


    if you have no link to your site where we can see your whishes – is there an example site on enfold demos?
    i guess it could be done by pseudo class before but it is easier to have not only a description of your problem

    in reply to: WordPress creates a version 2 automatically #605713

    if you have it in your waste basket (trash) (dont know the word for it because i’m working on a german wp installation) it is nonetheless present for wordpress. So the url is taken to that page/post.
    If you empty your basket before you create the new one or rename the 2nd one it will work.

    in reply to: header widget and scroll offset #605052

    thanks ismael but this is not the right position – but it gave me the hint where to search.
    i browsed around in enfold folder where the do_action is used.
    In header.php there is a piece of code i can use for that:

    so this is now a solution for me:

    add_action( 'ava_after_main_container', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    }

    perhaps it is better to rename the widget area to something else f.e. before-main

    and of course this is not to use with transparent or glassy headers!

    • This reply was modified 8 years, 8 months ago by Guenni007.
    in reply to: WordPress 4.5 vs Enfold Widgets and theme support #604528

    i suspect – yes – because there is a bigger step on enfold update from 3.47 to 3.51 – but we will hear the mods on that

    in reply to: Minify JS Problems #604522

    what do you mean by “broken”

    Sometimes in different combinations the js files of the advanced layer slider are in conflict with bwp minify.
    Then i goto bwp settings / managed enqueued files and set those js files of layerslider to “scripts to not minify”

    in reply to: header widget and scroll offset #604510

    thanks Ismael – yes i removed it and do it on that case manually on adding on top a colorsection with “widget everywhere” alb element.

    i’m planning to create a town portal page – and i want to show on different places ( f.e. under the header – before content (top of main)) to show some entries of a given category.

    But nevertheless this question is important – there are these tips to create a “header-widget-area”

    but you can see it in private content link that the scroll offset does not consider that existing header-widget-area
    the first color-section is laying under the widget-area

    in reply to: Enfold-Update hat meine ganze Seite zerschossen! #602437

    ich vermute mal , dass Du die Seite via Liveupdate Funktion von WordPress upgedatet hast?
    ich nutze schon immer nur die Methode via ftp – scheint mir die sicherste zu sein

    ich denke da musst du jetzt auf einen Moderator hoffen – warten
    ___________

    I guess that you have updated the page via LiveUpdate feature of WordPress ?
    I use allways the ftp method – seems to be the safest way.

    so i think you have to wait now for a mod to help you.

    ________

    by the way : the update from 3.5 to 3.5.1 only updates (besides the style.css) the shortcodes.css
    maybe you can try to upload that file manually (ftp) to that concerning folder (enfold/css/shortcodes.css)

    in reply to: Enfold 3.5 and tabs #602090

    sorry – it was my fault – a copy paste (impressum) fault (copying divs and other html elements from another installation into visible field to the tab results in errors)

    can be closed

    • This reply was modified 8 years, 8 months ago by Guenni007.
    in reply to: Demo Install and obligatory install of wooCommerce #602060

    yes begrafiks – i do it in your way! but this is for a beginner a little hurdle because he stucks on that point.

    and yigit “learning by teaching” is just egoism ;)
    to find solutions for other participants question is the best way to learn something about enfold. – And this makes my work with my cutomers easier.

    in reply to: Mega Menu Transparent #602057

    so here seems to be the complete rule:

    .header_color .avia_mega_div {
        background-color: rgba(255, 255, 255, 0.85) !important;
    }
    
    .avia_mega_div .sub-menu,
    .header_color .main_menu ul .avia_mega_div ul,
    .header_color .main_menu .menu .avia_mega_div ul li a {
        background-color: transparent;
    }

    but this only rules the mega-div !!! if you want the whole dropdown menus we must do something different !

    in reply to: Mega Menu Transparent #602041

    try this first:

    .header_color .avia_mega_div {
        background-color: rgba(255, 255, 255, 0.85) !important;
    }
    
    .avia_mega_div .sub-menu, .header_color .main_menu ul .avia_mega_div ul {
        background-color: transparent !important;
    }

    i think anything under 0.8 opacitiy makes it diffuse

    next step is that the list points got its own background-color (and hover state)

    in reply to: Mega Menu Transparent #602031

    and this is only for mega menu – the rest dropdown menus you don’t need to adopt?

    in reply to: header widget and scroll offset #600823

    is there a good plugin for that not to complicated and working well with Enfold ?
    Have you any good advice for me?

    Thanks

    in reply to: insert color section on each single Portfolio post #598925

    hm – now i know:
    #

    if ( is_singular( 'portfolio' ) && has_term( 'apotheken', 'portfolio_entries' ) ) { …

    my fault was that i thought the Portfolio Categories are “Categories” :lol

    can be closed now

    in reply to: Inline svg maybe as logo #598357

    hm – can be closed i got it in this way (two logos option – and logo img on display none)
    it seems to be important to have the absolute path to the uploaded svg images (code comes to child-themes function.php)

    function first_logo($logo) {
    $logo .= '<strong class="logo first-logo"><a href="/bonnzeit">' ;
    $logo .= file_get_contents("absolute-url1.svg");
    $logo .= '</a></strong>';
    return $logo;
    }
    add_filter('avf_logo_final_output', 'first_logo');	
    
    function second_logo($logo) {
    $logo .= '<strong class="logo second-logo bg-logo"><a href="/bonnzeit">' ;
    $logo .= file_get_contents("absolute-url2.svg");
    $logo .= '</a></strong>';
    return $logo;
    }
    add_filter('avf_logo_final_output', 'second_logo');	
    in reply to: Inline svg maybe as logo #597924

    i see that this is defined in the “function-set-avia-frontend.php”

    isn’t it possible to use perhaps the “$use_image” to insert a inline svg ? instead of the $sub ?

    maybe something like this:

    add_filter('avf_logo', 'kriesi_logo_addition');
    function kriesi_logo_addition($use_image)
    {
      $use_image .=   ???
      return $use_image;
    }

    if i use in “function-set-avia-frontend.php” :

    if($logo = avia_get_option('logo'))
    {
    	$logo = apply_filters('avf_logo', $logo);
    	if(is_numeric($logo)){ $logo = wp_get_attachment_image_src($logo, 'full'); $logo = $logo[0]; }
    	$logo = file_get_contents($logo);
    	$logo = "<$headline_type class='logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>";
    }

    but i don’t want to think at every time i update the theme on that change.

    • This reply was modified 8 years, 8 months ago by Guenni007.
    in reply to: Inline svg maybe as logo #597899

    i thought i can take the whole content of the svg and rename it f.e: inline-logo.svg.php
    i can place this in root of child-theme and try to “get” it as inline.svg via
    get_template_part('images/inline', 'logo.svg')

    __________________________________________

    on your code – i use it often in this form :

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<span class='logo-title'>";
      $sub .= get_bloginfo( 'name', 'display' );
      $sub .= "</span>";
      $sub .= "<span class='logo-title logo-subtitle'>";
      $sub .= get_bloginfo( 'description', 'display' );
      $sub .= "</span>";
      return $sub;
    }

    so i can use name and description from WP

    but how do i set in the svg code as $sub ?

    • This reply was modified 8 years, 8 months ago by Guenni007.

    Great advantage of advanced layerslider – you can determin the responsive behavior.
    so with your pictures you can set the layerslider to 100% width and 688px height and start responsiveness under 1100px etc. pp

    if you don’t have something against unproportional stretching those images you can give the slideshow a custom css class (f.e. : “specialslideshow”)

    the 100vh is the 100% screenhight ! and i substact the header hight here

    .specialslideshow img {
        height: calc(100vh - 150px);
    }

    look (sorry for using your images – if you answer here on my post i will delete them immediately)
    http://webers-testseite.de/enf02/slideshow-special/

    try to take the full-screen slider instead.
    This i think stops at the bottom of the screenheight.

Viewing 30 posts - 10,081 through 10,110 (of 10,882 total)