asdf
Forum Replies Created
-
Forum: Plugins
In reply to: WordPress write posts to live XML fileWordPress sites have /?feed=rss2 or /feed, which is XML. I’d change the code on your site to cater to the structure of the WordPress feed. You can change the feed to show the content instead of only the excerpt in the settings.
Forum: Themes and Templates
In reply to: P2 Theme – Comment Threads broken on IE8I don’t think that’s causing it, but who knows with IE. It uses the classes .discussion and .commentlist.
I think it’s this issue that was solved here. .toggle ie8.
The file that would need altered is at /themes/p2/inc/js.php all the way at the bottom. For example change .toggle to .hide or .show, which makes me think it’s the issue above.
Forum: Themes and Templates
In reply to: P2 Theme – Comment Threads broken on IE8I just started trying to figure this out myself, it seems to work in anything but IE8.
It looks like wp_footer is adding this:
jQuery(document).ready( function() { jQuery("#togglecomments").click( function(){ jQuery('.discussion').toggle(); jQuery('.commentlist').toggle(); return false; }); });
If that’s it, it seems to be a bug with .toggle in IE8. The solution could probably be: If the style is display none .show else .hide.
I haven’t even found where the code is coming from yet, but I’ll post the solution if I figure it out. If anyone else knows the answer, it would be appreciated.
Forum: Plugins
In reply to: IMAGE PLUG-IN HELP!This works great for that https://www.ads-software.com/extend/plugins/featured-content-gallery/
Forum: Themes and Templates
In reply to: margin: 0 auto; not working for Internet ExplorerFor IE6 you’re going to want to add
text-align: center;
to the element parent to the container which you are usingmargin: auto;
For example if you had:
<body> <div id="wrap">
You could try:
body {text-align: center;} #wrap {width: 1000px; margin: auto;}
Forum: Fixing WordPress
In reply to: Wp-admin blank pageThanks!
Forum: Fixing WordPress
In reply to: version 2.7 – Where’s the Page Templates??I was making a theme this morning and it was driving me crazy that I couldn’t apply a template to a page. To fix, I activated the default WordPress theme and switched back to the one I was working on. After that the page templates I created decided to show up.
Forum: Plugins
In reply to: wp-register issueForum: Themes and Templates
In reply to: theme dev recommendations & web page to WP conversionHere’s a tutorial, and is pretty recent. I haven’t read through it, but I’ve heard good things about it from people that are new to WordPress themes. https://themetation.com/how-to-create-wordpress-themes-from-scratch-part-1/
Forum: Themes and Templates
In reply to: Embedding code properly on a PageIn theory you could add a div around your adsense code like so:
<div class=”adsensestuff”>
your adsense code goes here
</div>Then add this to your style.css:
.adsensestuff {margin-left: 200px;}
and it should bump the adsense from your right sidebar out into the blue area to the right. Change the 200px to whatever to get the right spacing.
Forum: Themes and Templates
In reply to: Embedding code properly on a PageIn theory you could add a div around your adsense code like so:
<div class=”adsensestuff”>
your adsense code goes here
</div>Then add this to your style.css:
.adsensestuff {margin-left: 200px;}
and it should bump the adsense from your right sidebar out into the blue area to the right. Change the 200px to whatever to get the right spacing.
Forum: Themes and Templates
In reply to: Display thumbnail of first attachmentI enjoy this plugin. It also has some great options in the settings.
https://www.ads-software.com/extend/plugins/alakhnors-post-thumb/
Upload/activate the plugin, then use <?php the_thumb(); ?> inside the loop to display the first image added to your posts/pages.
If you are using the_content in this loop, and inserted your first uploaded image within the post. You can use preg_replace as shown below to strip the img tags from the_content. This way to can display your thumbnails as above however you want and have text only in the_content. Replace your the_content line with below to do so.
<?php
ob_start();
the_content(‘Read the full post’,true);
$postOutput = preg_replace(‘/<img[^>]+./’,”, ob_get_contents());
ob_end_clean();
echo $postOutput;
?>Using both examples, you can do some nifty stuff for example float left on the thumbnail, to text wrap the post title, etc as well as the content.
Forum: Fixing WordPress
In reply to: h1 tag Displays Different in IEoh sorry I read to fast.
You can make another stylesheet to fix IE bugs if you must, using conditional tags. Put what’s below in your head. Can also google IE conditional comments and learn more.
<!–[if IE]>
<link href=”ieonly.css” rel=”stylesheet” type=”text/css” />
<![endif]–>For the font-size thing, I’d try using px instead of a %. IE’s default of 100% is 16px or whatever and FF is smaller. Which could be the case for your issue. Can also try specifying a top and bottom margin, because IE likes to use larger margins for h1, etc.
Forum: Fixing WordPress
In reply to: h1 tag Displays Different in IEWell I just looked and it’s h2 not h1 for your post titles.
You have a h2, etc generic 130% font-size in your /wp-content/themes/mts-journey/style.css
You could either try changing the % to something like 19px instead.
Or try adding #content h2 a {font-size: 19px !important;}
or
.post h2 a {font-size: 19px !important;}
and Don’t delete the #header h1, etc it doesn’t correspond to your post titles.
Forum: Fixing WordPress
In reply to: Define posts per page in a Category TemplateI see you have a pagenav plugin, but have you tried something like this?
<?php next_posts_link(‘« Older Entries’) ?>
<?php previous_posts_link(‘Newer Entries »’) ?>You can add that below endwhile, and put a div around each one to align right and left them, etc.