Mahesh Mohan
Forum Replies Created
-
Forum: Plugins
In reply to: Should You Use W3 Total Cache CDNNo… but it really boosts the page loading time and reduces the requests according to pingdom tools and webpagetest.org.
Forum: Plugins
In reply to: Should You Use W3 Total Cache CDNMine is a reseller account at HostGator.
Forum: Plugins
In reply to: Should You Use W3 Total Cache CDNAnd my Google PageSpeed score is 97 now for https://www.minterest.com/. It was < 80 without PSS or W3. And the score was 99 with no ads now there is a single adsense unit at the top.
Forum: Plugins
In reply to: Should You Use W3 Total Cache CDNWell.. I think W3 is more advanced that Super Cache.. I tried both before choosing W3. And yeah, W3 + PSS do magic. Together it saves 90% bandwidth and the page should load < 1 second that otherwise takes 10 sec+.
Forum: Plugins
In reply to: Should You Use W3 Total Cache CDNWow! That’s [https://developers.google.com/speed/pagespeed/service/faq#w3tc] really nice…. In fact I also gave a lot of feedback about the usage of PSS and W3 to PSS team.
Forum: Fixing WordPress
In reply to: How to hide blog posts from a specific category on home page?Sorry about that… I asked here since it’s about homepage customization.
Thank you!
Forum: Fixing WordPress
In reply to: How to hide blog posts from a specific category on home page?Hi there,
I’m not very good with coding…
Here’s my Home.php file of the child theme…
Can we hide the category from here?
<?php remove_action( 'genesis_loop', 'genesis_do_loop' ); add_action( 'genesis_loop', 'focus_grid_loop_helper' ); /** Add support for Genesis Grid Loop */ function focus_grid_loop_helper() { if ( function_exists( 'genesis_grid_loop' ) ) { genesis_grid_loop( array( 'features' => 1, 'feature_image_size' => 0, 'feature_content_limit' => 0, 'grid_image_size' => 'grid-thumbnail', 'grid_image_class' => 'alignnone', 'grid_content_limit' => 250, 'more' => __( 'Read More ?', 'genesis' ), 'posts_per_page' => 6, ) ); } else { genesis_standard_loop(); } } genesis();
Forum: Plugins
In reply to: Should You Use W3 Total Cache CDNSure! We tweeted and exchanged few mails couple of weeks back. I’ll get back to you once again. I’ll setup wordpress on a test domain and will give the authorization. Last time I paused ‘coz I have done a lot of customizations and was afraid to lose any of them as I obsessively did those things.
Thanks! ??
Forum: Fixing WordPress
In reply to: Is it possible to use two different themes at the same time?Okay. Thanks!
Forum: Fixing WordPress
In reply to: How to remove posts from home page?I want to hide few posts say from a particular category from the homepage… that is I dont want them to show in latest posts….
Forum: Fixing WordPress
In reply to: How to remove posts from home page?Any reference URL(s)?
Forum: Themes and Templates
In reply to: What should be the code in crossdomain.xmlI have the same issue… am also using that UserOnline Plugin… also its showing so many wp-comments-post.php related 404 errors….
Forum: Fixing WordPress
In reply to: How To Show Select Tags in Tag CloudNever mind… I think I will go for default syle itself.. as it looks good… i will remove more themes so it will be better…
Thanks!
Forum: Fixing WordPress
In reply to: How To Show Select Tags in Tag CloudOh yeah…
Its working….
<?php wp_tag_cloud(‘include=10,27&smallest=12&largest=12’); ?>
Now how to add more spaces between tags so that one can read more easily?
Check out the tag cloud now… https://www.minterest.com/sitemap/ (the last sidebar widget)
What’s the best way to separate tags? Now it looks like a single sentence rather than tags.
Whats the use of parameter “Separator”?
Forum: Fixing WordPress
In reply to: How To Show Select Tags in Tag CloudOkay. By the way how to add multiple parameters? I want to display all the tags in same size irrespective of the number of posts filed under that tag.
In that case what should I do to:
<?php wp_tag_cloud(‘include=10,27’); ?>