Rachel Baker
Forum Replies Created
-
If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:memory_limit = 64M ;
If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64M
Or contact your web hosting company
Forum: Fixing WordPress
In reply to: How Can I Remove this Blue Shade?Your logo image is a .jpg file which does not have a transparent background.
If you have access to a transparent .png version of the logo, that would solve the problem.
If you do not have access to a transparent .png version of your logo, you can edit the style.css file.
Around line 66 look for this section:#branding {
background: #ffffff url(images/sky.png) top left repeat-x;
margin-bottom: 5px;
}…and revise to:
#branding {
background: #ffffff;
margin-bottom: 5px;
}Forum: Fixing WordPress
In reply to: Good PHP Forums?No problem. Also, I agree with Andrew. You are welcome to post here as well, I love helping with PHP/code related questions.
Forum: Fixing WordPress
In reply to: Good PHP Forums?JC,
First, kudos to you for getting started with PHP and learning on your own. That is never easy.
A good WordPress related forum for help with PHP code would be WordPress Answers.
Forum: Fixing WordPress
In reply to: Blank screen after activate pluginIt may be a PHP memory issue. Try adding this line to your wp-config.php file:
define(‘WP_MEMORY_LIMIT’, ’64M’);
Forum: Fixing WordPress
In reply to: Parse error Galore!Without having more information than
We were just working on the site a few days ago and everything was fine.
I would suggest reviewing your web server’s error log. Your hosting company can often help you with this – and the related troubleshooting.
Something to try:
You may not have enough PHP memory going to each of the sites. To resolve:1. If you have an access of PHP.ini file of the account/server then change the line in PHP.ini where line shows 32M to 64M:
memory_limit = 64M; Maximum amount of memory a script may consume (64MB)
2. If you do not have access of PHP.ini file then add this to an .htaccess file of your domain:
php_value memory_limit 64M
3. Try to add this line to your wp-config.php file to increase allocated memory to PHP:
define(’WP_MEMORY_LIMIT’, ‘64M’);Forum: Themes and Templates
In reply to: WP ThemeThat site is using a custom theme that was created specifically for the photographer – and is not available as a public theme.
Thoughts:
– you can find a developer to mimik the design for your site
– you can ask the photographer for the contact information of the theme designerForum: Fixing WordPress
In reply to: Parse error Galore!Check your code files for blank lines at the beginning of the file – that could be the cause of the error.
If that is not the case, then you may have a malware infection.
Forum: Fixing WordPress
In reply to: featured image not showingYour theme is looking for the images in the wp-content/gallery/ folder. Were you using some sort of gallery image plugin previously?
Can you provide more details on what you did?
Information on Child Themes: https://codex.www.ads-software.com/Child_Themes
Forum: Fixing WordPress
In reply to: Accidentally deleted CSSDo you have a backup of your theme files?
If not, can you re-download your theme to restore the full css file (losing any of your edits)?
Forum: Fixing WordPress
In reply to: Blank screen after activate pluginSounds like the plugin is causing an error/conflict. You can report it to the plugin developer(s)
Forum: Fixing WordPress
In reply to: The Application of collapsible-setIt is being added from the jquery.mobile.js file.
Forum: Fixing WordPress
In reply to: Can't get my jquery to work on this simple scriptCorneliatt,
Andrew Nevins response is correct. Initialize the script on document ready like so:
jQuery(document).ready(function(){ jQuery(".posts").hover(function() { jQuery(this).children(".headline").stop().fadeTo("fast", 1.0); }, function() { jQuery(this).children(".headline").stop().fadeTo("fast", 0); }); });
Forum: Fixing WordPress
In reply to: Remove a self-hosted blog from WordPress.com accountThe WordPress.com support forums are located here: https://en.forums.wordpress.com/
Forum: Themes and Templates
In reply to: Get rid of large space after hitting "return"When you hit “return” in the visual editor a new paragraph is created.
If you are creating a list, you should make sure to use the list buttons in the post editor.