Sanyogg Shelar
Forum Replies Created
-
Please let us know how can i reproduce this yet my end. so i will reproduce issue and help you with your query
Forum: Fixing WordPress
In reply to: Cookieless domainHere is quick help for you where you can find how to make cooking less domain which is not part of wp-content
Forum: Fixing WordPress
In reply to: Cookieless domain- This is by no means a simple process. You will need a good understanding of how website hosting works, including logging into your hosting account, configuring domain names, configuring the WordPress wp-config.php file and applying bulk changes to the database using phpMyAdmin.
- This can only work if you run your website from a www. address, e.g. http://www.itsupportguides.com — this allows you to separate the ‘cookie’ domain (www) and the cookieless domain (static).
- This process, specifically step 3, will involve bulk changes to your content using database tools. I highly suggest you create a backup of your WordPress database before continuing. Using phpMyAdmin this can be done using the ‘export’ option.
- Depending on the websites hosting environment it can take up to 24 hours for the new static sub-domain to start working. Typically it takes 5-15 minutes, but propagation of DNS changes can take up to 24 hours.
Step 1: Create a subdomain using cPanel or any other panel for the static content
You will now be able to open static.domainname.com and see a blank page
IMPORTANT: Test to make sure that your static address is loading – e.g. http://static.domainname.com (or https if you use it). DO NOT PROGRESS UNTIL THIS LOADS — you will see a blank page when it is working correctly.
Note: it takes time for new subdomains to be available. Typically it takes about 10 minutes, but can take up to 24 hours depending on how you access the Internet. If you’re having problems accessing the subdomain, try from another Internet connection or using an online tool such as Pingdom Tools.
Step 2: Configure WordPress
Using your preferred method, for example FTP or through the cPanel, navigate to the root directory of your WordPress installation and edit wp-config.php
Add the following lines to the top of the file, below the <?phpReplace domainname with the domain name for your website
define("WP_CONTENT_URL", "http://static.domainname.com"); define("COOKIE_DOMAIN", "www.domainname.com"); define("WP_PLUGIN_URL", "http://static.domainname.com/plugins");Forum: Fixing WordPress
In reply to: WP API can’t get user imageHello @malalisy
https://secure.gravatar.com/avatar/a38769ccf17938ecbb36d5d8aa0ab727
This will help you to open gravtar image
a38769ccf17938ecbb36d5d8aa0ab727 this is ID of user image here example of your profile imagehttps://secure.gravatar.com/avatar/cca9c64137076ef93b20bb1c3c620ea3
if you add this parameter it will load size as per your need. ?s=200
where 200 is width of image.Forum: Fixing WordPress
In reply to: WP API can’t get user imageHello Malalisy
please try with following URL
http://1.gravatar.com/avatar/a38769ccf17938ecbb36d5d8aa0ab727Forum: Fixing WordPress
In reply to: Publishing siteHello @alliedrider
Can you please be more specific about your issues.
Forum: Networking WordPress
In reply to: Syntax errorHello
Please do no delete core file of themes and word press. To Hide Wditor you can go to setting general.
Hello @rob70
Please add We.config configuration run without PHP
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Main Rule" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php" /> </rule> </rules> </rewrite> </system.webServer> </configuration>Forum: Themes and Templates
In reply to: [Virtue] want to make opacity only to the color backgroundto making image transparency here is some trick off css
img { opacity: 0.6; filter: alpha(opacity=60); }please refer link more info and how it works
http://www.w3schools.com/css/css_image_transparency.aspForum: Themes and Templates
In reply to: [Sydney] Slider Header DisappearedDid you updated your website with latest wordpress version? If Yes, please check theme updates as well as.
Forum: Themes and Templates
In reply to: [Virtue] Error with updated theme – CSSPlease check your theme is supporting with new updates, AS what custom CSS you are trying to save in theme customiser is not reflecting.
Forum: Themes and Templates
In reply to: [ColorMag] Featured image on pagesFeatured images also known as post thumbnails are a popular feature in WordPress themes.
An easy way to figure out whether your theme supports featured images is by going to the post editor. Simply create a new post and scroll down a little to see if there is a meta box called featured images on the right hand side of the screen.
Forum: Themes and Templates
In reply to: [Zerif Lite] connect us – home pageCan you please write more about your problems to understand about your problems in details.
Forum: Themes and Templates
In reply to: [Hueman] Remove “UPDATED” Under Title?You have to edit your functions file of theme to remove updated date option from your post.
Forum: Themes and Templates
In reply to: [Biography] Twitter Icon not displayingHello @megart04
There is inline style sheet code which is making problem with your twitter icon disable.
If you remove position:absolute from your below inline style code your issue will be fixed..fa-hidden { position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }Thank you
Sanyog