• Hi,

    First, all my WordPress, Better WodPress Security plugin and WordPress e-Commerce plugin are up to date.

    Now the bug :

    On the administration product page edition, into the personalized Meta Tags, the Name field is already populated with the following string : bwps_enable_ssl

    See screen capture here.

    If I forget to remove this string, the product page displays it like that :

    See screen capture here.

    Also, the bug’s string re-appears in the meta tag Name’s field every once I edit a product within Admin.

    So my question is : how can I make the BWPS plugin not buggin on the Admin Product Page ? I’ve heard that it could be a “same variable name” shared between both plugins.

    Any hints are warmly welcome.

    P.S: the bug is displayed on other weebsite I don’t own, showing it’s not my particular WP installation that is buggy : click here for Google search results

Viewing 4 replies - 1 through 4 (of 4 total)
  • Any resolution to this? I’m having the same issue…

    Rick

    I have the same issue.
    Solutions?

    @montymetzger: As per the Forum Welcome, please post your own topic.

    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 4 replies - 1 through 4 (of 4 total)

The topic ‘[Plugin : BWPS E-Commerce] bug: strange meta tag’ is closed to new replies.