Mohammad Taqui Sayed
Forum Replies Created
-
Look at the link I provided, both plugins are working fine, which clearly mean that there is some other plugin which is creating javascript conflict. disable each plugin one by one to see which one is causing problem.
I just tested, both plugins they are working fine on the latest version of supernova, http://supernovathemes.com/supernova/get-tons-of-customization-options/
Thanks, can I have link to your site please?
Forum: Themes and Templates
In reply to: [Supernova] full posts instead of excerpts?Added the option in the new version.
Forum: Themes and Templates
In reply to: [Supernova] archive.php showing a < above postsThanks Wessel for letting me know this, looks like I made a mistake, I’ll remove it in the next version.
Forum: Themes and Templates
In reply to: [Supernova] Jetpack Like Button Loading – SupernovaYour welcome, I figured jetpack and supernova has some common jQuery methods like sticky which is causing conflict and hence the sticky navigation is also not working. I’ll figure something out in the next version.
Thanks
Forum: Themes and Templates
In reply to: [Supernova] Jetpack Like Button Loading – SupernovaAlso I just installed jetpack and the like button is working fine now
http://supernovathemes.com/supernova/get-tons-of-customization-options/Forum: Themes and Templates
In reply to: [Supernova] Jetpack Like Button Loading – SupernovaDid you empty your cache because I still see those errors. If you view console on my demo site, it wouldn’t show any error.
http://supernovathemes.com/supernova/get-tons-of-customization-options/Forum: Themes and Templates
In reply to: [Supernova] Jetpack Like Button Loading – SupernovaCan you please update the theme to the newest version, because I have fixed all the jQuery errors in the new version.
Let me know once you are done.Forum: Themes and Templates
In reply to: [Supernova] full posts instead of excerpts?No, currently it doesn’t have that option, but I m thinking to change that in the next version. But for now you can edit the code a little.
Go to Appearance>Editor>index.php and findthe_excerpt();
replace it withthe_content();
and that’s it.Forum: Themes and Templates
In reply to: [Supernova] Categories and Responsive Design – all whitePlease replace .category{display:none} with
#wrapper .category{display:none}
in mediaquery.css fileThanks
Forum: Hacks
In reply to: How to get wordpress cron job function working?Thanks for the reply, its not test site, but I didn’t want to show the whole complex code, its not echoing this text, it was only for illustration.
Actually the function is getting random post ids from WP_Query, and I m saving it into the database with update_option( ‘home_mustview’, $random_post_ids ); The function does its job very well when I manually execute it.
All the articles I read only suggest that I should disable WordPress Cron by define(‘DISABLE_WP_CRON’, true); and then use cron job from Cpanel or via ssh command. But why not get this function work and let it execute when a new visitor comes on the site.Forum: Themes and Templates
In reply to: [Supernova] Comment Hardcode Makes Jetpack Comments Not WorkThanks for letting me know, I wasn’t aware, you are right the whole purpose was to style the commment system so it looks good without any plugin, I’ll look at it as soon as I get time, and if it is an issue, probably I’ll give an option in ‘supernova options’ when the user wants to use Getpack comments.
Forum: Themes and Templates
In reply to: [Supernova] Jetpack Like Button Loading – SupernovaOkay so I removed all the scripts from my theme, in fact I tried running it on plain HTML however, it doesn’t seem to be a theme specific issue. I switched several other themes but the like button didn’t work on them either, except on twenty twelve and that too only randomly. I researched for it and got to know that its a known issue, see this http://wordpress.org/support/topic/like-button-loading
Thanks.
Sayed Taqui.Forum: Themes and Templates
In reply to: [Supernova] Jetpack Like Button Loading – SupernovaWell thanks for bringing this to my notice, and sorry that you had issues, It seems like its a theme issue, I have put it in my to-do list and it would be fixed in the next version of the theme.
If you are developer, you can fix it by yourself.
1)Go to supernova/lib/admin/custom-css.php
a)Replace line number 89 with
if(is_home() && (!supernova_options(‘sticky-nav’) || !supernova_options(‘disable-top-nav’))){ ?>
b)Replace line number 95 with
<?php if(!supernova_options(‘disable-resizer’) && is_home()){ ?>
c)Replace line number 105 with
if(!supernova_options(‘disable-slider’) && is_home()){ ?>