unfinishedcode
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Lost wp-admin, wrong link on landing pageI’m not sure how your site is setup, the landing page is much different from the rest of your site. I’d contact whoever built it in the first place.
- This reply was modified 8 years, 8 months ago by unfinishedcode.
Forum: Fixing WordPress
In reply to: Plugins integration to theme or wordpres Core.If you are looking to speed up wordpress, I would start by building your own theme with a lot of the plugin functionalities incorporated. Then install a few plugins that are a little more indepth, like Wordfence and Woocommerce.
Merging a bunch of plugins into your theme or child theme. Is not a good idea. Modifying the core is NEVER a good idea. Sacrificing future updates is NEVER a good idea.
Plugin developer build plugins to work universally, not custom with your site in mind.Forum: Fixing WordPress
In reply to: Sitename isnt shown in menu!Sorry, I have no idea what you mean by ‘but the template isnt shown the names of my sites’.
Forum: Fixing WordPress
In reply to: Trying to find a Gallery to match this…I’m not sure about a plugin, but that is very easy to create!
Forum: Developing with WordPress
In reply to: add_image_size set exact width + height does not matterBe careful adding image sizes to wp, it can eat up space very quickly! I’m not sure what you mean by floating.
Forum: Fixing WordPress
In reply to: Password Issue – Nothing’s workingCreate a user normally, then promote them via the database;)
the details are in the usermeta table, in a field called capabilities. It’s stored as an object. I would figure out why password resetting is not working.Forum: Fixing WordPress
In reply to: Fatal Error with my WordPress SiteBest guess is a error with the plugin you just installed. Uninstall the plugin.
Forum: Fixing WordPress
In reply to: Postback URLs in WordPressSo you want to track visitors coming from an advertising site, going to your site?
Forum: Developing with WordPress
In reply to: ‘get_recent_posts’ Not Working for Custom Post TypeHa! I made that mistake before.
Forum: Fixing WordPress
In reply to: Disable Name Change in User Profile WordPress MultisiteThis is one of those truly unique questions. I’d create an Admin theme making the First/Last Name fields readonly. Here is a link to creating a custom admin theme for WordPress.
Forum: Fixing WordPress
In reply to: Custom WidgetI’d just build it into my theme, and make options populate the info on the CTAs. How you do it depends on the proficiency with web development:)
Forum: Fixing WordPress
In reply to: Unknown folders, files in wordpress found via FTPIt’s all from the virus. Wordfence is your friend:)
Forum: Fixing WordPress
In reply to: how to edit the header info in wp_headHeader info is stored in header.php.
There is body tag stuff in header because most of the time I want my nav and header on every page, same goes for my body tag. It’s just easier to put it once instead of calling again on every file. Reduction of redundancy:)Forum: Fixing WordPress
In reply to: How to integrate google adsense with wordpressCreate a child theme, add the code they give you in header.php, just did this myself yesterday:)
Forum: Developing with WordPress
In reply to: ‘get_recent_posts’ Not Working for Custom Post TypeWhy use all the unneeded args? Try this instead:
$args = array( 'numberposts' => 1, 'orderby' => 'post_date', 'order' => 'DESC', 'post_type' => 'podcasts', 'post_status' => 'publish', 'suppress_filters' => true );- This reply was modified 8 years, 8 months ago by unfinishedcode.