Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Aha, that did the trick!

    Yeah it was just a raw install on a test WP set up.

    Glad to have been of assistance and thanks for the plug in, I like it alot.

    Cheers

    Just to let you know that I deleted from line 512:

    foreach ($fields as $field) {
    
    		$newfield = Array ('Title'  => $field['name'],
    		                   'ShowOn' => 'Both',
    		                   'QueryID'=> '$assoc_checkout["'.$field['name'].'"]["value"]');
    
    		$ses_wpscd_csv_fields_available[$field['name']] = $newfield;
    	}

    From the wp-ecommerce-csv.php file and now it works fine.

    What I might have affected here I’m not sure…

    Hey Lee,

    This is a nice plugin.

    However have been having some problems with the CSV Export (typically the thing I’m most interested in….)

    On clicking ‘Configure Fields’ the following appears:

    Warning: Invalid argument supplied for foreach() in /****/****/******/wp-content/plugins/wp-e-commerce-dashboard-widgets/wp-e-commerce-csv.php on line 512

    Obv the path has been starred on purpose….

    Then when clicking ‘Go’ the following appears:

    Warning: Invalid argument supplied for foreach() in /****/****/******/wp-content/plugins/wp-e-commerce-dashboard-widgets/wp-e-commerce-csv.php on line 512
    
    Warning: Cannot modify header information - headers already sent by (output started at /****/****/******/wp-content/plugins/wp-e-commerce-dashboard-widgets/wp-e-commerce-csv.php:512) in /****/****/******/wp-content/plugins/wp-e-commerce-dashboard-widgets/wp-e-commerce-csv.php on line 181
    
    Warning: Cannot modify header information - headers already sent by (output started at /****/****/******/wp-content/plugins/wp-e-commerce-dashboard-widgets/wp-e-commerce-csv.php:512) in /****/****/******/wp-content/plugins/wp-e-commerce-dashboard-widgets/wp-e-commerce-csv.php on line 182

    Was wondering if you know any reason for this happening?

    Thanks in advance.

    I’m having the same problem – looks like it won’t show the excerpt on single pages, as in the actual post page, in any category not just the parent category.
    The title and link remain but the excerpt content is missing and replaced by a break tag

    Very odd, anyone got any ideas?

    Thread Starter pensandpencils

    (@pensandpencils)

    Well I figure it out, if anyones interested and wants to knwo how to do it.

    I found the info in the classes.php which is really obvious when you think about it….on line 578

    I changed it to this:

    $output .= $indent . '<li class="' . $css_class . '"><a class="menu' . ($page->ID) . '" href="' . get_page_link($page->ID) . '" title="' . attribute_escape(apply_filters('the_title', $page->post_title)) . '">' . '<span>' . apply_filters('the_title', $page->post_title) . '</span></a>';

    So that the link has a span tag around it and the link itself has a dynamic class which relates to the specific page.

    Hopefully this will help someone in the future who really likes messing around with things….

    Thread Starter pensandpencils

    (@pensandpencils)

    That second bit came out odd it looks like this:

    <?php echo $before_widget; ?>
    			<?php echo $before_title . $title . $after_title; ?>
    			<ul>
    			<?php  while ($r->have_posts()) : $r->the_post(); ?>
    			<li><a class="<?php if ( the_ID() ); ?>" href="<?php the_permalink() ?>"><span><?php if ( get_the_title() ) the_title(); else the_ID(); ?></span> </a></li>
    			<?php endwhile; ?>
    			</ul>
    		<?php echo $after_widget; ?>
    Thread Starter pensandpencils

    (@pensandpencils)

    Thread Starter pensandpencils

    (@pensandpencils)

    I know bumping is bad, but just interested to know if anyone has an idea.

    Thanks

Viewing 8 replies - 1 through 8 (of 8 total)