Tante A
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pinnacle] Recommended plugins?Thanks Kevin. That does the trick!
@Kandence Themes: Correct, free demo indeed.
Forum: Themes and Templates
In reply to: [Pinnacle] Recommended plugins?Hmm.. Could you tell me where i can find the paralax effect in the toolkit?
Website is offline, sorry.
Forum: Themes and Templates
In reply to: [Pinnacle] Nav menu: effect on hoverThanks Kevin, it worked!
O. Found it. It’s not the update of wordpress.
It’s a php code to skip the lightbox, which I copied from Nimble3, How To: Skip Lightbox:
add_filter('nimble_portfolio_lightbox_link_atts', 'handle_nimble_portfolio_lightbox_link_atts', 20, 2); function handle_nimble_portfolio_lightbox_link_atts($link_atts, $item) { $link_atts['href'] = $item->getPermalink(); unset($link_atts['rel']); return $link_atts; }When you rewrite it to the one below; the lightbox doesn’t show on mobile devices. However; on desktops the lightbox appears at the bottom of the screen.
if ( wp_is_mobile() ) { add_filter('nimble_portfolio_lightbox_link_atts', 'handle_nimble_portfolio_lightbox_link_atts', 20, 2); function handle_nimble_portfolio_lightbox_link_atts($link_atts, $item) { $link_atts['href'] = $item->getPermalink(); unset($link_atts['rel']); return $link_atts; } }Conclusion: Don’t mess with the code.. 🙂
@callciccio;
What’s the name of your gallery plugin? 😀Forum: Themes and Templates
In reply to: [Gridsby] (Change) featured image size in postAha! Adrew, you’re my star of the day.
Thanks.Problem solved:
> Add the above code to the style.css in the child theme.Forum: Themes and Templates
In reply to: [Gridsby] (Change) featured image size in postOk. Link!
You can see two featured images of two posts. One – the photo – I can’t find on my messages list at the dashboard. But that is another problem.
Forum: Themes and Templates
In reply to: [Gridsby] (Change) featured image size in postMay I ask where you need this for? I assume you also use the theme itself.
Forum: Plugins
In reply to: [Equivalent Mobile Redirect] View full site problemah.. sorry, changed plans and use your plugin no longer.
Forum: Plugins
In reply to: [Team Showcase] Remove gap [white space] above pluginThank you! It worked out well.
I have placed the code in the “Custom CSS”.Greetings
Forum: Plugins
In reply to: [Team Showcase] Background team memberProblem solved:
Themes for Team grid should be “flat” not “rounded”.Forum: Plugins
In reply to: [Team Showcase] Background team memberSorry for the late reaction!
This is the link.Thanks.
Forum: Themes and Templates
In reply to: [i-max] change hierarchy template homepageThanks, it works!
Used it like this:
<?php endif; ?> <?php if ( wp_is_mobile() ) { display:none; } else { echo do_shortcode("[shortcode]"); } ?> <div id="main" class="site-main">Forum: Themes and Templates
In reply to: [i-max] change hierarchy template homepageOke, before or after:
<?php endif; ?> <div id="main" class="site-main">