pchhetri
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Speed between wordpress and html@leejosepho I’m sorry I don’t get what you mean my queries satisfied?
i ran a speedtest through webpagetest.org on my sites one is wordpress and other is pure html..it seem the wordpress took 5 seconds longer to load..
Here is the result.
Forum: Everything else WordPress
In reply to: Speed between wordpress and htmlso if both html site and wordpress (with wp-cache) were on same exact server and everything. theoretically both would have the same performance?
although im finding that the wordpress (with wp-cache) lags behind the html on my hosting provider anybody know why?
Forum: Themes and Templates
In reply to: Zion theme Logo resize to be responsivethank you!!
Forum: Themes and Templates
In reply to: Zion theme Logo resize to be responsiveHuge apology @shinjing your code actually does work. I was to hasty to judge and it seems I had failed to clear my browser’s cache.
Could you tell me the process behind this code? Thanks!
And sorry again.
Forum: Themes and Templates
In reply to: Zion theme Logo resize to be responsiveokay looks like this only worked in the computer (when I drag the page window and shrink it to be slim) but not on my android browser.
any ideas for having it work on the other devices such as ipad, iphone, android phone etc?
Forum: Themes and Templates
In reply to: Zion theme Logo resize to be responsivehello i tried this and it didn’t work. but the modified version did:
@media (width:auto) { #logo { width: 100%; } }Forum: Fixing WordPress
In reply to: Resize Tag Cloud Minimum fontThank you! for helping me find that!
I put the code in my functions.php child theme and worked perfectly.
I had this code in there previously and it didn’t work:
add_filter('widget_tag_cloud_args', 'tag_cloud_filter', 90); function tag_cloud_filter($args = array()) { $args['smallest'] = 8; $args['largest'] = 13; $args['unit'] = 'pt'; return $args; }But this one (from the article above did):
add_filter('widget_tag_cloud_args','set_tag_cloud_sizes'); function set_tag_cloud_sizes($args) { $args['smallest'] = 12; $args['largest'] = 19; return $args; }I’m not good with PHP
Forum: Fixing WordPress
In reply to: Resize Tag Cloud Minimum fontor this. http://www.hindudharmacircle.org/events
I’ll try your suggestion in the meantime.
Forum: Installing WordPress
In reply to: Installation of WordPress Different Directory for SecurityAlso if you guys could point me to articles that explain what I should follow to provide extra layers of security it would be greatful! There is just too many on the web and again idk which methods are current or outdated.
Forum: Installing WordPress
In reply to: Installation of WordPress Different Directory for SecurityI see (comment in article for 2011) that putting wordpress in a different directory would hide the login screen. I tried that on my computer via localhost but it didn’t work…it just redirected it to my login screen. Is this feature removed in newer version of wordpress?
Also could you provide me some details if possible as to why it won’t make a difference in security?
Forum: Installing WordPress
In reply to: Installation of WordPress Different Directory for SecurityIs it possible to revert this setup if there is problems I face in the future? I assume I would just move all the files to the root directory and vice versa as well?
Forum: Installing WordPress
In reply to: Installation of WordPress Different Directory for SecurityTo clarify you have your sites installed at:
root/subdirectory instead of
root/ (as it normally would install)Forum: Installing WordPress
In reply to: Installation of WordPress Different Directory for SecurityI have asked them and I can do so in dreamhost. Do you have your site setup in such a manner installed in a subdirectory? Do you find it beneficial or have any problems that you face?
Forum: Fixing WordPress
In reply to: Secure directory install redirects to wp login pageI’m referring to this https://www.dropbox.com/s/ciqmzqie0ltoqhd/97614_03_05_SC11_directory.mov?m
It has since stopped working after the 3.5 update. does anyone have ideas how to get this sort of technique back?
Thank you!