yavarkhan
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] how to add cart icon in headcan so 1 help me to show this code in my .my-extra-widget
Forum: Plugins
In reply to: [WooCommerce] how to add cart icon in head<?php //* Do NOT include the opening php tag //* Make Font Awesome available add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' ); function enqueue_font_awesome() { wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css' ); } /** * Place a cart icon with number of items and total cost in the menu bar. * * Source: https://www.ads-software.com/plugins/woocommerce-menu-bar-cart/ */ add_filter('wp_nav_menu_items','sk_wcmenucart', 10, 2); function sk_wcmenucart($menu, $args) { // Check if WooCommerce is active and add a new item to a menu assigned to Primary Navigation Menu location if ( !in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) || 'primary' !== $args->theme_location ) return $menu; ob_start(); global $woocommerce; $viewing_cart = __('View your shopping cart', 'your-theme-slug'); $start_shopping = __('Start shopping', 'your-theme-slug'); $cart_url = $woocommerce->cart->get_cart_url(); $shop_page_url = get_permalink( woocommerce_get_page_id( 'shop' ) ); $cart_contents_count = $woocommerce->cart->cart_contents_count; $cart_contents = sprintf(_n('%d item', '%d items', $cart_contents_count, 'your-theme-slug'), $cart_contents_count); $cart_total = $woocommerce->cart->get_cart_total(); // Uncomment the line below to hide nav menu cart item when there are no items in the cart // if ( $cart_contents_count > 0 ) { if ($cart_contents_count == 0) { $menu_item = '<li class="right"><a class="wcmenucart-contents" href="'. $shop_page_url .'" title="'. $start_shopping .'">'; } else { $menu_item = '<li class="right"><a class="wcmenucart-contents" href="'. $cart_url .'" title="'. $viewing_cart .'">'; } $menu_item .= '<i class="fa fa-shopping-cart"></i> '; $menu_item .= $cart_contents.' - '. $cart_total; $menu_item .= '</a></li>'; // Uncomment the line below to hide nav menu cart item when there are no items in the cart // } echo $menu_item; $social = ob_get_clean(); return $menu . $social; }
Forum: Plugins
In reply to: [WooCommerce] cannot select the star ratingactually i couldn’t select the stars will writing the review and it was due to the theme which i was using i simply did the default layout in the theme
Forum: Plugins
In reply to: [WooCommerce] how to change color or pa_colorthanku
Forum: Plugins
In reply to: [Mini twitter feed] can we change the height and width in the shorcodeusing this code
width=500 height=300
thxForum: Plugins
In reply to: [WooCommerce] my related product comming blurrcheck if its correct
.woocommerce .related ul.products li.product, .woocommerce .related ul li.product, .woocommerce .upsells.products ul.products li.product, .woocommerce .upsells.products ul li.product, .woocommerce-page .related ul.products li.product, .woocommerce-page .related ul li.product, .woocommerce-page .upsells.products ul.products li.product, .woocommerce-page .upsells.products ul li.product { width: auto; max-width:100% !important; }
Forum: Plugins
In reply to: [WooCommerce] how to change color or pa_colorcould some 1 tell me its right
.label > label:nth-child(1) { color: black; }
Forum: Themes and Templates
In reply to: [Customizr] extra widget area pushing the logoposition: absolute;****
thanku ??Forum: Themes and Templates
In reply to: [Customizr] extra widget area pushing the logocause with the help of css i made my search bar to the top right corner
and yes search bar is the extra widget/* Move the extra widget area to the right of the page*/ .my-extra-widget { float: none; position: absolute; width: 100% z-index: 210; margin-left:830px; top: 40px; }
Forum: Themes and Templates
In reply to: [Customizr] extra widget area pushing the logocould u help me wid the snippet changes
// Adds a widget area. if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Extra Header Widget Area', 'id' => 'extra-widget-area', 'description' => 'Extra widget area after the header', 'before_widget' => '<div class="widget my-extra-widget">', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>' )); } // Place the widget area after the header add_action ('__before_header', 'add_my_widget_area', 0); function add_my_widget_area() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Header Widget Area'); } }
Forum: Themes and Templates
In reply to: [Customizr] extra widget area pushing the logothx
yes ?? thanku i tried a different approach
created a extra widget in function.php
/ Adds a widget area. if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Extra Header Widget Area', 'id' => 'extra-widget-area', 'description' => 'Extra widget area after the header', 'before_widget' => '<div class="widget my-extra-widget">', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>' )); } // Place the widget area after the header add_action ('__before_header', 'add_my_widget_area', 0); function add_my_widget_area() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Header Widget Area'); } }
and little style.css
/* Move the extra widget area to the right of the page*/ .my-extra-widget { float: none; position: absolute; width: 100% z-index: 210; margin-left:830px; top: 40px; }
guys could ull check my style.css cause im little worried abt my css cause this is the 1st time i did my css ??
seems i need to change the function.php and style.css
yes i would like my search form outside the menu
and should be besides my logo on the right side could you help me with the cssright now jst creating in local host
https://i59.tinypic.com/301d08j.jpg