Cartmell86
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Error Connecting JetPackIll take a look into it.
No Security plugins being used currently, hosting does not block access to this file as it was working for over a year than randomly stopped.
Based off of two different FTP browsers,
I can see the file when using FileZilla, but not when using my providers web based ftpForum: Themes and Templates
In reply to: [Enigma] Content OverflowHello,
Website
https://www.albertacraneservice.comScreenshot:
https://www.albertacraneservice.com/wp-content/uploads/2015/04/abcs-content.jpgIf there is anyway to change the max height before the overflow kicks in too, that would be beneficial
Forum: Themes and Templates
In reply to: [Enigma] Social MediaIs there an approximate ETA on the update? Mind you the system I have right now works, but Id like to use it for other features.
Thank you for the quick reply weblizar
Forum: Themes and Templates
In reply to: [Enigma] Social MediaYes, of course the social icons are enabled under theme options. I thought I mentioned that before. if not, then yes lol
Forum: Themes and Templates
In reply to: [Enigma] Social MediaI never had 1.8.4, so I am stuck with this version right now. Please update or reply
Forum: Fixing WordPress
In reply to: Catchable fatal errorNevermind, I have found a fix, very simple and easy. If anyone else runs into this issue with “Enigma” Theme
Taken from Line 231 – 238
} elseif (is_attachment()) { $parent = get_post($post->post_parent); $cat = get_the_category($parent->ID); $cat = $cat[0]; echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' '); echo '<li><a href="' . get_permalink($parent) . '">' . $parent->post_title . '</a></li> ' . $delimiter . ' '; echo $before . get_the_title() . $after; }
Change to
} elseif (is_attachment()) { $parent = get_post($post->post_parent); $cat = get_the_category($parent->ID); $cat = $cat[0]; # echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' '); echo '<li><a href="' . get_permalink($parent) . '">' . $parent->post_title . '</a></li> ' . $delimiter . ' '; echo $before . get_the_title() . $after; }
Forum: Fixing WordPress
In reply to: Catchable fatal errorYes, the error goes away on a the default theme Twenty Fourteen.
Although I’ve put a ton of dedicated and time into this other theme, I would hate to have to rebuild from the ground up. Suggestions to possible fixes?