Forum Replies Created
-
AuthorPosts
-
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!
May 15, 2018 at 12:02 pm in reply to: partner/logo element on mobile no columns configurable #956919Hi 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
PhilippPS: 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.
May 14, 2018 at 11:41 am in reply to: partner/logo element on mobile no columns configurable #956372Hi 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
September 5, 2017 at 12:16 pm in reply to: Burger Menu does not work if Conditional Menus Plugin is used #848068Hi there,
as i have the same problem, i’d like to get the updated functions-enfold.php
but the pastebin is emtied unfortunatlycan 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.
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”.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; } }
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.phpadd_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,
PhilippMarch 21, 2016 at 10:53 am in reply to: portfolio items navigation (next / prev) is suddenly gone #601145Hey 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
March 15, 2016 at 2:16 pm in reply to: portfolio items navigation (next / prev) is suddenly gone #598381here admin info
YEAH, this worked out!
thanks Yigit, you are the man!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
-
AuthorPosts