Woocommerce 2.02


Author Message
Barbara

Posted: 3/7/2013
Quote message 

Woocommerce won't send out order emails when using an Artisteer theme. I've tested with TwentyEleven, and there are no problems, so it's an Artisteer issue. I've created the woocommerce.php page as instructed on their site, but it doesn't fix the problem.

Anyone have any ideas for a fix?
 
Nick

Posted: 3/7/2013
Quote message 

Hi Barbara,

I just checked Woo. 2.0.2, with Artieteer made themes, and with templateer made themes.

In all cases the emails were sent out without any problems.

I did not follow their directions to create the woocommerce.php file. This is the content of my custom file:

---------------------------------------------------------------------

<?php get_header(); ?>
<?php get_sidebar('top'); ?>
<div class="art-box art-post page">
<div class="art-box-body art-post-body">
<div class="art-post-inner art-article">
<?php woocommerce_content(); ?>
</div>
</div>
</div>
<div class="cleared"></div>

<?php get_sidebar('bottom'); ?>
<?php get_footer(); ?>

--------------------------------------------------

Now the only thing left is to go in the theme's style.css file and disable some of the button styles, since they interfere with woocommerce's button styles.

As Woocommerce is quickly becoming the de facto e-commerce solution for WordPress, hell I gave up OpenCart for it, Artisteer should make their themes compatible to them - it's not hard to comply to their standards - perhaps a wishlist for Art. 4.2?
 
Barbara

Posted: 3/7/2013
Quote message 

Hi NIck,

I just checked your woocommerce.php code against my css, and many of those classes are not listed. What version of artisteer generated that code?
 
Nick

Posted: 3/8/2013
Quote message 

In #1 I meant "Place the woocommerce.php in my theme folder".

I meant to say "folder", and not "template"...
 
Ilja

Posted: 4/11/2013
Quote message 

Quote Nick:

When I first created that php file, I believe it was from Art. 4.0, final, or the early version of 4.1 (beta, RC erc...).

No matter what though, it works perfectly with Artisteer 4.1 Final.

This is what I do, again.

1. Place the woocommerce.php in my theme template.
2. Open my themes style.css file and disable the button styles, and let woocommerce take over the styling, because they conflict and I don't know how to fix it. I assign the button colors from the woocommerce settings secreen.

That's it. Artisteer 4.1 with/witout templateer 4.1, + WP 3.5.1 + Woocommerce 2.0.2 work perfectly with each other.


This works fine for single product pages and all woo-related pages except product categories and subcategories in my project. How can this be possible, would Nick have an idea?

I have artisteer4+templateer generated theme and I have used whole week trying to figure this out but my skills in php are so limited that I can not find what's wrong...
 
Moon

Posted: 7/16/2013
Quote message 

Dear Nick,

Thanks for your post about woocommerce and artisteer.

I am new for woocommerce and now trying to prepare an artisteer theme for woocommerce 2.0.12.

As your information, I should:

1. Place the woocommerce.php in my theme folder.
2. Open my themes style.css file and disable the button styles, and let woocommerce take over the styling, because they conflict and I don't know how to fix it. I assign the button colors from the woocommerce settings secreen.

Would you please let me know how to disable the button styles and let woocommerce take over the styling?

Also how to assign the button colors from the woocommerce setting screen?

Thanks. :-)
 
moon

Posted: 7/16/2013
Quote message 

Dear Nick,

Many thanks for your prompt reply and introduction of the Microthemer.

Regarding the Microthemer, I am interested if it can help.

Would you please share your experiences about Microthemer with me?

Is it easy to use and stable (bug free) ?

Is it any email support and documentation?

Besides, can I remove this plugin after amending the theme (because I do not want to leave this plugin to my client to amend the theme by herself) ?

Regarding your mentioned blank woocommerce plugin as well as an empty theme for Artisteer, would you please explain to me what they are (because I am new)?

Best Rgds
Moon






 
moon

Posted: 7/17/2013
Quote message 

[url=http://postimage.org/image/4jdj8vgnd/][/url]


[url=http://postimage.org/image/lxxrh5ds9/][/url]

 
Nick

Posted: 7/17/2013
Quote message 

Try naming your custom menu without any spaces.

So try changing "S Hmenu" to "SHMENU", and see what happens. If that does not work, disable all the plugins except woocommerce, to try to determine if a plugin is disabling the menu.
 
Nick

Posted: 7/17/2013
Quote message 

I already tried renaming the menu without spaces, and that is not the cause. However this is a Web Design 101 concept. anything you name, do not include spaces or special characters. Instead of spaces, use "_".

Now, the problem has to do with a plugin conflict. If you still can't get it to work, put your artx file online so I can pick it up and have a look at it.
 
moon

Posted: 7/18/2013
Quote message 

@ Nick,

Thank you for your helping.

I tried renaming the menu without spaces and disable all the plugins except woocommerce, but it still not work. So, I deleted the artisteer theme and upload another new artisteer theme with contents, this time it can work.

Now, I found in the wordpress backend, it shown:

" Your theme does not declare WooCommerce support - if you encounter layout issues please read our integration guide or choose a WooCommerce theme:) "

http://postimg.org/image/5r9uk20ax/


Would you please teach me how to remove it.
 
moon

Posted: 7/21/2013
Quote message 

Dear Nick,

Thank for your help. :-)
 
PHdJ

Posted: 3/7/2016
Quote message 

Could not find the line
add_action('wp', 'theme_init_layout');


So I placed
add_action( 'after_setup_theme', 'woocommerce_support' );

function woocommerce_support() {
add_theme_support( 'woocommerce' );
}


in functions.php, right before the line:
add_action('wp_head', 'theme_favicon');


Works with me :-)

p.s. WordPress version 4.4.2 and WooCommerce version 2.5.3