Andy Christian
Forum Replies Created
-
Forum: Plugins
In reply to: Plugins não instalaHi there. This forum is for support issues in the English language only. Please ask your question in the forum below:
Forum: Plugins
In reply to: Plugin killed my website. How do I remove the plugin?Yep, you’ll have to do it via FTP. The plugin directory will be inside wp-content/plugins/.
Once you delete the directory, you should be able to refresh your WordPress admin, and the plugin will be deactivated.
For additional help with the issue, you should ask over at gravityforms.com.
Forum: Plugins
In reply to: WordPress plugin like codecanyon websiteHi there. You should be able to do that with Woocommerce, perhaps just doing one store with multiple users, and set the users as Authors which requires an Editor to approve.
I’d suggest asking over at Woocommerce.com for more specifics.
Forum: Themes and Templates
In reply to: [Codium Extend] [Theme: Codium Extend] Make Header Clickablethe better workaround would be to make the header image the background of the anchor tag and resize it to the correct size if need be. (On my site, wpcamper.com, I wanted a smaller image instead of a full wide header, so I added the following CSS:
#blog-title a { display:block; background:url('http://wpcamper.com/files/2012/08/wpcamper2.png') top left; background-size:100%; background-repeat:no-repeat; height:100px; width:400px; max-width:100%; font-size:0; }Note, for this to work, you actually want to leave the header text turned on. The css makes it invisible by changing the font size to 0.
Forum: Localhost Installs
In reply to: "www" not resolving but just teh domain name worksAlso, you said it was a localhost server. Is it apache or something else? Did you update it recently? It might have changed how it handles htaccess handling.
Forum: Localhost Installs
In reply to: "www" not resolving but just teh domain name worksI’m not sure why that would’ve happened. If you recently upgraded WordPress, that might be it. I had to have WordPress re-initialize my htaccess after a recent update (though it was a beta update, so I don’t know if that applies here.)
Forum: Fixing WordPress
In reply to: Change Social Bookmark OptionsThose links are normally not built into WordPress. If you don’t already have a plugin that is adding them, then they are being added by the theme. Try looking in index.php and single.php to see if they are there.
What theme are you using?
Forum: Everything else WordPress
In reply to: Central, PA. Mac user desperate for start up helpWhere in Central PA are you? There are WordPress meet ups all over PA (try searching at wordpress.meetup.com). I’d also suggest buying Lisa Sabin-Wilson’s WordPress for Dummies book.
If you’re just looking to start a few blogs, you could start out with WordPress.com.
Forum: Plugins
In reply to: Am I old enough for this – age verficationYou can do that by adding to your style.css file.
Forum: Plugins
In reply to: Adding certain users to a groupForum: Fixing WordPress
In reply to: redirect my siteTry the following code in your old site’s htaccess:
Options +FollowSymLinks
RewriteEngine onRewriteCond %{HTTP_HOST} ^arabcafe10.net$ [NC]
RewriteRule ^(.*)$ http://3rbc.net/$1 [R=301,L]Forum: Fixing WordPress
In reply to: User registration for personal data consultingYou should be able to make the Page “Private” under the visibility section of the edit page screen. You may also need to use a user role editor plugin to modify the rights of the user roles to be able to see private posts, as generally only Admins and Editors can see them.
Forum: Plugins
In reply to: mini blog inside the existing oneLook for a theme (or search for how to add to your own theme) that supports ‘asides.’
Forum: Plugins
In reply to: From WordPress to TwitterThere are definitely plugins to update *your* twitter feed when you add a post, but I’ve never heard of one that updates the readers twitter feed
Forum: Localhost Installs
In reply to: "www" not resolving but just teh domain name worksTry adding the following code to your htaccess file:
RewriteEngine on RewriteCond %{HTTP_HOST} ^example\.com$ [NC] RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,