Home Forums Pro Themes Clean Commerce Pro Few Issues Color Change / Social Media menu – no Twiter / Shopping Chart Bar men

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #72167
    Aleksandr Gordejev
    Participant

    I do have few simple questions arrise:
    №1 How to place information bar ( Shopping Cart/$0.00) on the top of the theme?
    I have placed Register/Login but can’t find Shopping Cart

    №2 Color options in settings does not working.
    №3 No Twitter button in social media menu.

    Can you please support or can you provide a direct email of the team who can help?

    Kind Regards,

    Aleks

    #72194
    wensolutions
    Keymaster

    Hello @tsurugico,

    First of all thank you very much for using the pro version of the theme.

    Now please find the response to your query below:

    №1 How to place information bar ( Shopping Cart/$0.00) on the top of the theme?
    I have placed Register/Login but can’t find Shopping Cart

    Response: After the activation of the required WooCommerce plugin, you will find the cart icon on the header as mentioned in below given screenshot:
    https://prnt.sc/jky5f6

    №2 Color options in settings does not working.

    Response: Can you please mention which color option is not working so that we can provide you with some fixes?

    №3 No Twitter button in social media menu.

    Response: To make the twitter appear in the social menu at the header section you need to add the custom links of the twitter in the social menu.

    For this go to Admin Panel > Appearance > Menus and select the social menu and add the custom link of twitter.

    http://prntscr.com/jkybk9

    Hope this helps.

    If you have any issues further then please let us know.

    Thank you.

    Best Regards!!

    #72229
    Aleksandr Gordejev
    Participant

    Dear Sir/Madam,
    Thank you for your promt reply,
    When I bought this theme I did not realize it is only to WooCommerce.
    We are using Ecwid for our store.
    I do really appreciate if you could help me to make N1 of my question work on Ecwid.
    N2 All colors does not work, but I believe its again because of Ecwid.
    N3 we have tried to do so, but does not support by Ecwid I believe.
    Is any chance it might work with Ecwid ? We do like your theme and would like to use it in the future.
    Regards
    Tsurugi Inc

    #72282
    wensolutions
    Keymaster

    Hello @tsurugico,

    We would like to apologize for the trouble but as you have mentioned the theme is made compatible with the WooCommerce and works with the plugin.

    But we have not done any sorts of testing with the plugin you have mentioned so we are currently in no position to provide the fix.

    We will test the compatibility and let you know as soon as come with the solution.

    Hoping for your co-operations.

    Thank you.

    #73004
    Aleksandr Gordejev
    Participant

    Thank you for your answer , Is any possibilities we can put any buttoms in to this space provided? We would like to put Shopping Cart there.
    Can you please help to sort this out for us.
    Thank you

    #73010
    wensolutions
    Keymaster

    Hello @tsurugico,

    If you really wish to get the Ecwid’s card icon in the section, you can achieve the request via child theme approach.

    To know more about the child themes in WordPress, please check the link here :
    https://codex.wordpress.org/Child_Themes

    You can also automate the child theme creation with the child theme generator plugin like :

    https://wordpress.org/plugins/wp-child-theme-generator/

    After creating and activating your child theme, please add the following code in your child theme’s functions.php file :

    /**
     * Site branding.
     *
     * @since 1.0.0
     */
    function clean_commerce_site_branding() {
    
    	?>
    		<div class="site-branding">
    
    		<?php clean_commerce_the_custom_logo(); ?>
    
    		<?php $show_title = clean_commerce_get_option( 'show_title' ); ?>
    		<?php $show_tagline = clean_commerce_get_option( 'show_tagline' ); ?>
    		<?php if ( true === $show_title || true === $show_tagline ) :  ?>
    			<div id="site-identity">
    				<?php if ( true === $show_title ) : ?>
    					<?php if ( is_front_page() && is_home() ) : ?>
    						<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
    					<?php else : ?>
    						<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
    					<?php endif; ?>
    				<?php endif; ?>
    				<?php if ( true === $show_tagline ) : ?>
    					<p class="site-description"><?php bloginfo( 'description' ); ?></p>
    				<?php endif; ?>
    			</div><!-- #site-identity -->
    		<?php endif; ?>
    		</div><!-- .site-branding -->
    		<div id="right-header">
    			<?php if ( has_nav_menu( 'header' ) ) : ?>
    				<?php
    				wp_nav_menu( array(
    				'theme_location' => 'header',
    				'container'      => 'nav',
    				'container_id'   => 'header-nav',
    				'depth'          => 1,
    				) );
    				?>
    			<?php endif; ?>
    
    		<?php if ( class_exists( 'Ecwid_Store_Page' ) ) : 
    			
    			if ( Ecwid_Store_Page::is_store_page() ) {
    				$cart_url = '#!/~/cart';
    			} else {
    				$cart_url = Ecwid_Store_Page::get_cart_url();
    			}
    	
    			echo '<!-- noptimize -->';
    			echo ecwid_get_scriptjs_code();
    			
    			?>
    				<div id="cart-section">
    				<div class="ecwid-float-icons position-$position" ondragstart="return false">
    				<div class="ecwid-cart-icon off">
    					<a href="<?php echo esc_url( $cart_url ); ?>" data-ecwid-page="cart" data-count="0">
    						<div id="ecwid-cart"><script type="text/javascript"> xMinicart("style=","id=ecwid-cart"); </script></div>
    					</a>
    				</div>
    				</div>
    				<script type="text/javascript">
    					if (window.EcwidFloatingShoppingCart) {
    						var ecwid_floating_shopping_cart = new EcwidFloatingShoppingCart();
    						ecwid_floating_shopping_cart.init();
    					}
    				</script>
    				<style type="text/css">
    				
    					html#ecwid_html body#ecwid_body div.ecwid-minicart {
    						width: 100px;
    						height: 100px;
    					}
    					html#ecwid_html body#ecwid_body div.ecwid-minicart-counter {
    						left: 33px;
    						top: 29px;
    						width: 34px;
    						font-size: 16px;
    						line-height: 23px;
    					}
    					html#ecwid_html body#ecwid_body div.ecwid-minicart-clickArea {
    						top: 10px;
    						left: 29px;
    						width: 45px;
    						height: 50px;
    					}
    
    					html#ecwid_html body#ecwid_body div.ecwid-minicart-link {
    						top: 55px;
    						width: 100%;
    					}
    					html#ecwid_html body#ecwid_body div.ecwid-minicart-caption {
    						left: 0;
    						top: 60px;
    						width: 100%;
    						font-size: 12px;
    					}
    				</style>
    				</div> <!-- .cart-section -->
    			<?php endif; ?>
    		</div> <!-- #right-header -->
    
    	<?php
    }

    This will add the Ecwid shopping bag icon in the header area replacing the default shopping cart from woocommerce.

    If you have any issues/confusions or queries further, please feel free to write your queries here.

    Best Regards !!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.