Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • to finish this, here is the solution:
    I used two partner/logo elements, one is for desktop and that works without any further work.
    The other one shows up on mobile, i have given the ID “koop” and this is in my style.css:

     .koop .avia-content-slider-inner .flex_column {
        width: 33% !important;
    }

    so i get 3 logos in a row on mobile.

    cheers!

    in reply to: partner/logo element on mobile no columns configurable #956919

    Hi Rikard,

    thank you very much for understanding my problem. I was sure there is a solution…
    I tried your code in my child theme style.css and it works, but it changes also for desktop. Is there a way to target only the mobile element?

    Thanks again,
    best
    Philipp

    PS: nevermind, i got it running with custom css activated for all elements.
    I would say, the mobile partner element needs a little love ;)

    • This reply was modified 6 years, 6 months ago by alphabeta23.
    in reply to: partner/logo element on mobile no columns configurable #956372

    Hi Basilis,

    so basically you are telling me the enfold partner element is broken for mobile, and it is too much work for you to repair it? Thanks for the clarification! I thought such a basic function of this otherwise great theme should work out of the box…

    Regards,

    Philipp

    in reply to: Burger Menu does not work if Conditional Menus Plugin is used #848068

    Hi there,

    as i have the same problem, i’d like to get the updated functions-enfold.php
    but the pastebin is emtied unfortunatly

    can somebody please please provide me with the file?

    thanks a bunch in advance!

    philipp

    Edit: nevermind, i could edit the file myself…

    • This reply was modified 7 years, 2 months ago by alphabeta23.
    in reply to: Burger Menu / Mobile Menu / unconsistancy #723705

    thank you @guenni007 this looks very interesting indeed. i will try this out.
    still i will put this as a feature request and maybe at the end we will have a “solution” more than a “fix”.

    in reply to: Portfolio next/prev buttons in page #704453

    Never mind, found out myself what was going on (not really understanding it though): adding an else statement at the end did the trick!

    add_filter( 'avf_template_builder_content', 'enfold_customization_portfolio_next' );
      function enfold_customization_portfolio_next( $content )
      {
      	if ( is_singular( 'portfolio' ) )
        {
      	$content .= '<div class = "oha-portfoliobuttons"><ul><li>';
      	$content .= get_previous_post_link( '%link' );
        $content .= '</li><li>';
      	$content .= get_next_post_link('%link');
        $content .= '</li></ul></div>';
      	return $content;
      	}
        else {
      	return $content;
        }
      }
    in reply to: Portfolio next/prev buttons in page #704247

    Hi there,

    i’d like to add some clarification and another question here. I also want some text based buttons for prev / next portfolio items.
    i added this code to my child-theme function.php

    
    add_filter( 'avf_template_builder_content', 'enfold_customization_portfolio_next' );
      function enfold_customization_portfolio_next( $content )
      {
      	if ( is_singular( 'portfolio' ) )
        {
      	$content .= '<div class = "oha-portfoliobuttons"><ul><li>';
      	$content .= get_previous_post_link( '%link' );
        $content .= '</li><li>';
      	$content .= get_next_post_link('%link');
        $content .= '</li></ul></div>';
      	return $content;
      	}
      }
    

    and it works as wanted on single portfolio pages
    BUT
    removes all content from other parts of the website.
    The main menu is still there, but no other page is visible.
    (this might be what lucasvrooij meant with “blank pages” here https://kriesi.at/support/topic/portfolio-nextprev-buttons-in-page/#post-512693 )
    So maybe something in this
    if ( is_singular( 'portfolio' ) )
    is not properly working?

    Best,
    Philipp

    in reply to: portfolio items navigation (next / prev) is suddenly gone #601145

    Hey Günther,

    sorry if i was not specific enough. I also wrote a wrong URL – i meant another project item page.

    So, it is not about the navigation in the slider, it is about the navigation from one portfolio item to another (“entry-info-wrap”). It used to be on all portfolio pages, but now it is gone entirely on chrome, and only visible on safari or FF but only on the portfolio item page without a fullwidht slider on top.

    I have no idea what happened to these. My best guess is that the fullwith slider has something to do with it.

    thank you in advance for every help!

    philipp

    here admin info

    in reply to: unwanted 1px vertical line beside color grid #583457

    YEAH, this worked out!
    thanks Yigit, you are the man!

    in reply to: unwanted 1px vertical line beside color grid #583437

    Thanks Yigit!

    i use a child theme with its own css, so i did put this in there, it worked, but only partially. the color grid with 4/4 sections worked out fine, but the 2/3 – 1/3 grid (lower on the site with the map graphic) did not…

    regards,

    philipp

Viewing 11 posts - 1 through 11 (of 11 total)