elatedmonk
Forum Replies Created
-
Forum: Plugins
In reply to: [Cyclone Slider] More dots appearing than number of slidesI have the same problem and haven’t been able to figure it out.
Forum: Plugins
In reply to: [Cyclone Slider] Feature Suggestions ThreadCustom image cropping. So we can choose what part of the image is cropped in the resize options. (Probably a pro option.)
Forum: Plugins
In reply to: [Easy Modal] Sitewide vs. Page & ButtonsI updated it, changed it off of sitewide and selected the modal from the editor on the page.
It no longer brings up the modal.
Forum: Plugins
In reply to: [Easy Modal] Sitewide vs. Page & ButtonsStrange on the x, in all three browsers with multiple resolutions is comes up near the bottom, or slightly out of the circle.
As for the link, yes you get a working modal because I have sitewide enabled. I would rather it be page specific then sitewide.
I can change it over and it will no longer be functioning.
Forum: Plugins
In reply to: [Easy Modal] Sitewide vs. Page & ButtonsYeah I realized shortly after I posted that I can use multiple classes, just wasn’t thinking right.
On the sitewide vs. local issue here is the link:
http://courtneyact.com/modal-testing/
I’ve also realized that when you have the close outside of the modal, the ‘X’ doesn’t center. Is this normal, or something else going on?
Thanks!
Forum: Plugins
In reply to: [NextGEN Public Uploader] Style & ErrorsI did. I came up with another solution to what I was trying to accomplish. Ended up writing a custom script that will handle image uploading to the server without the need of all of nextgen.
If you need it again to do your own debugging for development I can put it back for you though.
Thanks!
Forum: Plugins
In reply to: [NextGEN Public Uploader] Style & ErrorsBetter yet you can try it out yourself: http://bit.ly/LzoRYO
The only thing I have done is installed 1.9.13 of NextGen and 1.8.1 of Public uploader.
On the test page I have uploaded one photo so you see the gallery, and have both the widget and the shortcode on the page up.
Feel free to upload any image and see the results. Also I noticed that it bypasses the watermarking that is usually added when uploading images to NextGen is that supposed to happen as well?
Thanks
Forum: Plugins
In reply to: [NextGEN Public Uploader] Style & Errors1.8.1 – The latest
Forum: Fixing WordPress
In reply to: Remove Featured Image from Post TemplateI ended up making a post template named: template-news-posts.php
Then using this code:
<?php /* Template Name: Blog list - News */ ?> <?php get_header(); ?> <div class="contents-wrap float-left two-column"> <?php if ( get_query_var('paged') ) { $paged = get_query_var('paged'); } elseif ( get_query_var('page') ) { $paged = get_query_var('page'); } else { $paged = 1; } $args = array( 'paged='.$paged, 'showposts' => '', 'posts_per_page' => '', 'tax_query' => array( array( 'taxonomy' => 'post_format', 'field' => 'slug', 'terms' => array('post-format-news') ) ) ); query_posts( $args ); ?> <div class="entry-content-wrapper"> <h1 class="entry-title"><?php the_title(); ?></h1> <?php get_template_part( 'loop', 'blog' ); ?> </div> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>I created the template to be selected in the post form. I then added a file in my includes/postfomats called news.php
<div class="entry-post-wrapper"> <?php get_template_part( 'includes/postformats/post-contents' ); get_template_part( 'includes/postformats/post-data' ); ?> </div>With that I never called for the featured image and so it’s not displayed on page. Only the contents and data for the page, fitting into the page format already.
Thanks for the codex comment, it walked me through removal for post specific templates.