jeezyo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Photo Upload problemTake a look in SETTINGS -> MEDIA, at the Upload Settings.
Forum: Fixing WordPress
In reply to: How to avoid WP to truncate my menu captions?you need to adjust your css to allow for the proper width. You can use a tool like firebug to help you determine what div needs to be adjusted.
Forum: Fixing WordPress
In reply to: not able to save changes to existing page?have you tried clearing your cache? are the changes appearing the save in the backend?
Forum: Fixing WordPress
In reply to: Changing the URL to a purchased domain nameok, that helps. So if you have the domain name set up with your host, you should just need to change it in SETTINGS -> GENERAL, then look for wordpress address, and site address and update them accordingly. if you have the files in a directory called WordPress, then make sure you either include that in the updated URL, or move the files into the main directory AFTER you change the settings.
Forum: Fixing WordPress
In reply to: Theme Images In Internet ExplorerTake a look at this. https://coolwebdeveloper.com/tag/null-is-null-or-not-an-object-javascript-error/ It looks like the errors are basically saying that you are loading both the prototype and jquery libraries, and you’ve got a conflict.
Forum: Fixing WordPress
In reply to: Static post page = permalink fail "Error 404"what does it actually say in the custom permalink field? try /%postname%/
Forum: Fixing WordPress
In reply to: Theme Images In Internet ExplorerI am able to see the images in chrome, but receive the following errors in internet explorer:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MALN; InfoPath.3; .NET4.0C; .NET4.0E)
Timestamp: Thu, 17 Mar 2011 10:40:03 UTCMessage: Object doesn’t support this property or method
Line: 4821
Char: 5
Code: 0
URI: https://www.harmonyreins.com.au/wp-includes/js/prototype.js?ver=1.6.1Message: ‘jQuery.easing’ is null or not an object
Line: 1
Char: 1
Code: 0
URI: https://www.harmonyreins.com.au/wp-content/plugins/uBillboard/js/jquery.easing.js?ver=3.1Message: Object doesn’t support this property or method
Line: 25
Char: 264
Code: 0
URI: https://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js?ver=3.1Forum: Fixing WordPress
In reply to: Changing the URL to a purchased domain nameWhat is your current URL? With www.ads-software.com, you install wordpress on your own hosting account, with your own domain name. So if you could clarify what you are trying to change it from, I can help you. If its a temporary domain with your hosting company (like an IP address), you would just need to go into settings in your dashboard and change the URL there. If your link is whatever you chose . wordpress . com, then thats not self-hosted.
Forum: Fixing WordPress
In reply to: WordPress Login Helpdid you change your nameservers on godaddy to fatcow’s, and give them time to propagate?
Forum: Fixing WordPress
In reply to: Changing the URL to a purchased domain nameAre you in the right forum? it sounds like you are talking about a wordpress.com blog, this is for self-hosted wordpress sites.
Forum: Fixing WordPress
In reply to: Deleted a Plugin- everything is bold- HELPLooks like you have the body font set to bold in your theme options.
Forum: Themes and Templates
In reply to: Transparent content background?just figure out what the div surrounding the content is, say its #content, and add to your css:
#content { background-color: transparent; }
Forum: Fixing WordPress
In reply to: Adding in "Posted in XYZ Category" to Cat Pages, Recent Posts QNot sure about a plugin, but you just need a quick line of code in the appropriate templates:
<p>Categories: <?php the_category(' '); ?></p>
You can modify it further: https://codex.www.ads-software.com/Function_Reference/the_categorySo for category pages, you need to add this in your archives template.
Forum: Fixing WordPress
In reply to: opening an existing postForum: Themes and Templates
In reply to: Broken Theme?When you say you deleted the theme and tried to reinstall it, did you do this through the wordpress admin, or ftp? If you havent done it through FTP, do so. Just go into WP-Content -> themes, find the folder, and delete it. At that point your site should revert back to the default theme. Then try loading your theme again, to that same location, then going into the admin and activating it.