Frumph
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Date doesn't show up right, but with a lot of zerosUnfortunately the Avada theme is a themeforest pay-for theme and is not supported by the wordpress.org support forums, you would have to contact them.
On the other side of the coin is, it’s probably something as simple as the section which outputs the date is just not getting the right $post information or it’s null at the time so would be an easy fix.
Forum: Fixing WordPress
In reply to: HTML being stripped out of scheduled postsEveryone has, the posts text area doesn’t allow most advanced html and scripting code inside of it.
The way around it is to program a filter that adds to the_content, for example:
Taken from this post here: http://www.deadhippo.com/2012/09/28/embed-a-kickstarter-video-in-a-wordpress-post/
function Kickstarter_Parse ($content) { global $post; $content = preg_replace("/\[kickstarter file=https:\/\/www\.kickstarter\.com\/projects\/([^ ]+) \/\]/i","<iframe frameborder=\"0\" height=\"410px\" src=\"https://www.kickstarter.com/projects/$1/widget/video.html\" width=\"480px\"></iframe>",$content); return $content; } add_filter('the_content', 'Kickstarter_Parse');Then you do [kickstarter file=https://theurlofthekickstartervideo] inside your post and that will retranslate it out to the whole iframe code.
Forum: Fixing WordPress
In reply to: Priimo Theme Missing Featured Picture OptionIn the functions.php of your theme, verify there is the add_theme_support( ‘post-thumbnails’ ); line in there.
If not, add it.
Forum: Fixing WordPress
In reply to: delete 'leave a reply' problem.. in the post or page editor .. in the upper right hand corner is a tab that when clicks it brings up a set of checkbox options, checkmark the one that says [x] Discussion
Then, you will see a new set of options under the textarea box for your post that you can disable those checkboxes to not allow comments on that page or post.
Forum: Fixing WordPress
In reply to: custom post template not working with Custom Post Type posts.. if your custom post type didn’t flush the rewrite, you need to go to settings -> permalinks and click ‘save’ once so that it flushs and recreates them there.
Otherwise you would get 404 errors or not able to redirect properly to the template you want.
Forum: Themes and Templates
In reply to: mailto: in Php HeaderYou would need to first provide us with the theme name you are using, then best thing to do is post on the support section in the themes/theme_name section of the site so that the developer of that theme can be notified that there’s a question regarding it.
Not every header.php is the same is the reason.
Forum: Fixing WordPress
In reply to: problem linking to a page.. that’s a preview link and will only work for a short duration from the browser that viewed it.. (that’s the preview_nonce part)
it’s a draft, have you tried publishing it and getting the real link?
Forum: Fixing WordPress
In reply to: Any Way to Rever Back to 3.4.2 from 3.5?Export your current site that is 3.5 and import it into a fresh 3.4.2 would work as well.
Forum: Fixing WordPress
In reply to: Javascript error found – what now?I would post on the plugins support page so that the plugin owner can be notified of this happening.
Forum: Fixing WordPress
In reply to: facebook like and sharethe link to the youtube video needs to have &feature=related at the end of it, or &feature=share ..etc.
Forum: Fixing WordPress
In reply to: image are not loading in the postOn those posts it’s showing that they’re not finding featured images for those posts, you verified that they exist for those posts?
Forum: Fixing WordPress
In reply to: Site infected with Malware & Site blacklisted.Add the plugin wordfence security and have it do a scan.
Otherwise follow this guide: http://codex.wordpress.org/FAQ_My_site_was_hacked
Forum: Fixing WordPress
In reply to: Get two post meta keys and values print arrayFor meta keys that only have one entry per key
$meta_keys = array('custom1', 'custom2'); foreach ($meta_keys as $key) { $key_value = get_post_meta($post->ID, $key, true); if (!empty($key_value)) echo 'Key: '.$key.' Value: '.$key_value; }The question is, do you you have more then one value and multiple keys of the same name?
Forum: Fixing WordPress
In reply to: '0' as in Zero for Category NameDon’t name your category 0 .. at least not the slug.
Forum: Fixing WordPress
In reply to: Former Web Designer May Have Changed My PasswordYeah the /wp-login.php file gets executed when someone goes to wp-admin