mypersonalaccent
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Cache] White Screen – Site not loading when enabledInteresting. That appears to be this line:
if (!class_exists('CacheMeta')) { class CacheMeta { // this line var $dynamic = false; var $headers = array(); var $uri = ''; var $post = 0; } }
I’ve run it through a code checker and nothing comes up. I’m not sure how to check for that class or implement it otherwise.
If I am correct it is saying, if CacheMeta does not exist, then run those parameters for CacheMeta.
Amber
Forum: Fixing WordPress
In reply to: PHP Line Break HelpThank you, so much Andrew! It actually did not work properly but I wouldn’t have been able to do it without you. I just had to add a
br
here is the code I used:$items .= '<div class="details-wrap">'; $items .= '<h4><a href="'.$post_permalink.'">'.$item_title.'</a></h4>'; $items .= '<div class="post-item-details">'. sprintf(__('By %1$s', 'swiftframework'), $post_author ); $items .= '<br>'; $items .= sprintf(__('On %1$s', 'swiftframework'), $post_date); '</div>';
Just in case anyone needs it.
Thank you!
Forum: Fixing WordPress
In reply to: New Installation = Photos not uploadingCan you go to your FTP and change the file permission to 705 and see if that helps?
Amber
Forum: Fixing WordPress
In reply to: Https issue on non https websiteHi ShootingTime,
Have you tried contacting BlueHost? It appears that the SSL certificate it is trying to reach (if I am correct) is via BlueHost.
I would contact them and see if everything is right on their end.
Amber
Forum: Fixing WordPress
In reply to: locked out of adminHi Alan,
Have you uploaded anything new recently? Installed any new plugins or changed any code? Can you give us a link to your site?
Amber
Forum: Fixing WordPress
In reply to: New Installation = Photos not uploadingWhat kind of error message are you getting when trying to upload the photos?
What are your file permissions set as for the uploads folder? (numeric value)
I’m not sure why but something that help clear up some random issues when we moved to a new host was to go to the Dashboard > Settings > Permalink. Click “Post Name” (which is what it looks like you have it set as), even if it is already checked, click it and then save changes.
Amber
Forum: Fixing WordPress
In reply to: Certain category page not "paging" correctly.I am not trying to bump this but it has been 5 days, does anyone have any idea? I have still yet to figure it out and cannot afford to hire someone.
Forum: Fixing WordPress
In reply to: A like button after a post, with avatars?Forum: Themes and Templates
In reply to: Help with change graphics on TemplateYAY! I think I got it. This might be a backwards fix but I just replaced:
<img src="<?php echo $logo; ?>" alt="<?php bloginfo( 'name' ); ?>" />
with
<img src="https://www.mypersonalaccent.com/wp-content/uploads/2013/10/pixel.png" />
Just a blank pixel. Which works!
Thank you SO much, WPyogi, for your invaluable input!
Amber
Forum: Themes and Templates
In reply to: Help with change graphics on TemplateOkay, I was able to remove the coding to get the logo gone and resize the container so it shows my full header put in via CSS. However, now it shows a blank image over it, like a broken image box. I have narrowed it down to this code in the header.php file.
<?php } else if ($header_layout == "logo-full") { ?> <div id="logo"> <a href="<?php echo home_url(); ?>"> <img src="<?php echo $logo; ?>" alt="<?php bloginfo( 'name' ); ?>" /> </a>
However, if I remove it, the header/logo area completely goes away. And I can’t put a direct IMG URL there since I want to be able to change it and just use CSS to call the header.
Any ideas?
I’ll keep trying to work it out.
Amber
Forum: Themes and Templates
In reply to: Help with change graphics on TemplateSure, thank you.
On this page: https://www.mypersonalaccent.com/tasty-delights/
I want this image as the header image: https://www.mypersonalaccent.com/wp-content/uploads/2013/09/tdheader.png
But right now the “default” image: https://www.mypersonalaccent.com/wp-content/uploads/2013/09/mpaheaderw.png
is being put on this page over the image I want. I am assuming this is because this is set as the default header. Even if I remove the default header and put it back in with CSS, the Pinpoint logo defaults there instead and is then over all of the header images. I somehow need to remove that default logo always being there so I can just code it in where I want it with CSS.
I see a bunch of calls for “logo” in the header.php file but I am not sure which (if any) I should remove.
Thank you!
AmberForum: Themes and Templates
In reply to: Help with change graphics on TemplateI think it is because the theme I am using adds a header image for you. I removed the original header in the theme options (Pinpoint theme) and add the header into the CSS per how you showed me. It showed up, but the original Pinpoint logo is placed over it and it is super small. It isn’t stretching like it should and I can’t get rid of the pinpoint default logo. If I add my header back, everything is fine, but then it is still placed over the header I wanted to use on this page: https://www.mypersonalaccent.com/tasty-delights/
Thank you again for all of your help and sorry to be a pain!
Amber
Forum: Themes and Templates
In reply to: Help with change graphics on TemplateThank you! One more thing and I will mark as resolved and leave you be ?? Is there a way to get the other header image off?
https://www.mypersonalaccent.com/tasty-delights/
Right now my new header is behind the old header.
Amber
Forum: Themes and Templates
In reply to: Help with change graphics on TemplateYou are seriously amazing. I have been working on this for hours. Thank you so so much. I am going to assume this will work with everything I want it to then such as the headers and BG? I am like jumping for joy ??
As for the W3 Check. Thank you very much. That was very considerate. Any advice on where I could fix that at? I don’t see, for example, the meta-name code in any of my files. I do well at HTML, PHP… not so much.
Amber
Forum: Fixing WordPress
In reply to: Installed New Blog Directory… where are my posts?Thank you!! I used your suggestion, I had to delete like 4 plugins via FTP, but all of the posts are back! Thank you!!