Understrap child theme JS not working in custom-javascript.js file
Understrap child theme JS not working in custom-javascript.js file
Understrap child theme JS not working in custom-javascript.js file
Updates for a private theme
Create membership number for existing/new users
I’ve seen this happen a couple of times where one of the database tables count of posts differs from the actual number and all the posts disappear. Using PHPMyAdmin and go into your WP database. Look down your columns (I think it’s the “Records” column) and see if any of them show corrupt or some … Read more
I’ve only got a minute to offer suggestions tonight but I thought I’d quickly point you to two (2) other answers here on this website that provide information you’ll need. Much of what I’d suggest for your use-case is identical to what I recommended on these other answers: Tips for using WordPress as a CMS? … Read more
Next to .height() and .width() there is .outerHeight() and .innerHeight() (same for width as well). You might be looking for these methods to gather the browsers size, not only the size of the windows viewport. Keep in mind that this not always works 100% across all browsers, so you always might run into problems if … Read more
I don’t think it is possible to create a subcategory.php, but you can do the following in your category.php: $category = get_category( get_query_var( ‘cat’ ) ); if( !empty( $category->parent ) ) { // the category has a parent, so it is a subcategory // do stuff } else { // do else }
If you’re running the latest version of WordPress, all default widgets (including the RSS widget that ships with WordPress) are multi-instance. This means you can drag multiple instances of the same widget onto the sidebar and have each one contain different content. So without knowing exactly which “RSS scrolling widget” you’re using, I can only … Read more
You really need to specify how it does not work. There are no multisite-specific theme tags. 99% of the themes out there for WordPress work in a network. If you’re getting errors, check your error logs. If it’s not grabbing image th8umbnails, that’s a known issue – not with multisite or the timthumb script, but … Read more
is there a plugin called Members created by Justin Tadlock which gives you tools to manage the roles of existing users and to create new roles. Members has what I call “components.” Instead of normal plugin settings, you get the components selection page-That Allows you to choose only the features That You want to use.