jrl2222
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Arcade Basic] Shopping Cart Title EditI 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.
Forum: Themes and Templates
In reply to: [Arcade Basic] Remove site title & descriptionYou actually can do this by adding that code to the header.php file. Adding it to page.php did nothing for me.
Look for <h1 id=”site-title”> and change the code like this.<h1 id="site-title"> <?php if ( is_front_page() ) { ?> <a href="<?php echo esc_url( home_url() ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> <?php } else { ?> <?php } ?>
Forum: Themes and Templates
In reply to: [Arcade Basic] Change icon to logoI just responded to another member with the same question so I will add the same response here.
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="https://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.
Forum: Themes and Templates
In reply to: [Arcade Basic] header imageI am not sure what version you are using but when you create or edit a page you should have a big preview of the header image being used. There you can change each pages header image to a different image. If you do not see the option to change the header image look at the top of your screen on the right for Screen Options, click that and you will see a bunch of check boxes. Check the one for Custom Header Image.
Forum: Themes and Templates
In reply to: [Arcade Basic] Shopping Cart Title EditFor 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="https://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.