For the cart check into Woocommerce it is free and works great.
You can add your own logo by editing your header.php file.
You should first create a child theme and then use that to make your changes. Either way you go what your looking for is this.
<div id="site-meta">
<h1 id="site-title">
<a href="<?php echo esc_url( home_url() ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</h1>
<p></p>
<h2 id="site-description"<?php echo $space_class; ?>>
<?php bloginfo( 'description' ); ?>
</h2><p></p>
<a href="#" id="more-site" class="btn btn-default btn-lg"><?php _e( 'See More', 'arcade' ); ?></a>
</div>
You will want to change it to something like this.
<div id="site-meta">
<h1 id="site-title">
<img src="http://yourwebsiteaddress.com/wp-content/uploads/logo2.png">
<!-- <a href="<?php echo esc_url( home_url() ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> -->
</h1>
<p></p>
<h2 id="site-description"<?php echo $space_class; ?>>
<?php bloginfo( 'description' ); ?>
</h2><p></p>
<a href="#" id="more-site" class="btn btn-default btn-lg"><?php _e( 'See More', 'arcade' ); ?></a>
</div>
Please notice the <!– –> around the 4th line.
This is fantastic, thank you so much!
jrl2222 — thanks so much for your response above; I’ve downloaded the Woocommerce plug-in, but it seems a little buggy with the Arcade theme.
Specifically, the images for the products are huge, and the display takes up the entire screen (there doesn’t seem to be any kind of border set up, so it just runs fully on the screen).
Additionally, I wasn’t sure if this should be directed to the Woocommerce support page or not, but a bunch of my menu buttons (like cart, checkout, my account) aren’t working, and just display the word “Shop” — the shop, in the meantime, is working.
Also, there is “Default Widget” text that I can’t seem to get rid of at the bottom of the page, which shows up on every page.
Finally, I was wondering if it is possible to keep the Jumbo Text, but then have the Shop items display below that — I haven’t been able to figure it out so far.
Thanks again for your help before jrl2222, and many thanks in advance to anyone who is able to help with the above issues.
I also started setting up Woocommerce with the Arcade Basic theme today, and it is a pain. You will need to add a lot of custom code to get it to work. I would suggest either finding another ecommerce plugin (which also may not work) or switching to another theme that is Woocommerce ready. Sorry if my above post wasted any of your time. I have used Woocommerce before but never with this theme and they really do not work well together.
Thanks again! I am so sad that Arcade doesn’t support Woocommerce (or another readily available shopping plug-in that I could find) — it is stylistically everything that I am looking forward, and would have happily paid for the upgrade if it was compatible with Woocommerce. Thanks again, and cheers!
Has anyone come up with the fix for this and even if it is difficult, please post it, perhaps we can take it a step further. I have tried both methods provided at the Third party / custom / non-WC theme compatibility document at docs.woothemes.com, and neither methods work.