Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • fotofio

    (@fotofio)

    Responsive images are a “must have” these days, thought your plugin was going to help, but cannot load an image to the widget, and cannot utilize the tinyMCE description box, also no selection for aspect ratio—all aspects of the same problem, I do believe… inadequate interface with WP; meaning, your plugin doesn’t work on my 3.5.1 install… Whatawhata!

    fotofio

    Continued from above::::
    I have a fresh install of WP3.2.1 w/no other plugins activated, and only the default installation of theme/page/post/comment.

    By the way, I have a sneaking suspicion that the error is more MySQL than PHP.

    Have tried various file encodings: unix/utf-8, unix/utf-8 no BOM, unix/ansi

    checked all before and after whitespace <?php ?>

    checked folder/file permissions

    Wrapped the activation hook in a conditional:::::
    if (is_admin()) {
    register_activation_hook(__FILE__,’avoslider_plugin_install’);
    }

    I’ve been developing a content slider for WP. Was working fine on 2.9.1, but when moved to current version of WP, it generates the same error message on activation –> The plugin generated 3 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.

    As stvwlf points out above, where the message does not persist (is a one-time error during activation only), and the plugin works as expected without generating any additional errors, it’s probably ok to let it go.

    However, I did wish to share a new plugin with the WP community. As it is, I must supply a laughable caveat, but morevover, such will not fly for the vast majority of potential users, including myself.

    There has to be a sensible way to discover the cause. More suggestions please….

    Thread Starter fotofio

    (@fotofio)

    What I find in the codex regarding templates, template hierarchy, and conditional tags is not that helpful; more confusion than not. For example, It seems to be suggested that if I create a version of single.php for my need and rename it single-9.php (9 is the category ID for the two related posts I am attempting to present without comment opportunity) Then based on the query string and the fact that there is a document called single with related category number, according to template hierachy, the linked blog entry and the designated “single” should find each other.

    Is there a parent->child relationship between the page that carries three or four blog entries and the “single” that presents one of them as a selected item?

    The Loop has me spinning!

    S.

    Thread Starter fotofio

    (@fotofio)

    Thanks buddy, that got it done. The permakink is a little funky, seems to point to a revision? Any guidance there?

    Thread Starter fotofio

    (@fotofio)

    Let me begin again. I created a template for articles.php presenting a selection of blog entries from the specific category “articles”. Articles.php, as a template does not present an opportunity for comments. However, when the visitor click as a title link, they are presented with a solitary post view, one title and its content, via single.php

    Within the WP loop, single.php is the presentation page. If I customize that, how do I link articles.php to customSingle.php for a solitary post view only from articles.php?

    Figaro, I thank you again.

    Thread Starter fotofio

    (@fotofio)

    Yes, I did figure that part out, but how to make that newly named template page be the one that goes into action when called. I do appreciate your help on that point.

    The issue is likely with the CSS governing the hover over ul #subnav li and making visible the appropriate ul li farther along.

    Thread Starter fotofio

    (@fotofio)

    <div class="sidebar_box2" id="articlesTab">	<div class="mores"><p><a href="<?php next_post_link('%link', '', TRUE); ?>">More &raquo;</a></p></div>	
    
    <ul>
    <?php query_posts('category_name=fp&showposts=2'); //$do_not_duplicate = $post->ID;
    			 if (have_posts()) : while (have_posts()) : the_post();
    			 //if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts);
    			 ?>
    
    	<li>
    		<a href="<?php echo get_permalink($postid); ?>" title="<?php echo $title ?>"><?php echo $title ?></a>
    
    		<p class="text"><?php the_excerpt(); ?></p>
    		</li>
    
     <?php endwhile; endif; ?>
    
    </div>
Viewing 9 replies - 1 through 9 (of 9 total)