Theme javascript/css 404

Thanks to @jacob peattie for helping me to figure this out. The issue is that I had WP_CONTENT_URL set incorrectly. Removing it fixed the issue. I could have added /wp-content to the url and it would’ve solved the issue as well. To explain why this caused in issue, I turned to the docs. This page … Read more

How to override theme class function to child theme? [closed]

Based on the information provided? You can’t, it’s not possible. Child themes can only override code from parent themes if the parent theme explicitly provides a way for child themes to do so. They can do this by providing a hook, or by making functions ‘pluggable’, but class methods can’t be pluggable.

Basic Theme for a Static Corporate Website?

The rachatdecredit theme is almost certainly a custom theme, you can tell from the URL for the stylesheet. Most of the time if a theme is in a directory with the same name as the site it is custom, or at least a child theme: http://www.rachatdecredit.net/wp-content/themes/rachatdecredit/style.css Since you want something very basic, I would suggest … Read more

Copying post thumbnail to custom field

I wouldn’t bother doing that. I’d just find the places in your theme files that call the custom field (probably something like “echo get_post_meta(‘bigimage’)” or something) and replace those with a the_post_thumbnail() tag. This saves you the trouble of messing with the data, and it makes administration much, much simpler going forward–which is kind of … Read more