transpersonal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Video sharing siteWell, never having used the plguin myself or a foreign version of wordpress I can’t answer that. Many plugins support language packs. This one doesn’t seem to come with any. Mabye you can try contacting the plugin creator and ask them. Good luck.
Forum: Fixing WordPress
In reply to: can’t find the FTP directoryThe proper ftp url is the one iridiax stated above:
If you want to ftp from the command line it’s:
ftp your.ip.address.here
or you can always use a ftp client like filezilla.
Forum: Fixing WordPress
In reply to: turn off comments on pages by defaultSettings >> Discussion >> uncheck “Allow people to post comments on new articles”
This applies to new posts that you will publish from now on. To disallow comments from already publish posts:
Posts >> select them all and “Edit” under bulk actions and hit apply >> choose “do not allow” next to comments and hit update posts.
Forum: Fixing WordPress
In reply to: How to make blog my homepageSettings >> General >> blog address url should be: http://yoursite.com/
Forum: Fixing WordPress
In reply to: Video sharing siteI never used it but I’m sure it can do a lot more than just displaying a sidebar. You need to read up on it’s documentation and configure the plugin on it’s page (most probably under Settings in your dashboard). I do know that this is the most feature rich plguin for videos that is currently offered for wordpress. So if this can’t do it you’ll need to look elsewhere.
Forum: Fixing WordPress
In reply to: Video sharing siteThis one:
http://wordpress.org/extend/plugins/all-in-one-video-pack/
has these features:
* Upload, record from webcam and import all rich-media directly to your blog post;
* Edit and remix videos using Kaltura’s online full-featured video editor;
* Easily import all rich media (video, audio, pictures…) from other sites and social networks, such as MySpace, Flickr, CCMixter, Jamendo, New York Public Library, any URL on the web etc.;
* Allow readers and subscribers to add video and audio comments, and to participate in collaborative videos;
* Manage and track interactive videos through the management console;
* Sidebar widget displaying thumbnails of recent videos and video comments
* Complete administrative capabilities. You decide who can add and edit each video;
* Supports more than 150 video, audio and image file formats and codecs
* Choose your preferred video player style for each player you embed
* Custom sizing of the video player
* Update thumbnail of video by selecting frame from video
* Advanced sharing options for videos
* Sidebar widget showing all recent videos posted and video comments.
* Easy installation that takes just 4 steps and a few minutes.New features included in Version 2.3:
* Widescreen support – you can now upload widescreen videos into a 16:9 player
* New cool video player designs to choose from
* Choose between uploading a single media file or creating a mix with more than one file
* Bug fixing and maintenanceEven for a small video site you need a LOT of Bandwidth and a high Traffic package!
Forum: Fixing WordPress
In reply to: textarea#comment width?Anywhere, but just to be safe put it all the way at the end (so it overrides any duplicate rule that might exit).
Forum: Fixing WordPress
In reply to: why there are huge gap between my pictures ?does it serve the same purpose as the regular gallery ?
i can put the gallery in my post ?Yes and you can do a lot more with that plugin. But try what SpankMarvin suggested as a last try.
Forum: Fixing WordPress
In reply to: why there are huge gap between my pictures ?This is the most popular plugin for that, you can try it:
Forum: Fixing WordPress
In reply to: why there are huge gap between my pictures ?Okay, I checked through the theme myself and found out that the css for the gallery comes from the core wordpress files. Since modifying these aren’t a good idea try adding this at the bottom of your style.css:
#gallery-1 .gallery-item {
float:left;
margin-top:10px;
text-align:center;
width:auto !important;
}If this doesn’t work let me know.
Forum: Fixing WordPress
In reply to: why there are huge gap between my pictures ?Alright, last option: post the link where you downloaded your theme.
Forum: Fixing WordPress
In reply to: Two Questions#1. Go to Settings >> General. Change the tagline there.
#2. Also under Settings, go to Reading. Under “Front page displays” – Select “A static page (select below)” and select the page you want to show as your homepage.
Forum: Fixing WordPress
In reply to: why there are huge gap between my pictures ?Are you using some type of plugin for the gallery?
Forum: Fixing WordPress
In reply to: why there are huge gap between my pictures ?On second thought it is most likely outside of header.php. Just look through all your theme files until you find the above code.
Forum: Fixing WordPress
In reply to: why there are huge gap between my pictures ?Apparently this is embedded css. Go to your header.php in the theme editor and look for this:
<style type=’text/css’>
#gallery-1 {
margin: auto;
}
#gallery-1 .gallery-item {
float: left;
margin-top: 10px;
text-align: center;
width: 50%; }
#gallery-1 img {
border: 2px solid #cfcfcf;
}
#gallery-1 .gallery-caption {
margin-left: 0;
}
</style>and change the width’s value to auto.