tropicaltidbits
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posted comments are blank – call_user_func_array errorStrangely, the file outputting the error is “plugin.php”, presumably dealing with the WP plugins, yet the error shows up even after deactivating all plugins.
Forum: Fixing WordPress
In reply to: Posted comments are blank – call_user_func_array errorIf more code is needed I can provide it via pastebin.
Forum: Fixing WordPress
In reply to: Posted comments are blank – call_user_func_array errorCode from plugin.php…line 170 is the last one:
reset( $wp_filter[ $tag ] ); if ( empty($args) ) $args = func_get_args(); do { foreach( (array) current($wp_filter[$tag]) as $the_ ) if ( !is_null($the_['function']) ){ $args[1] = $value; $value = call_user_func_array($the_['function'], array_slice($args, 1, (int) $the_['accepted_args'])); }Forum: Fixing WordPress
In reply to: Add a widget bar to comments_template.phpBecause somehow I need this widget bar to float to the right of the comment textarea wherever it goes, but there is no other element with which to accomplish that task except the textarea html tag itself. This is the file where that tag is generated, and therefore the file I want to edit to accomplish this.
Forum: Fixing WordPress
In reply to: Any Facebook like button plugin won't show up in Google ChromeWow – I’m a dummy. I had a Facebook disconnect extension installed on Chrome that was letting all other like buttons I have seen show up, but not the one on my own site. I removed that and it became visible. Thanks for making me think just a little bit harder 🙂
Forum: Fixing WordPress
In reply to: Which file gets displayed by the web browser?fonglh – Thank you. This is what I wanted to know.
Forum: Fixing WordPress
In reply to: Which file gets displayed by the web browser?That is only one specific thing that I would like to accomplish….this post is meant to be a request for the general file(s) to edit to accomplish tasks like the one above. I need the file with the HTML code in it so that I can manipulate it like the fellow did in the post I mentioned when he removed the home button.
I have been very specific with what I want in this topic. Any help would be appreciated.
Forum: Fixing WordPress
In reply to: Which file gets displayed by the web browser?For example, look at this WP forum topic. That is something I would like to accomplish, but I don’t have a “header.php” file. I have a “wp-blog-header.php” file, but it is a very short php script with no HTML in it whatsoever for me to edit. Can anyone help with this?
Forum: Fixing WordPress
In reply to: Which file gets displayed by the web browser?So then which file(s) would I edit to change what is displayed in the web browser? The admin GUI only gives options for tweaking the theme colors, font, etc. I want to be able to remove entire sections of the HTML if possible.
Forum: Fixing WordPress
In reply to: Which file gets displayed by the web browser?I have read that this file should be “index.php”, but reading it gives me this:
<?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define('WP_USE_THEMES', true); /** Loads the WordPress Environment and Template */ require('./wp-blog-header.php');I looked at several of the other files that it references with no luck. Why isn’t the index.php the file displayed by the browser like it is supposedly supposed to be?