onepack
Forum Replies Created
-
I have two modules activated that jetpack can replace but I have no way to test this. It’s not an option to do this on a busy site so offline testing is mandatory. Now I can only use it for the stats.
Forum: Plugins
In reply to: [Quick Chat] [Plugin: Quick Chat] Nicknames instead of UsernamesIt is the same concern that I had in my previous case here. There are a lot of attacks on the website by people trying to login under the username “Admin”. Giving away the real username is like giving your bankcard without the pincode.
Admins and other editors should always be shown by their nickname and never by their username. Those people are the owners of the website and can make sure to only use a unique name. Also the nicknamens of Admins and editors should be protected by default so no others could use those names.Hi There!
Thanks, yeah, it works!
I also changed around the line on 350 that also works with the ajaxurl.Another solution was that I forced the page into https but this is more simple and works.
Same solutions as wp-polls.
Greetings!
When I use https:// on the chat page the chat will load. Can this be changed or is it mandatory since the backend is behind SSL?
wp-polls is working on the frontpage without https and is also accessing the ajax file.
What is the difference?
Thanks in advance for your reply!
I installed the latest version again but the weird thing is that in IE 9 every vote will result in a reload of the whole frontpage where the poll results should appear. Chrome is also broken after voting. It will show a big blank screen. Only Firefox seems to work now.
Hi Lester, Sorry for my late response, I just was too busy. I will check if it works with twentyeleven today and post my results here.
I rolled back to the 2.5 version to make it work again in wordpress 3.3.2
Same here
@mitcho Sorry, I realized that as well and started it yesterday:
https://www.ads-software.com/support/topic/plugin-yet-another-related-posts-plugin-custom-post-types-not-showing-in-yarpp-351?replies=1I’have the option set in the yarpp settings to display related post types and I call the plugin directly from within my “single” template with: related_posts();
Still nothing shows…
Permalinks and Yarpp have been saved again and cache is cleared.
Yarpp version 3.5.1
WP 3.3.1My idea in single.php to show related content in custom post types because in my case the custom post types are like a sort category/ topic and are kinda related. Not as good as YARPP but it’s a temporary fix for me.
<?php $myposttype = get_post_type( $post->ID ); if ($myposttype == post){ related_posts(); }else{ $the_query = new WP_Query('post_type='.$myposttype.'&post_status=published&posts_per_page=7&orderby=post_date&order=desc'); if ($the_query->have_posts()) { ?> <ol> <?php while ($the_query->have_posts()) : $the_query->the_post(); ?> <li><a href="<?php the_permalink(); ?>" rel="nofollow"><?php the_title(); ?></a></li> <?php endwhile; ?> </ol> <?php } } ?>
I don’t want to stop using this great plugin but I have about 8 custom post types and the reserved square for Yarpp is scary empty on all of these. ??
Any update?
Forum: Plugins
In reply to: [WP-EMail] [Plugin: WP-EMail] Cron errorSame here! Did you find a solution?
Forum: Plugins
In reply to: [Satollo.net Newsletter] Subscription confirm url doesn't workSame here. Looking into it.
Forum: Fixing WordPress
In reply to: Does Paging work on Custom Post Type Archives?It seems like a bug to me because I and many others cannot get this to work on a custom post type archive.