Mohammad Taqui Sayed
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Supernova] Ipad menu view not showingSince Supernova is responsive , the menus do show in ipad but in a mobile friendly way. If you want to turn off responsiveness you can do it from Supernova Options > Layout.
Forum: Themes and Templates
In reply to: [Supernova] Slider Image LinkingNo the theme doesn’t have that option by default.
Forum: Themes and Templates
In reply to: [Supernova] About authorThough it should work however if its not working in your case you can use
this css#authorarea{ display:none; }Paste this in Apearance > Styles custom css box.
Forum: Themes and Templates
In reply to: [Supernova] PostsThat comes under theme customization.
Forum: Themes and Templates
In reply to: [Supernova] Picture size in postwhich picture?
Forum: Themes and Templates
In reply to: [Supernova] Limit PostsIts not a problem. Go to Settings > Reading and change ‘Blog pages show at most’ number.
Go to Appearance > Supernova Options > Advanced > post settings , it has the option to change the number of text.
Forum: Themes and Templates
In reply to: [Supernova] Change text on "more" linkFor the record
the <!–more–> works only when you show the_content() and not the_excerpt()
Paste this in your functions.php file and change the ‘MORE TEXT’ text to whatever you want.
function supernova_content(){ global $supernova_options; if(isset($supernova_options['full-content']) && $supernova_options['full-content'] == 2){ the_content(__('MORE TEXT')); }else{ the_excerpt(); } }MAKE SURE YOU HAVE SUPERNOVA VERSION 1.5.3 OR ABOVE OR ELSE IT WILL GIVE FATAL ERROR.
It’s better if you use a child theme so you dont loose the changes when the theme is updated. I have created a child theme already which you can download from here http://supernovathemes.com/frequently-asked-questions/
Forum: Fixing WordPress
In reply to: Link Thumbnail to permalink not workingIf you wish you can leave the login information here http://supernovathemes.com/contact-me/ and I’ll be happy to have a look
Forum: Fixing WordPress
In reply to: Link Thumbnail to permalink not workingThen you are certainly using some plugin for the post thumbnail. Please deactivate it , and it should be fine.
Forum: Fixing WordPress
In reply to: Link Thumbnail to permalink not workingThe theme already has permalinks to all post listing thumbnails (look at the demo site. http://supernovathemes.com/supernova/)
If the filter isn’t working which Im sure should , you can wrap your custom thumbnail in<a href="<?php the_permalink(); ?>"></a>in loop.php file.Forum: Themes and Templates
In reply to: [Supernova] Sidebar Home&PageGo to page.php file and replace
<?php get_sidebar('page'); ?>with this
<?php get_sidebar(); ?>Forum: Themes and Templates
In reply to: [Supernova] Sidebar Home&PageThe theme doesn’t have that option by default.
Use this CSS
.top_search_icon {display: inline-block!important;}Paste it in Appearance > Styling > Custom CSS
Forum: Themes and Templates
In reply to: [Supernova] Header FlexibilityThe theme doesn’t have the option but you may get the customization done if you need.