This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media (min-width:960px) and (max-width:1500px){ | |
| .slicknav_menu { | |
| background: none repeat scroll 0 0 #4c4c4c; | |
| display: none; | |
| padding: 5px; | |
| } | |
| } | |
| /* #1- Portrait tablet to landscape and desktop */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.sequencejs.com/themes/modern-slide-in/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.php-login.net/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| i.fa { | |
| display: inline-block; | |
| -moz-border-radius: 60px; | |
| -webkit-border-radius: 60px; | |
| border-radius: 60px; | |
| -moz-box-shadow: 0px 0px 4px #94908f; | |
| -webkit-box-shadow: 0px 0px 4px #94908f; | |
| box-shadow: 0 0 4px #94908f; | |
| display: inline-block; | |
| margin-right: 6px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <section id="content"> | |
| <?php $image_gallery=new WP_Query( | |
| array( | |
| 'post_type'=>'zBoom_gallery', | |
| 'posts_per_page'=>20, | |
| )); ?> | |
| <div class="wrap-content zerogrid"> | |
| <div class="row block03"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| আমরা যারা WordPress theme এ Redux Framework নিয়ে কাজ করি তারা Redux এর নতুন version এ কিছু সমস্যায় পরি যেমন allow tracking এই নামে একটি popup open হয় theme option এ যাওয়ার পর এছাড়াও tools menu তে Redux About Page টি যুক্ত হয়ে যায় এবং কিছু Ads, Developer mode এ গুলো show করে। এ সমস্যা থেকে মুক্তি পেতে আপনাকে যা করতে হবেঃ | |
| Allow tracking option টি যদি আপনি না চান তাহলে | |
| Framework.php file এ গিয়ে লাইন নম্বর ৫৫১ তে disable_tracking => flase কে true করে দিন। অথবা লাইন নম্বরটি আপনার Redux Version এর ওপর নির্ভর করবে। | |
| Tools menu থেকে Redux About page টি সরাতে চাইলে আপনাকে যা করতে হবেঃ | |
| আপনার functions.php file টিতে একটি function apply করতে হবে। | |
| একটি function নিবেন যে কোন নামে যেমন | |
| function remove_redux_menu() { | |
| remove_submenu_page('tools.php','redux-about'); | |
| } | |
| add_action( 'admin_menu', 'remove_redux_menu',12 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.awwwards.com/ | |
| http://www.thefwa.com/ | |
| http://www.htmlinspiration.com/ | |
| http://www.admiretheweb.com/ | |
| http://www.unmatchedstyle.com/ | |
| http://www.siteinspire.com/ | |
| http://www.webdesign-inspiration.com/ | |
| http://www.styleboost.com/ | |
| http://www.makebetterwebsites.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Add a stylesheet after default style.css | |
| wp_enqueue_style( 'my-css', get_template_directory_uri() . 'my-css.css', array('themename-style')); | |
| //WooCommerce - Sort products by SKU | |
| add_filter('woocommerce_get_catalog_ordering_args', 'custom_woocommerce_catalog_orderby'); | |
| function custom_woocommerce_catalog_orderby( $args ) { | |
| $args['meta_key'] = '_sku'; | |
| $args['orderby'] = 'meta_value'; | |
| $args['order'] = 'asc'; | |
| return $args; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I have made the necessary changes for the code to work. Make sure woocommerce add-to-cart.js or add-to-cart.min.js is enqueued in the page. | |
| <div class="all_content_shop"> | |
| <?php wc_print_notices(); ?> | |
| <?php $new_posts = new WP_Query( array( | |
| 'post_type' => 'product', //post of page of my post type | |
| 'cat' => 0, // category id, 0 for all categories. | |
| 'posts_per_page' => 12, | |
| 'offset' => 0, //how many posts you want to eliminate from the query | |
| 'orderby' => '', // order by title or date ? |