CMSHelpLive
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: "Missing a Temporary Folder" Error When I try to Upload an ImageHi,
In WordPress, when you upload anything, these folders get created automatically- wp-contents/uploads/year/month/.
Check if these folder are available. If not then you may need to create folders manually.Forum: Localhost Installs
In reply to: WordPress ErrorHi,
This may be because of your mismatched database name in wp-config.php and phpmyadmin files.
Forum: Fixing WordPress
In reply to: When Adding a New Theme I Get an Unexpected Error MessageHi,
Add this code to your wp-config.php file.
define(‘WP_PROXY_HOST’, ‘proxy.url.com’);
define(‘WP_PROXY_PORT’, ‘1234’);
define(‘WP_PROXY_USERNAME’, ”);
define(‘WP_PROXY_PASSWORD’, ”);
define(‘WP_PROXY_BYPASS_HOSTS’, ‘localhost’);Forum: Fixing WordPress
In reply to: Need to setup a contact us page like a 4 square Gridhi,
link not working. Post it again.
Forum: Fixing WordPress
In reply to: Dashboard shows only profile and error msgsHi,
It may be due to your server being unable to receive feed from Google and determine incoming links. Give it another day or so and see if the feed starts syncing again.
Forum: Fixing WordPress
In reply to: Cannot create paragraphs/break lines in pagesHi,
Use paragraph tag and add some css as per your requirement.
Forum: Installing WordPress
In reply to: wp instalation on my computer need assistanceHi,
Follow these steps:
1- After extraction put the WordPress folder under htdocs (Xampp/Mamp) or www (wamp).
2- Open your browser and create database. For creating database you need to use localhost/phpmyadmin in URL
3- You will get create database option there. Provide database name and click on “Create Database”. Suppose it is named as trialwordpress.
4- Now type in localhost/your-wordpress-folder-name (which resides in your htdocs or www folder) for URL
5- You will get a option of create configuration file. Click ->Lets Go .
6- Fill the information in displayed form that consists of database name, username (use root), password (leave it blank), database host and table prefix (use default values) and click on “submit”.
7- Now fill in your email id and desired username/password.
8- Login to WordPress with your username and password.Forum: Installing WordPress
In reply to: Installation Problem/Wrong DatabaseHi,
It might be due to your mismatched database name in wp-config.php file and database created in phpmyadmin
Forum: Themes and Templates
In reply to: [Fruitful] Slider is not appearingHi,
Try Soliloquy plugin.
Forum: Themes and Templates
In reply to: [Gold] Remove Search BarHi,
Firstly check if you get any option from your theme setting to hide it .
or
Delete this code from your site to remove search bar-
<div class=”search-bar col-lg-12 col-sm-12 col-6″>
<div class=”input-group”>
<span class=”input-group-btn”>
<button class=”btn btn-primary” type=”submit” name=”submit” id=”searchsubmit” value=”Search”>Search</button>
</span>
<input type=”text” class=”form-control field” name=”s” id=”s”>
</div><!– /input-group –>
</div>Forum: Fixing WordPress
In reply to: The uploaded file could not be moved to wp-content/uploads/2014/10Hi,
Try these:
1- Change permissions on the upload folder to 777.
2- Increase upload_max_filesize in php.ini file.
3- Rename your function.php file and verify.Forum: Fixing WordPress
In reply to: Trying to get a form drop down list like on an automotive websiteHi,
Create template and add that template to your theme.Use this code and do changes according to your requirements.
<script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js” ></script>
<script src=”http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.0/jquery.validate.js”></script><script>
function fnbusiness(str) {
document.getElementById(‘private’).style.display=”none”;
document.getElementById(‘com’).style.display=”none”;
if(str==”Private Company”)
{
document.getElementById(‘private’).style.display=”block”;
document.getElementById(‘com’).style.display=”none”;
}
else
{
document.getElementById(‘private’).style.display=”none”;
document.getElementById(‘com’).style.display=”block”;
}
}
</script>
<form method=”POST” id=”regform” name=”myform” action=””>
<table align=”center”>
<tr>
<td>
<label id=”label” for=”tname”>Type of business</label>
</td>
<td>
<select name=”tname” id=”tname” onchange=”fnbusiness(this.value)”>
<option value=”select”>Select</option>
<option value=”Government Department”>Government Department</option>
<option value=”ASX Listed Company”>ASX Listed company</option>
<option value=”Private Company”>Private Company</option>
</select>
</td>
</tr>
</table><table align=”center” id=”com” style=”display:none”>
<tr>
<td colspan=”2″>
<label id=”label” for=”sole”>company sole trader</label>
</td>
</tr>
<tr>
<td>
<label id=”label” for=”ACN”>ACN</label>
</td>
<td>
<input type=”” name=”ACN” id=”ACN” class=”required”>
</td>
</tr>
<tr>
<td>
<label id=”label” for=”ABN”>ABN</label>
</td>
<td>
<input type=”” name=”ABN” id=”ABN” class=”required”>
</td>
</tr><tr>
<td>
<label id=”label” for=”trade”>Trading Name</label>
</td>
<td>
<input type=”text” name=”trade” id=”trade” class=”required”>
</td>
</tr><tr>
<td colspan=”2″>
<label id=”label” for=”postal”>Postal address</label>
</td>
</tr><tr>
<td>
<label id=”label” for=”street”>Street Address</label>
</td>
<td>
<input type=”text” name=”street” id=”street” class=”required”>
</td>
</tr><tr>
<td>
<label id=”label” for=”city”>City</label>
</td>
<td>
<input type=”text” name=”city” id=”city” class=”required” maxlength=”25″>
</td>
</tr><tr>
<td>
<label id=”label” for=”state”>State</label>
</td>
<td>
<input type=”text” name=”state” id=”state” class=”required” maxlength=”30″>
</td>
</tr><tr>
<td>
<label id=”label” for=”zip”>Zip</label>
</td>
<td>
<input type=”text” name=”zip” id=”zip” class=”required” maxlength=”5″>
</td>
</tr><tr>
<td>
<label id=”label” for=”country”>Country</label>
</td>
<td>
<input type=”text” name=”country” id=”country” class=”required” maxlength=”30″>
</td>
</tr><tr>
<td colspan=”2″>
<input type=”checkbox” onclick=”return address();” name=”physical” value=”address” />Physical Address same as above</td>
</tr><tr>
<td>
<label id=”label” for=”street”>Street Address</label>
</td>
<td>
<input type=”text” name=”street1″ id=”street1″ class=”required”>
</td>
</tr><tr>
<td>
<label id=”label” for=”city”>City</label>
</td>
<td>
<input type=”text” name=”city1″ id=”city1″ class=”required” maxlength=”25″>
</td>
</tr><tr>
<td>
<label id=”label” for=”state”>State</label>
</td>
<td>
<input type=”text” name=”state1″ id=”state1″ class=”required” maxlength=”30″>
</td>
</tr><tr>
<td>
<label id=”label” for=”zip”>Zip</label>
</td>
<td>
<input type=”text” name=”zip1″ id=”zip1″ class=”required” maxlength=”5″>
</td>
</tr><tr>
<td>
<label id=”label” for=”country”>Country</label>
</td>
<td>
<input type=”text” name=”country1″ id=”country1″ class=”required” maxlength=”30″>
</td>
</tr><tr>
<td colspan=”2″>
<label id=”label” for=”phone”>Phone Numbers</label>
</td>
</tr><tr>
<td>
<label id=”label” for=”office”>office</label>
</td>
<td>
<input type=”text” name=”office” id=”office” class=”required” maxlength=”15″>
</td>
</tr><tr>
<td>
<label id=”label” for=”mobile”>Mobile</label>
</td>
<td>
<input type=”text” name=”mobile” id=”mobile” class=”required” maxlength=”15″>
</td>
</tr><tr>
<td>
<label id=”label” for=”fax”>Fax</label>
</td>
<td>
<input type=”text” name=”fax” id=”fax” class=”required” maxlength=”15″>
</td>
</tr><tr> <td colspan=”2″ align=”center”><input type=”submit” value=”Submit” /></td>
</tr>
</table>
</form><div id=”private” style=”display:none”>
<form method=”POST” name=”pname” id=”pname” action=””><table align=”center”>
<tr>
<td colspan=”2″>
<label id=”label” for=”postal”>Postal address</label>
</td>
</tr><tr>
<td>
<label id=”label” for=”street”>Street Address</label>
</td>
<td>
<input type=”text” name=”street” id=”street” class=”required”>
</td>
</tr><tr>
<td>
<label id=”label” for=”city”>City</label>
</td>
<td>
<input type=”text” name=”city” id=”city” class=”required” maxlength=”25″>
</td>
</tr><tr>
<td>
<label id=”label” for=”state”>State</label>
</td>
<td>
<input type=”text” name=”state” id=”state” class=”required” maxlength=”30″>
</td>
</tr><tr>
<td>
<label id=”label” for=”zip”>Zip</label>
</td>
<td>
<input type=”text” name=”zip” id=”zip” class=”required” maxlength=”5″>
</td>
</tr><tr>
<td>
<label id=”label” for=”country”>Country</label>
</td>
<td>
<input type=”text” name=”country” id=”country” class=”required” maxlength=”30″>
</td>
</tr><tr>
<td colspan=”2″>
<input type=”checkbox” onclick=”return address();” name=”physical” value=”address” />Physical Address same as above</td>
</tr><tr>
<td>
<label id=”label” for=”street”>Street Address</label>
</td>
<td>
<input type=”text” name=”street1″ id=”street1″ class=”required”>
</td>
</tr><tr>
<td>
<label id=”label” for=”city”>City</label>
</td>
<td>
<input type=”text” name=”city1″ id=”city1″ class=”required” maxlength=”25″>
</td>
</tr><tr>
<td>
<label id=”label” for=”state”>State</label>
</td>
<td>
<input type=”text” name=”state1″ id=”state1″ class=”required” maxlength=”30″>
</td>
</tr><tr>
<td>
<label id=”label” for=”zip”>Zip</label>
</td>
<td>
<input type=”text” name=”zip1″ id=”zip1″ class=”required” maxlength=”5″>
</td>
</tr><tr>
<td>
<label id=”label” for=”country”>Country</label>
</td>
<td>
<input type=”text” name=”country1″ id=”country1″ class=”required” maxlength=”30″>
</td>
</tr><tr>
<td colspan=”2″>
<label id=”label” for=”phone”>Phone Numbers</label>
</td>
</tr><tr>
<td>
<label id=”label” for=”office”>office</label>
</td>
<td>
<input type=”text” name=”office” id=”office” class=”required” maxlength=”15″>
</td>
</tr><tr>
<td>
<label id=”label” for=”mobile”>Mobile</label>
</td>
<td>
<input type=”text” name=”mobile” id=”mobile” class=”required” maxlength=”15″>
</td>
</tr><tr>
<td>
<label id=”label” for=”fax”>Fax</label>
</td>
<td>
<input type=”text” name=”fax” id=”fax” class=”required” maxlength=”15″>
</td>
</tr><tr> <td colspan=”2″ align=”center”><input type=”submit” value=”Submit” /></td>
</tr>
</table></div>
Forum: Fixing WordPress
In reply to: Error – Warning: Cannot modify header information no FTPHi,
just add <?php ob_start(); ?>on the top of wp-login.php page
Forum: Localhost Installs
In reply to: wamp/myPHPadmin initial setup, browser can't loadHi,
Try Xampp instead of wamp and check if problem is still there.
Forum: Themes and Templates
In reply to: adding 'posts' to a custom themeHi,
Just add this code to your page.php page
<?php
while ( have_posts() ) : the_post();
get_template_part( ‘content’, ‘page’ );
if ( comments_open() || get_comments_number() ) {
comments_template();
}
endwhile;
?>