bircha
Forum Replies Created
-
Hi,
The issue occurs also when the widget is used in the normal footer areas.
This is how I use the widget:
In functions.php I’ll register the sidebar e.g.
<?php register_sidebar( array( 'name' => __( 'Frontpage Content Area', 'twentyeleven' ), 'id' => 'sidebar-7', 'description' => __( 'An optional widget area for your site content', 'twentyeleven' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); ?>An then in the content area I’ll insert the sidebar like this
<!-- Sidebar 7 --> <?php if ( is_active_sidebar( 'sidebar-7' ) ) : ?> <div class="content-widget-area"> <?php dynamic_sidebar( 'sidebar-7' ); ?> </div> <?php endif; ?>Hi,
I have the latest version of WP, WP e-Commerce and the Featured Product plugin that are available through WP. I am also using the “Allow PHP in Content” plugin as I have registered the widget area within the content area of the page.
The error does not occur when the widget shows specific products.
I’ve specified that the widget shows the images in 300x300px size which is also the native size of the featured product images.
Forum: Plugins
In reply to: WP ecommerce product category title also shows as first product titleLesson number one: Don’t try to fix anything with tired eyes and mind 🙂
After a revisit to here http://gasolicious.com/commerce-product-category-pages/ I managed to fix the issue for Twenty Eleven with the following:
In content-page.php replace the following code:
<h1 class=”entry-title”><?php if ( ! is_front_page() ) { the_title(); } ?></h1>
with this one:
<h1 class=”entry-title”>
<?php
if (‘wpsc-product’ == get_post_type() && !is_single())
{
$category_name= wpsc_category_name();
echo $category_name;
}
else { the_title(); }
?>
</h1>Forum: Plugins
In reply to: WP ecommerce product category title also shows as first product titleI filed a bug report about this: http://code.google.com/p/wp-e-commerce/issues/detail?id=1159
If you are certain how to reproduce the issue, please let the developers know by making a comment in Google Code. This way it is more probable that the bug will get a proper fix someday.
Forum: Plugins
In reply to: WP ecommerce product category title also shows as first product titleOr does anyone have any ideas how to fix this issue?
Forum: Plugins
In reply to: WP ecommerce product category title also shows as first product titleHi I am using WP 3.4.1 (Twenty Eleven theme) and WP e-Commerce 3.8.8.5 and the category title on the single category page is getting replaced with the title of the last (alphabetically) product in that category. I’ve tried what has been suggested above but I didn’t manage to fix the issue.
Someone claimed that this bug has something to do with how you post your product images / thumbnails into the product page. When I created a new product with exactly the same way as others before it, the category title was printed out as supposed (instead the product name).
So there is a difference between these two types of products that I’ve managed to create and I believe I could modify my old products in the database to be the same way as the new one but do you have any suggestions where to start looking from?
Forum: Fixing WordPress
In reply to: Media library file names are corruptedHere is a screenshot: http://www.tiikoni.com/tis/view/?id=15c6ca2
I removed the duplicate entries from the media library so that is the only image I have…
And sorry for the bad post title as it really isn’t a good description what is going on…
The author of the Slug plugin suggests that WP 3+ users should wait for the qTranslate version 3, which implements the slug translation natively. See comments in here http://www.3dolab.net/en/qtranslateslug-plugin-widget
Same problem here e.g.
http://domain.com/products/ does not translate to different languages thus the slug remains the same e.g. http://domain.com/sv/products/The fields for localizing the slug appear in the user interface, but they seem to do ‘nothing’.
I haven’t tried it with post though, only with pages…
I am running WP 3.2, qTranslate 2.5.23 and qTranslate Slug 0.4