voala
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: PHP/WordPress API Codex: How do I hide HTML based on user role?I think it will work with MU to. Try it.
Forum: Fixing WordPress
In reply to: Sidebar widget – can't make edits, can't delete HELP!You could also try to disable and enable back the theme. I think this will reset your sidebar widgets.
Forum: Fixing WordPress
In reply to: Sidebar widget – can't make edits, can't delete HELP!This happens only with that particular text widget? Other text widgets save changes well?
The good news is that you can pinpoint that exact widget by its ID and hide it with display none.
There is another thing you could try. Go in Appearance > Widgets from top right hand corner click on screen options. Click on “Enable accessibility mode”. Select your widget and delete it.
Let me know if this works.
Forum: Fixing WordPress
In reply to: Sidebar widget – can't make edits, can't delete HELP!I would recommend to use display:none on that nasty text widget and create a new one.
There would be a solution to create a editable widget that would be clickable. You would have to create a new widget zone and wrap that zone in a A tag. I think that would work. This way the content of the widget zone could be populated with widgets and the entire content would be clickable.
Forum: Fixing WordPress
In reply to: Sidebar widget – can't make edits, can't delete HELP!do you have access over this widget from the admin side? Can you edit the content? I see there is !important set on the color codes. I think that is why you cannot change color from styles.css
I am afraid you will not be able to make the entire box clickable from the admin side. From admin you can make the entire content clickable by wrapping it into a A tag. (title+description+image)
If you want the entire widget to be clickable you would have to go to the sidebar php file and hardcode the widget thtere with A around the container div.
Forum: Fixing WordPress
In reply to: Sidebar widget – can't make edits, can't delete HELP!What is the problem widget?
Forum: Fixing WordPress
In reply to: PHP/WordPress API Codex: How do I hide HTML based on user role?have a look at this: http://wordpress.org/extend/plugins/adminimize/
If needed you could always create a new user role for your customer and hide the buttons from him.Some other problem I encountered with my customers is that they go and try to edit theme files from editor in the back end. This always messes the theme files up adding blank rows. You can disable this to from the config.php
Forum: Fixing WordPress
In reply to: Sidebar widget – can't make edits, can't delete HELP!Can you let me know the website so I will look at the problem? It may be that the widget is hardcoded into the theme.
Another solution would be to hide the widget from css with a display:none;
Forum: Plugins
In reply to: [Sidebar Login] [Plugin: Sidebar Login] No longer worksYes, I used Login with Ajax
Download from here: http://wordpress.org/extend/plugins/login-with-ajax/
See it live here (where I used it): http://www.business-caddy.com/Forum: Plugins
In reply to: [Sidebar Login] [Plugin: Sidebar Login] No longer worksNo, I changed to another plugin.
Forum: Plugins
In reply to: [Sidebar Login] [Plugin: Sidebar Login] No longer worksYes, it seems the plugin is not compatible with the latest WordPress version. Maybe an update would fix it. I just hope this will be available soon. I would hate to have to find another login widget plugin.
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] the send buttonI see the Submit button is a new problem from latest updates.
I was usually styling my submit buttons with CSS, but now it seems not to work any more. I tried to target that in many ways, but couldn’t overwrite the custom style from the plugin.What is the fix? I want to be able to do more with the submit button than just add a background to it.
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] Custom CSSOk, This can be resolved if you go and edit the custom-contact-forms-front.php file from wp-content/plugins/custom-contact-forms/
That is the file that generates the HTML structure of the forms. Look for the DIV tags in front of <label> tags. First one from what I can remember is for text fields. Below the label you will see that there is a “/n” before the <input> tag. That is PHP is a line break.
Remove that and the
will go away. Do the same for the other div’s.The thing is that when you will update the plugin all this mods will go away. So it is just a temporary fix.
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] Custom CSSI am also having this problem.
This is new, happened from the last 2 updates I think. I never had this problem before. Now I cannot style the forms anymore.Forum: Plugins
In reply to: Stop spiders (google, yahoo, etc) from indexing the websiteDamn, never knew of that option :).
Thanks.