Forum Replies Created

Viewing 1 replies (of 1 total)
  • Zirex

    (@zirex)

    Hello
    There is bug in

    <?php if (wpsc_have_custom_meta()) : ?>
    						<div class="custom_meta">
    							<?php while ( wpsc_have_custom_meta() ) : wpsc_the_custom_meta(); ?>
    								<?php if (stripos(wpsc_custom_meta_name(),'g:') !== FALSE || (stripos(wpsc_custom_meta_name(),'bwps') !== FALSE)) continue; ?>
    								<strong><?php echo wpsc_custom_meta_name(); ?>: </strong><?php echo wpsc_custom_meta_value(); ?><br />
    							<?php endwhile; ?>
    						</div><!--close custom_meta-->
                            <?php endif; ?>

    bwps_enable_ssl: is written in
    <?php echo wpsc_custom_meta_name(); ?>: <?php echo wpsc_custom_meta_value(); ?>
    I don’t know a php, but I decided just to remove it and that’s way it disappears from website
    In my case this code was in wpsc-single_product.php
    Here’s my code

    <?php if (wpsc_have_custom_meta()) : ?>
    						 <div class="custom_meta">
    							<?php while ( wpsc_have_custom_meta() ) : wpsc_the_custom_meta(); ?>
    								<?php if (stripos(wpsc_custom_meta_name(),'g:') !== FALSE) continue; ?>
    
    							<?php endwhile; ?>
    						</div><!--close custom_meta-->
                            <?php endif; ?>

Viewing 1 replies (of 1 total)