Dan Pardella
Forum Replies Created
-
Forum: Plugins
In reply to: [Table of Contents Plus] Security IsueHey!
The plugin has unfortunately not been maintained in the plugin directory for the last few years. However, the plugin does not pose a direct security risk. It only shows data in the frontend.
But I am currently working on it with my own team. I like to keep you up to date here.
Forum: Themes and Templates
In reply to: [Startup Blog] Feature request: sticky/fixed headerHej Ben,
works fine. thanks.
it still remains with the request to embed in the theme options ??
thanks!
Forum: Plugins
In reply to: [WP YouTube Lyte] foreign iframes are lostHi Frank,
that works fine ??
After update the code we have no more problems.
thanks!
Forum: Plugins
In reply to: [WP YouTube Lyte] foreign iframes are lostHi Frank,
you can watch it without the Plugin here: https://www.junge-gruender.de/gbr-gruenden/
At point 5 (Schritt 5: Gesch?ftskonto er?ffnen) comes the first iframe. thats a financeAds iframe.
at the point “Nachteile einer GbR” comes the first youtube iframe.
everything seems normal and coded correctly.
if we activate the plugin, the text and iframe between point 5 and the first youtube video are lost.
Forum: Plugins
In reply to: [WP Scroll Depth] not working with new Analytics CodeYes, we use the gtag. It is directly integrated into the header, without any further plugin.
It would be great if a solution could be found very quickly.
Thank you very much!
Forum: Plugins
In reply to: [WP Scroll Depth] Internationalize the PluginSounds great.
Thank you.
I‘ll translate it into german. ??
Forum: Themes and Templates
In reply to: [Startup Blog] little css problem on the FrontpageI sent you access to the test server via pm (slack).
Funny thing: We didn’t make any CSS adjustments. But maybe I’m a little blind.
thanks for the support ??
- This reply was modified 6 years, 8 months ago by Dan Pardella.
Forum: Themes and Templates
In reply to: [Startup Blog] little css problem on the FrontpageThank you for the support. Works.
But in my screenshot you see the last row? the row is still set incorrectly after inserting the CSS. Any idea?
Forum: Themes and Templates
In reply to: [Startup Blog] i want to split the Frontpage in 2 SectionsHey guys,
i had the same issue and solved it with this code:
<?php get_header(); get_template_part( 'content/archive-header' ); ?> <div id="loop-container" class="loop-container"> <?php $query = new WP_Query( array( 'post_type' => 'page', 'post__in' => array( 1, 10, 15, 50, 42 ) ) ); // your page ids here separated with , while ($query->have_posts()) : $query->the_post(); ct_startup_blog_get_content_template(); endwhile; wp_reset_query(); ?> </div> <div id="loop-container" class="loop-container"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ct_startup_blog_get_content_template(); endwhile; endif; ?> </div> <?php // Output pagination if Jetpack not installed, otherwise check if infinite scroll is active before outputting if ( !class_exists( 'Jetpack' ) ) { the_posts_pagination( array( 'mid_size' => 1, 'prev_text' => '', 'next_text' => '' ) ); } elseif ( !Jetpack::is_module_active( 'infinite-scroll' ) ) { the_posts_pagination( array( 'mid_size' => 1, 'prev_text' => '', 'next_text' => '' ) ); } get_footer();
I hope you can use this for yourself.
Forum: Themes and Templates
In reply to: [Startup Blog] Feature request: Widgets in FooterHi Ben,
thanks ?? would be nice to see it in future updates.
great!