csloisel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Media Library Attributes in the WP Database?Unless you are using a plugin, there are no media fields for css classes.
Forum: Fixing WordPress
In reply to: Blog posts link to 'Not Found' when openedSince you have a paid theme I suggest contacting the developers for support:
http://www.elegantthemes.com/contact.htmlForum: Fixing WordPress
In reply to: Urgent Help With Syntax ErrorIf you remove the
<?phpat the top it might work, you can’t have raw html inside a php tag. If you want your html converted to a WordPress theme I would recommending hiring a developer, or start reading about theme development: http://codex.ww.wp.xz.cn/Theme_DevelopmentForum: Fixing WordPress
In reply to: PHP Count<?php /** * Email Order Items * * @author WooThemes * @package WooCommerce/Templates/Emails * @version 2.1.2 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } $sira = 0; foreach ( $items as $item_id => $item ) : $_product = apply_filters( 'woocommerce_order_item_product', $order->get_product_from_item( $item ), $item ); $item_meta = new WC_Order_Item_Meta( $item['item_meta'], $_product ); ?> <tr> <td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"> <?php echo ++$sira; ?> </td> <td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $item['qty'] ;?></td> <td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"> <?php echo $_product->list_attributes(); ?> </td> <td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"> <?php echo ' #' . $_product->id . ''; ?> </td> <td style="text-align:left; vertical-align:middle; border: 1px solid #eee; word-wrap:break-word;"><?php // Product name echo apply_filters( 'woocommerce_order_item_name', $item['name'], $item ); ?> </td> <td class="product-price"> <?php echo apply_filters( 'woocommerce_cart_item_price', WC()->cart->get_product_price( $_product ), $cart_item, $cart_item_key ); ?> </td> <td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"><?php echo $order->get_formatted_line_subtotal( $item ); ?></td> </tr>Forum: Fixing WordPress
In reply to: Front page displays will not show theme pages.What option are you looking for? That looks about right to me.
Forum: Fixing WordPress
In reply to: PHP CountIt would help to see more of the code, I can’t really tell how you are building the table.
Forum: Fixing WordPress
In reply to: Want to Remove the Uncategorized Option from CategoriesAfter changing the default you should be able to delete it, however you cannot have no default category, WordPress needs each post to have at least 1 category to work properly.
Forum: Fixing WordPress
In reply to: Front page displays will not show theme pages.You have to create new pages and select the template you want from the theme. Then select one of the pages as the front page/blog page.
Forum: Fixing WordPress
In reply to: Can't login to my new WordPress site after moving from WordPress.comDid you do everything here?
Forum: Fixing WordPress
In reply to: Want to Remove the Uncategorized Option from CategoriesGo to settings->writing and change the default category, and you should be able to.
Forum: Fixing WordPress
In reply to: PHP CountTry this,
Put this before your table:
$sira = 0;Then in your table cell use:
<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;"> <?php echo ++$sira; ?> </td>Forum: Fixing WordPress
In reply to: The Light box feature stopped working on my siteThe problem is, it isn’t really a WordPress feature, and I can’t really figure out what is going on without seeing the theme code. Unfortunately that isn’t possible without paying for the theme.
Forum: Fixing WordPress
In reply to: The Light box feature stopped working on my siteI just realized you have a premium theme, you should try contact the theme developers for support.
Forum: Fixing WordPress
In reply to: The Light box feature stopped working on my siteWhen inserting images make sure the “Link to” setting under the attachment display settings is set to media file and not the attachment page.
Forum: Fixing WordPress
In reply to: Duplicate Site Title in Search Engine ResultsAny changes won’t immediately show up in a search engine, you have to wait to have your site re-indexed.