GuyPrimavera
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Editing wordpress HelpHi Gwynne,
If I understand your issue correctly, then this is exactly how WordPress was intended to work. The Visual tab shows a “What You See Is What You Get” editor, and the Text tab can be used for more advanced editing or inserting HTML code.
For basic editing, you will probably never need to use the Text tab.
Forum: Networking WordPress
In reply to: Multisite / Sub (child) siteHi Danielle,
Are you planning on running one website with different sections/categories, or a few different websites with different content for each? You might not need to use Multisite for this.
It sounds like you are missing a colon from your site settings, after http .
Forum: Fixing WordPress
In reply to: Dropdown menu helpHi Scoren Design,
Try adding the following to your child theme’s style.css:
.nav li li ul { right: auto; }
Forum: Fixing WordPress
In reply to: Getting users back to http from httpHi Yclhtc,
Have you changed the WordPress Address and Site Address in Settings > General?
If these two fields are already set to http, I would try searching in the database for “https” to see if there’s something that’s still trying to use the old secure URL.
Forum: Plugins
In reply to: [Editor Menu and Widget Access] Not removing themes and background from menuHi Phinn,
I’ve released an update for this plugin which now gives you control of exactly which elements you’d like to hide from the Editor role.
You can find the new options page in the Appearance menu whilst logged in as an Admin.
Please update to version 2.0 and this should resolve your question.
Thanks.
Forum: Plugins
In reply to: [Editor Menu and Widget Access] Not removing themes and background from menuHi Phinn,
From the plugin description:
This plugin also gives access to the Customize submenu and other theme options, but the Themes submenu has been hidden.
The Themes submenu is the submenu called “Themes” (also known as the “Themes selection page”). This has been hidden from Editors. The “Theme Options” are other custom pages that a particular theme might add. These pages might be called “Theme options”, “Header” or “Background”, for example.
I’ll release an update very shortly to give you the choice to hide many of these additional pages, and hopefully this is what you’re looking for. ??
Thanks.
Forum: Plugins
In reply to: [Editor Menu and Widget Access] Not removing themes and background from menuHi Phinn,
Thanks for your feedback. Yes it was designed to give access also to the “customize” page and other theme options, whilst hiding the theme selection page, so I’m glad to hear it’s all working correctly. ??
I’ll release a plugin update very soon which gives an “options” page to select which elements you’d like to hide from Editors and which you’d like to show. Be sure to update to plugin version 1.2 once it’s released to see the new options page!
Thanks.
Forum: Fixing WordPress
In reply to: SEO ProblemsThat’s great!
For the keywords issue, this might be due to the way that the keyword density website works to analyse a page. Try looking in Google Webmaster Tools to see which keywords Google is actually picking up. If you don’t see the strange entries in there then the issue is likely with the keyword density website.
Forum: Networking WordPress
In reply to: edit dashboard in multisiteHi Kardo Muradi,
Try searching the WordPress Plugins repository for “Admin Themes” or “Admin Color Scheme”. Hopefully you’ll find some designs that you like.
You can then use a plugin such as Admin Menu Editor to change the order of items and what is displayed.
Forum: Fixing WordPress
In reply to: SEO ProblemsHi D Jordan,
What you’re seeing are “Data URIs”, which is the image data instead of linking to an actual image file. You can read here for more information.
The problem comes from your bullet points, and I’m guessing you have a plugin to generate these bullet images ( possibly this one? ).
Try disabling the plugin and then search through your page source to see if they have gone.
Forum: Fixing WordPress
In reply to: CSS code for button, where and how to add code to siteHi Linda,
No worries! Yes that code will give you a link, but you’ll need to add a “class” to it to get the styles from your new piece of CSS code, which will look like this:
<a href="#" class="btn">text on button</a>
Forum: Fixing WordPress
In reply to: CSS code for button, where and how to add code to siteAlso please note that a theme update will overwrite these changes, so the best long term solution would be with a child theme, but you would need access to the website through FTP for that.
Forum: Fixing WordPress
In reply to: CSS code for button, where and how to add code to siteHi Linda,
If you don’t have access to your website’s files through FTP, you can add this code through your WordPress admin area (if you have an Administrator account).
- In your admin area, go to “Appearance” > “Editor”.
- Look at the “Styles” section on the right-hand side and select your main stylesheet (probably called “style.css”).
- Scroll to the very bottom and paste your code after everything else in the file.
- Click “Update file”.
Your website should now show the changes. There might be issues with more complex code and media queries (when the site is viewed on smaller devices), but just changing a button’s appearance shouldn’t cause any problems.