markcallen
Forum Replies Created
-
What was the faulty setting and what did you do to correct it? – This information would potentially help other users that encounter the same problem.
Forum: Fixing WordPress
In reply to: Drop-down widget problem on saveThis is resolved, by fixing a typo.
I had self-closed the opening select element. (replaced /> with >)Forum: Fixing WordPress
In reply to: Problem setting Permalink structureDon’t forget to mark the post as resolved if it is.
Thanks
MarkSimple Facebook Connect (https://www.ads-software.com/extend/plugins/simple-facebook-connect/) by Otto will integrate Facebook photo albums and the media uploader.
Hi ishaan
Permission to upload files is determined by the user roles. As an administrator you can change their role. Users can upload files as Authors upwards so to stop them uploading you should make them a contributor or a subscriber.
You can read more about it here
https://codex.www.ads-software.com/Roles_and_CapabilitiesIf the default roles don’t give you what you need you can try a role editor plugin like this one https://www.ads-software.com/extend/plugins/user-role-editor/.
Hope this helps.
Forum: Themes and Templates
In reply to: Header Text is LowercaseHi cjones
Looks like you need to change
text-transform: lowercase;
totext-transform: capitalize;
in your style.css file, at the following point.#header #header-menu ul li { height: 32px; font: normal 18px/32px Arial; color: #ffffff; float: left; text-transform: lowercase; padding: 0 15px; }
You could also just remove that line altogether and the text will remain as entered.
See https://www.w3schools.com/cssref/pr_text_text-transform.asp for more details.
Hope this helps.
Forum: Themes and Templates
In reply to: Trouble with Archive PageHi nifft
Try adding a call to
wp_reset_query();
at the end of your loop for$my_query
.Hope this helps.
Forum: Plugins
In reply to: add schema.org property to featured imageHi sigsol
Try this
<?php the_post_thumbnail('post-thumbnail',array('itemprop'=>'image')); ?>
Forum: Plugins
In reply to: [Plugin: Cookies for Comments] Alt attribute needed for w3c validation+1 on this request.
Adjusted manually, but don’t want it to be overwritten by updates.
Great plugin, thanks!
Forum: Fixing WordPress
In reply to: add_meta_box with 'side' context messes up admin areaI fixed this – the problem was a html error in the callback function (missed putting a </div> in!!).
Feeling suitably stupid about the time it took me to spot it !
Forum: Fixing WordPress
In reply to: Problem setting Permalink structureThe custom structure you’re typing in is the same as setting the option to ‘Post name’ in the default list. If you change it to something that isn’t on that default list, the Custom Structure radio will remain checked with whatever structure you’ve set.
Hope this helps.