Mohammad Taqui Sayed
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Supernova] Still having mobile issues after 1.41That’s not a problem, Supernova is responsive and that’s how its supposed to do in phone and tablets. I think you want to show the same design in small screens as well correct?
Forum: Themes and Templates
In reply to: [Supernova] Still having mobile issues after 1.41what is the problem? Can I have link to your site please
Forum: Themes and Templates
In reply to: Supernova Slider1) Your Image size is 300 X 151 however they should be 700 X 300 px
2)So just add them in the posts and they will show up.
Also you have some plugin which is conflicting with the theme, and hence some things have stopped working. Please deactive plugins one by one to see which one is causing issue. (I see some fancybox error.)
Forum: Themes and Templates
In reply to: Supernova Slider1) First update to the latest version, I dont support the old versions of theme.
2) which image?Forum: Themes and Templates
In reply to: Supernova SliderI don’t know why its not showing all posts , if you wish you can leave your login information here http://supernovathemes.com/contact-me/ for me to have a look.
Forum: Themes and Templates
In reply to: Supernova SliderIts not limited to 23 , it shows all posts. Are you also expecting your pages? or do you have custom post types as well?
Forum: Themes and Templates
In reply to: [Supernova] Remove image about the postYes, (I hope you are using the latest version).
Go to Appearance>supernova options>general and paste this in ‘write custom css’.single .entry .supernova_thumb{display: none}and that’s it.
Forum: Themes and Templates
In reply to: [Supernova] Mobile versionYou wont find it from dashboard, use FTP or cpanel to view the theme folder go under supernova/js/main/main.js
If you are not a developer, you should not try this, because you may break something.Forum: Themes and Templates
In reply to: [Supernova] Mobile versionYou would have to remove couple more things from script.
open main.js file (uncompress it using jsbeautifier.org) and remove this scriptjQuery(document).ready(function (e) { var t = window.innerHeight + "px"; if (window.innerWidth < 980) { jQuery("#top_most, #nav_wrapper").css({ height: t }); jQuery("#top_most, #nav_wrapper ").css({ overflow: "auto" }) } else { jQuery("#top_most, #nav_wrapper").css({ overflow: "visible" }); jQuery("#top_most, #nav_wrapper").css({ height: "auto" }) } jQuery(".media_left").click(function () { jQuery("#header_navigation").animate({ width: "toggle" }) }); jQuery(".media_left_close").click(function () { jQuery("#header_navigation").animate({ width: "toggle" }) }); jQuery(".media_right").click(function () { jQuery("#nav_wrapper").animate({ width: "toggle" }) }); jQuery(".media_right_close").click(function () { jQuery("#nav_wrapper").animate({ width: "toggle" }) }) }); jQuery(window).on("resize", function (e) { if (window.innerWidth < 920) { var t = window.innerHeight + "px"; jQuery("#top_most, #nav_wrapper").css({ overflow: "auto" }); jQuery("#top_most, #nav_wrapper").css({ height: t }); jQuery("#title_wrapper").css({ "margin-top": "40px" }) } else { jQuery("#top_most, #nav_wrapper").css({ overflow: "visible" }); jQuery("#top_most, #nav_wrapper").css({ height: "auto" }); jQuery("#title_wrapper").css({ "margin-top": "10px" }) } })Forum: Themes and Templates
In reply to: [Supernova] Mobile versionIf you have a child theme , use this code in your functions.php file
add_action('wp_print_styles', 'supernova_deregister_mobile_styles' ); function supernova_deregister_mobile_styles(){ wp_deregister_style('supernova_mediaquery'); }Forum: Themes and Templates
In reply to: [Supernova] Menu, nav bar on mobile versionThanks, the latest version is approved however the theme admin is taking too long to make it live, probably he is not available, so I think it should be available by Monday but I m not sure. If you are currently running this theme I know it would affect your mobile visitor because the navigation goes away in small screens, so you can download the latest version from here http://wordpress.org/themes/supernova/developers/
‘current version’ 1.4.1Thanks
Forum: Themes and Templates
In reply to: [Supernova] Menu, nav bar on mobile versionI m aware of it, I have fixed and submitted the next version already, and it should be available any time for update.
Forum: Themes and Templates
In reply to: [Supernova] Slider width?Here you go.
.flexslider .slides img {width: 100%;height: 300px;}Forum: Hacks
In reply to: Counting post and displaying resultThere may be a better solution to it, this should give you definite result
<?php $cat_ids = array(6,25); function count_posts_by_category($cat_ids){ $count =0; $arg = array( 'posts_per_page' => -1, 'category__in'=>$cat_ids, 'post_status'=>'publish'); $the_query = new WP_Query( $arg); if ( $the_query->have_posts() ){ while ( $the_query->have_posts() ) { $the_query->the_post(); $count++; }} wp_reset_postdata(); return $count; } $total_count = count_posts_by_category($cat_ids); ?>That’s a common problem with custom post type. you should flush the permalink once.
Use this once after your functionflush_rewrite_rules();and then remove it.
Saving permalink settings from settings may also work.