kelsay
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Plugins
In reply to: [Image Rotator Widget] Stopped working with 4.0.1 updateSame problem here… just a spinning icon. 🙁
Forum: Plugins
In reply to: [WP Catalogue] templateColorforProductsOkay, figured this already 🙂
Was solved in Theme Settings.
Still funny that I could never find that variable ‘templateColorforProducts’ in the style.cssForum: Plugins
In reply to: [WP Catalogue] how to load images?I will look into this… thank you!
Forum: Plugins
In reply to: [WP Catalogue] Product name in product pageI found this out …
in singlewpcproduct.php look for this code
if(is_single()){ $pname = '>>'.get_the_title(); }just add the second line
if(is_single()){ $pname = '>>'.get_the_title(); $product_name = get_the_title(); }after this look for
<h4>Product Details <?php if($product_price): ?><span class="product-price">Price: <span><?php echo $product_price; ?></span></span><?php endif; ?></h4> <article class="post">and change it to
<h4><?php echo $product_name; ?> <?php if($product_price): ?><span class="product-price">Price: <span><?php echo $product_price; ?></span></span><?php endif; ?></h4> <article class="post">Forum: Plugins
In reply to: [Easy Related Posts] just next and previous?Still, your plugin looks great 🙂
Forum: Plugins
In reply to: [Easy Related Posts] just next and previous?yes, that is what I meant.. thanks for your reply.
Forum: Fixing WordPress
In reply to: Remove “Subscribe to our feed using RSS”OK, here goes;
Using a FTP client
in sidebar.php -> remove line
<?php include(TEMPLATEPATH . '/subscribe.php'); ?>Now, if you leave it like this the border (top) of the sidebar is still 1px but it looks as if it is thicker. So, to change this edit the template from within the dashboard. Search for..
#pp-sidebars { border-top: 1px solid #ccc; border-left: 1px solid #ccc; border-right: 1px solid #ccc;Change border-top to 0px
#pp-sidebars { border-top: 0px solid #ccc; border-left: 1px solid #ccc; border-right: 1px solid #ccc;
Viewing 7 replies - 1 through 7 (of 7 total)