PlugPress.com
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How-To: Change default nickname to first and last name.See the “Display name publicly as” in menu Users > Your profile.
Forum: Hacks
In reply to: Place Excerpt above main content window in Add New Post GUIUnfortunately, this is not possible to move the Excerpt where you want to put it.
It could be done by editing the core code, but you should NEVER edit the core. You would loose all your changes when you upgrade and/or could break functionality
Forum: Fixing WordPress
In reply to: Some organizational advice…If the content is static (which seems to be the case), you should put it in pages.
The menus are now really flexible and you can put pages, categories and direct links in them. You can decide whatever you want in the menu. By default, it shows pages.
You can also create submenus if you have too many things you want in your menu.
Good luck!
Forum: Fixing WordPress
In reply to: adding social media into my site not workingThe thing is you simply added images. By default, the image links to itself.
I think you added text in your widgets. The code you put in the widget box for your social icons should be:
<a href="http://twitter.com/YOUR_TWITTER_USERNAME"><img class="alignleft size-thumbnail wp-image-112" title="happybirds1Medium" src="http://mypaintingstudio.com/wp-content/uploads/2011/07/happybirds1Medium-150x150.png" alt="" width="150" height="150" /></a> <a href="LINK_TO_FACEBOOK"><img class="alignleft size-full wp-image-113" title="facebook" src="http://mypaintingstudio.com/wp-content/uploads/2011/07/facebook2.jpg" alt="" width="128" height="128" /></a> <a href="LINK_TO_FEEDBURNER"><img class="alignleft size-full wp-image-114" title="Newspaper_Feed_128x128" src="http://mypaintingstudio.com/wp-content/uploads/2011/07/Newspaper_Feed_128x1282.png" alt="" width="128" height="128" /></a>Make sure you replace the ‘YOUR_TWITTER_USERNAME’ in that code with your Twitter username. Samething with ‘LINK_TO_FACEBOOK’ that should be replaced by the URL of your Facebook page and for LINK_TO_FEEDBURNER that should be replaced by the link to your Feedburner RSS.
Hope it helped!
Forum: Everything else WordPress
In reply to: Favicon not show in IESurely, it has nothing to do with propagation.
I know that the best place to put your favicon is directly at the root of your site. (e.g. http://www.yoursite.com/favicon.ico)
That said, the favicon is not a big deal!
Forum: Fixing WordPress
In reply to: WordPress site is showing up wrong in IEesmi : Excellent point! This code is enough to mess up all your site. So : “yes, you edited the template code!”.
Start from there…
Forum: Fixing WordPress
In reply to: WordPress site is showing up wrong in IEDid you add plugins ?
Did you add some code (javascript) from a 3rd party ?
Did you manually edit the template code ?This could help you remember what was done that could cause that.
Forum: Themes and Templates
In reply to: Why is colon syntax common to WordPress?I have played in the WordPress core code (but I must say not all of it) and did not see this approach in the core for the last versions released. The post is you are referencing is more than 1 year old. It may have been the case in the past… I don’t know.
It is a different simply approach. Personnally, I think it has advantages when templating with HTML as you do not have to open and close brackets.
Forum: Everything else WordPress
In reply to: On-line applications using MYSQLI am a afraid your question is way too vague!
Forum: Fixing WordPress
In reply to: HTML table not grouped in rows but rather columnsYou may want to take a look at colspan and rowspan as an attribute in your <td>.
W3 School explains it well : http://www.w3schools.com/tags/att_td_colspan.asp
Forum: Everything else WordPress
In reply to: Favicon not show in IEI checked in IE9, Chrome and Firefox and it works.
It may be a problem with cache in your browser. Delete your cache and try again. Did you try to go to : http://workweller.com/favicon.ico and hit F5 key on Windows or (cmd + R on Mac) ? Do you see it ?
Maxime