aski71
Forum Replies Created
-
Hi,
thanks for pointing me into the right direction.
I compared the functions.php of the new version to the old version and found that the following lines after line 593 were missing:wp_register_script( 'mediaelement', get_template_directory_uri() . '/scripts/mediaelement.js', array( 'jquery' ), null ); wp_register_script( 'mediaelementplayer', get_template_directory_uri() . '/scripts/mediaelementplayer.js', array( 'mediaelement' ), null );
Also in line 614 the line:
wp_enqueue_script( 'wp-mediaelement' );
had to be changed back to the former:
wp_enqueue_script( 'mediaelementplayer' );
Now also the Jetpack share buttons work fine again.
Will feed this back to the theme’s developers.Thanks again!
I meant the compatibility issue between Jetpack and my theme. Sorry for the confusion.
Yes, I deactivated all other plugins one by one. Did not solve the issue.
Which wordpress version have you tested it on? My provider has me on 3.5.2.Additional info:
I had a quick look into the sources. There seem to be no differences between the version that worked (1.0.6) and the version I have upgraded to (1.1.2) around this area.
So I guess this does not cause the problems?!Thanks.
I posted this one to the Pinboard support forum and hope for a reply.Is that anyhow related to the Jetpack compatibility issue?
This looks to me like a completely other area. ??Hi Richard,
I updated the theme again.
Can you please have a look what’s happening there?
Thanks a lot for your help!Unfortunately no.
The current workaround is that I reverted back to the old version of the theme that works.
The site is: https://www.musoc.de
If you want to have a look, I could install the new version again, but not today.I’ve tried but no luck so far. ??
So you don’t think it’s related to the jQuery problem I found in all the other related posts?Forum: Plugins
In reply to: [Delete Me] [plugin_delete_me /] not working on child pagesHi,
hm. Strange. The roles are set correctly.
I have no idea what else to test.
AlexForum: Plugins
In reply to: [Delete Me] [plugin_delete_me /] not working on child pagesAdditional Info:
It also seems not to work together with the User Meta Plugin.
Tried to place the shortcode additionally into a page where there is already another shortcode of the User Meta Plugin.
This is also not working even though the page is a top level page.Thanks for help
AlexHi,
I struggle with this and searched through various forums but somehow I seem to be to stupid to get this up and running.
I’m using the Pinboard theme of one designs and I’m able to create a page that contains articles of a certain category by hardcoding the category id into on of the theme’s templates. This is how it looks:<?php /* Template Name: #newsletter */ ?><?php get_header(); ?> <?php global $pinboard_page_template; ?> <?php $pinboard_page_template = 'template-blog.php'; ?> <?php if( pinboard_get_option( 'location' ) ) : ?> <?php pinboard_current_location(); ?> <?php endif; ?> <div id="container"> <section id="content" class="column twothirdcol"> <?php $args = array( 'posts_per_page' => get_option( 'posts_per_page' ), 'paged' => max( 1, get_query_var( 'paged' ) ) ); ?> <?php if( pinboard_get_option( 'blog_exclude_portfolio' ) ) : ?> <?php $args['cat'] = '26'; ?> <?php endif; ?> <?php global $wp_query, $wp_the_query; ?> <?php $wp_query = new WP_Query( $args ); ?> <?php if( $wp_query->have_posts() ) : ?> <div class="entries"> <?php while( $wp_query->have_posts() ) : $wp_query->the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> </div><!-- .entries --> <?php pinboard_posts_nav(); ?> <?php else : ?> <?php pinboard_404(); ?> <?php endif; ?> <?php wp_reset_postdata(); ?> <?php $wp_query = $wp_the_query; ?> </section><!-- #content --> <?php get_sidebar(); ?> <div class="clear"></div> </div><!-- #container --> <?php get_footer(); ?>
How do I now manage to use [showauto] with this template to be able to select different categories for different pages using this template?
Thans!