ronalds
Forum Replies Created
-
I can confirm this issue is resolved in your update released today. Thank you!
- This reply was modified 2 years, 2 months ago by ronalds.
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] “noindex” error in Google Search ConsoleI don’t have any particular plugin for SEO like Yoast or such. I am not sure where to look to remove this error. I am considering trying other sitemap plugins at this point.
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] “noindex” error in Google Search ConsoleDoes this require a plugin update? Anyone able to shed some light on a fix for this?
Forum: Plugins
In reply to: [Plugin: SexyBookmarks] Configuration panel gives a HTTP ErrorI have tried to do more research but have failed to find a solution so far. The Apache server log show no traces of any errors related.
All other addons I’ve been running runs/installs just fine, this is a Sexybookmarks specific -issue. I have tried previous versions of the plugin (2.5.2.1 and 2.5) and they give me the same error.
EDIT
After searching the forums I found other similar issues related to other plugins, and they recommended trying to increase the timeout value in wp-include/http.php. I changed the timeout value from 5 seconds to 15, and this solved the problem.Forum: Fixing WordPress
In reply to: Latest entries problemI used this one earlier to show my latest entries
<!-- LATEST ENTRIES -->
<h2><?php _e("Latest Entries"); ?></h2>
<div class="sidebox">-
<?php
- ID)."'>";
the_title();
echo '
foreach ($recentposts as $post) {
if ($post->post_title == '')
$post->post_title = sprintf(__('Post #%s'), $post->ID);
echo "';
}
?></div>
<?php endif; ?>Forum: Fixing WordPress
In reply to: Latest entries problemHere’s my sidebar.php. Pretty simple stuff. Sorry I didn’t realize this was of importance.
<link href="style.css" rel="stylesheet" type="text/css" />
<div id="sidebar">
<?php include('../firestats/php/firestats-hit.php')?>-
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar() ) : else : ?>
<!-- CATEGORIES -->
<li class="sidebox">
<h2>Categories</h2>- <?php wp_list_cats('sort_column=name&hierarchical=0&optioncount=1'); ?>
<!-- MOST POPULAR -->
<li class="sidebox">
<h2>Most Popular</h2>-
<?php akpc_most_popular(); ?>
<!-- <?php wp_list_pages('title_li=Pages' ); ?> -->
<!-- ARCHIVES -->
<li class="sidebox">
<h2>Archives</h2>- <?php wp_get_archives('type=monthly'); ?>
<!-- SITE META -->
<li class="sidebox">
<h2>User Panel</h2>-
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
<?php wp_meta(); ?>
<?php endif; ?>
</div><!-- end id:sidebar -->
</div><!-- end id:content -->
</div><!-- end id:container -->Forum: Fixing WordPress
In reply to: Scale 9 for imagesI’m not familar with the scale 9 technique youre talking about, however, making a border around the images can for example be set in the stylesheet.
Forum: Fixing WordPress
In reply to: Scale 9 for imagesI’m not familar with the scale 9 technique youre talking about, however, making a border around the images can for example be set in the stylesheet.
Forum: Fixing WordPress
In reply to: Tracking people who view myblogYou can use the Popular Contest plugin for basic info on amount of people reading your stuff. Firestats is another great plugin (it simply owns when it comes to visiting statistics). You’ll find them on google if you dont manage locate them elsewhere.