Myrick75
Forum Replies Created
-
Forum: Themes and Templates
In reply to: U-Design theme. removing Featured Image from single postGot it…
Post Image in Single Post View <– I needed to unselect this option.
HurrrDurrForum: Plugins
In reply to: [WooCommerce] Udesign and Woocommerce integration issuesI am seeing the same problem that bear101 described earlier.
Here is my page https://fairoaksrattlers.net/shop/Here is my woocommerece.php page
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
<?php /** * @package WordPress * @subpackage U-Design */ get_header(); $content_position = ( $udesign_options['pages_sidebar'] == 'left' ) ? 'grid_16 push_8' : 'grid_16'; ?> <div id="content-container" class="container_24"> <div id="main-content" class="<?php echo $content_position; ?>"> <div class="main-content-padding"> <?php do_action('udesign_above_page_content'); ?> <div class="woocommerce"> <?php woocommerce_content(); ?> </div> <div class="clear"></div> <?php edit_post_link(esc_html__('Edit this entry.', 'udesign'), '<p class="editLink">', '</p>'); ?> </div><!-- end main-content-padding --> </div><!-- end main-content --> <?php get_sidebar(); ?> </div><!-- end content-container --> <div class="clear"></div> <?php
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 2.0.1 default style?Forum: Plugins
In reply to: [WooCommerce] Woocommerce 2.0.1 default style?I tried the fix liviwest suggested but I still can’t get my page to work. I am thinking that my problem is with the formatting of the php code. This what I have in my woocommerce.php file. I am using u-design v2.00
<div id=”content-container” class=”container_24″>
<div id=”main-content” class=”<?php echo $content_position; ?>”>
<div class=”main-content-padding”>
<?php do_action(‘udesign_above_page_content’); ?>
<div class=”woocommerce”>
<?php woocommerce_content(); ?>
</div>
<div class=”clear”></div>
<?php edit_post_link(esc_html__(‘Edit this entry.’, ‘udesign’), ‘<p class=”editLink”>’, ‘</p>’); ?>
</div><!– end main-content-padding –>
</div><!– end main-content –><?php get_sidebar(); ?>
</div><!– end content-container –><div class=”clear”></div>
<?php