Sugar Apple
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bandwidth use triple now with wordpress1. the first thing you need to know from wordpress, it’s SEO friendly.
You may get higher traffic from search engines or your visitors enjoy your site right now.2. Using gallery or slideshow plugins could add more tax to pay (bandwith usage)
3. embedded youtube videos use youtube network, you won’t lose much bandwith here.
4. you can compress your images before uploading into your site.
*) if you are on unlimited bandwith hosting plan, than it wouldn’t be a great concern.
Forum: Fixing WordPress
In reply to: Preventing comment identity re-use1. it could be your wp caching plugin issue
2. or your browser cache issueIf you are using caching plugin, try to clear all cache then if not try to clear your browser cache.
need hard work but i think it’s possible.
recent post = what terms do you use to define this ? last 24 hours ?
Forum: Fixing WordPress
In reply to: Rename Category – what should I keep in mind?Nope, you won’t lose your posts.
Than yes, all posts under that category will follow the new name.
Change category name = new category slug, bad for search engines. But if you need to do this, just go ahead.
your site url please..
if your slider title or description using headings tag <h1> or <h2>, then google can use that as description.
Forum: Themes and Templates
In reply to: Page wite after updateForum: Themes and Templates
In reply to: Preview FBYour site does not have meta description. So, facebook can not grab your content properly.
Forum: Themes and Templates
In reply to: [AJAX] dynamic contentyou can find tutorial and sample ajax theme on
digwp.com
Forum: Themes and Templates
In reply to: [Catch Box] [Theme: Catch Box] thumbnail sizesyes, you need to add new image size.
Forum: Fixing WordPress
In reply to: Account exceeded CPU quota limit for more than 506 timesYour theme using timthumb.
FYI: Timthumb cache storage just for 86400 seconds = 24 hours then the images will be deleted and generate new thumbs again. That’s why if you have many images you may get high cpu usage in this proccess.
*) FYI= For Your Information.
Forum: Fixing WordPress
In reply to: Permalink question/category/%category%/%postname%/
then for category area it will be.
category/category/%cat_name%/
also tags, author, archive (daily, monthly, etc).
works properly on posts and pages but above
Forum: Fixing WordPress
In reply to: Exclude background color from image link.oh, i see just the images.
then my code is
a.lightbox:hover {background-color:none;}
you can use “none” or “transparent”.
Forum: Fixing WordPress
In reply to: Exclude background color from image link.a:focus, a:hover { color:#000; text-decoration: none; background-color: #307bcf;}
remove the
background-color: #307bcf;
and you’re doneForum: Fixing WordPress
In reply to: Facebook sharing the wrong datause plugin like facebook open graph meta or etc.
Forum: Fixing WordPress
In reply to: htaccess file problem#RewriteCond %{HTTP_HOST} !^www\.translationdoctor\.co\.uk [NC]
#RewriteRule (.*) https://www.translationdoctor\.co\.uk/$1 [R=301,L]remove the backslashes. so it will be:
#RewriteCond %{HTTP_HOST} !^www.translationdoctor.co.uk [NC]
#RewriteRule (.*) https://www.translationdoctor.co.uk/$1 [R=301,L]*) Based on my site .htaccess, i find no backslashes for site redirect.