wordpress theme link url

There’s possible a couple different things going on, so here’s a relatively generic answer. Site URL Many URLs are influenced by the Site URL settings in Settings > General. The steps for properly moving a site are too long for a single answer, but review the “Changing the Site URL” codex page and make sure … Read more

Firebug and Chrome rendering two body tags

I managed to fix this issue by commenting out the first body tag and placing a second body tag below like this: <!– <body> –> <body <?php body_class( $class ); ?>> Now the site is working correctly. However the strange character is still appearing in the first body tag. Hope this helps someone.

Detect PHP script usage in themes?

You can look at the source code and search for common URLs to such a script. But that will just show you something useful when a theme is using that script. If you find nothing, the script might still be part of the theme code. Themes on wordpress.org are not allowed to include TimThumb (as … Read more

Where is the stylesheet code?

The most common would be /wp-content/themes/your-theme-name/style.css but this may not be the case depending upon the theme you are using. The easiest way to find out is to use Chrome Developer Tools. In Chrome open your website and right click on the element you would like to alter the CSS for, then click ‘Inspect Element’. … Read more

Featured images are cropped on index and post page

This is likely a tweak the theme author made to make the images in the theme responsive or adaptive. You may want to look at adding “min-height” to your CSS and this should address your problem. https://css-tricks.com/almanac/properties/m/min-height/ Also another thing to note if you using “100%” anything the actual dimension is governed by the parent … Read more

Password Protected Page + Showing Different Page If Not Authenticated/Authorized

As ialocin mentioned some requirements will require extra customizations. I can create a number of passwords to access the page You would create user accounts. Passwords don’t exist without users. An expiration date can be set for each password This isn’t implemented in wordpress and requires the most work. You could probably store a date … Read more

load language file

you don’t need to edit functions.php (moreover don’t edit this line or it will break the localisation of the theme, because arcade, is the code used to know where to search translations) according to the line you read in functions.php, you have to put fr_CA.mo and fr_CA.po in wp-content/themes/arcade-basic/library/languages