jkovis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to remove the image bordersI went to the site but I don’t see any images with CSS borders around them. Can you describe what the “news images” are and where on the site they’re located?
Forum: Fixing WordPress
In reply to: How to remove the image bordersCan you post a link to your site?
Forum: Fixing WordPress
In reply to: Starting Over – How to backup my posts?For all of my sites I install this plugin and setup automatic backups (you can have them emailed to you).
Forum: Fixing WordPress
In reply to: The manual and the automatic excerptIf you manually set an excerpt WordPress then will use that when you call
the_excerpt()(instead of generating the 55 word one).You’ll need to know some PHP, but it looks like there is some sample code here that may help you generate the 55 word excerpt as WordPress would have.
Forum: Fixing WordPress
In reply to: Feed problems after new installWhat URL are you trying to access the feed from? I tried http://euphonynetwork.com/?feed=rss2 and it worked for me.
You’ll need to update your permalink structure if you want to use euphonynetwork.com/feed/.
Forum: Fixing WordPress
In reply to: How to remove the image bordersTry adding the following code to the bottom of your theme’s style.css file:
.wp-caption { background: transparent; padding: 0; }Forum: Fixing WordPress
In reply to: Can't get WP_Query to work properlyI’d try something like the following which should return all posts that have the ‘osiris_slider-main’ meta key.
$slider = new WP_Query( array( 'post_type' => 'any', 'meta_key' => 'osiris_slider-main', 'orderby' => 'date' ) ); print_r($slider);Forum: Fixing WordPress
In reply to: Image AlignmentCan you post a link to your site?
In the meantime, you may want to try adding the following code (taken from the 2011 default theme) to your theme’s style.css file:
.alignleft, img.alignleft { display: inline; float: left; margin-right: 24px; margin-top: 4px; } .alignright, img.alignright { display: inline; float: right; margin-left: 24px; margin-top: 4px; } .aligncenter, img.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; }Forum: Fixing WordPress
In reply to: problemas multiblogHave you followed the instructions for creating a network?
Forum: Fixing WordPress
In reply to: a little complicated situationDo you know which hack it was? There is a decent chance that the hack affected your old WordPress database so you’ll want to inspect the old database tables before importing anything.
You can try following this tutorial, but make sure to only export/import the tables you want (step 5). Make sure you backup your current (working) database before doing anything since it is quite easy to mess up exporting/importing the database.
Forum: Fixing WordPress
In reply to: Dashboard is missing on some of my sitesedit — sorry…pasted my response to the incorrect thread
Forum: Fixing WordPress
In reply to: Menu Placement on PageTry adding the following code to your theme’s style.css file:
.page-template-home-php .inner { width: 960px; }Glad to hear it’s working.
I had to stop and start php tags on some places in the code to get my divs and markup in, you do need to do that right? Or can I mix html and php?– You can do either, I took a quick look at your pastebin and it looks good to me.
Please mark this issue as resolved
Forum: Fixing WordPress
In reply to: Tag count?Without seeing the code in context it’s hard to say why it’s not working. Can you paste the entire file into a pastebin and then post that link here?
It’s all php code so place
<?phpat the start of the first line and?>at the end of the last line.