rsspanic
Forum Replies Created
-
Hi, thank you for your response, could you point me to which php or css file in the plugin folder might contain this caption? I did a lot of string searches for “share” but unearthed nothing…
This is the share bar I configured, just for reference:
Forum: Themes and Templates
In reply to: Hide sidebar and top menu in posts of a certain categoryHi, thanks but I already tried it… I think in that place in the code the _category function just doesn’t… function… could it be?
Here’s my single.php
Thanks for any help…
<?php
/**
* The Template for displaying all single posts.
*/get_header(); ?>
<div id=”…etc”>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, ‘single’ ); ?>
<?php endwhile; // end of the loop. ?>
<?php
$tags = wp_get_post_tags( get_the_ID() );if ($tags) {
$tag_ids = array();
foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
$args=array(
‘tag__in’ => $tag_ids,
‘post__not_in’ => array(get_the_ID()),
‘posts_per_page’=>3, // Number of related posts to display.
‘ignore_sticky_posts’=>1
);
$my_query = new WP_Query( $args );}
?><?php while ( have_posts() ) { the_post(); ?>
<?php comments_template( ”, true ); ?><?php } ?>
</div><?php if ( !( in_category(‘6713‘) ) ) { ?>
<?php get_sidebar( ‘single’ ); ?>
<?php } ?><?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: "Are you sure you want to do this" error when saving postThanks for that! actually that’s what we did but wondered why does that happen – why does wordpress insist there is a different version if obviously I am editing a newer (later version) and why doesn’t it let me overwrite it if I choose.
Thanks
Forum: Plugins
In reply to: [WP Super Cache] Some posts show as blank after activatingTried it… doesn’t solve it…
define(‘WP_MEMORY_LIMIT’,’64M’);
Forum: Fixing WordPress
In reply to: how to modify .htaccess to redirect based on a parameterSure. From say
http://cnn.com/intlnews-gamechangerman/
to http://cnn.com/internationalnews/gamechangerman
i.e.
http://cnn.com/intlnews-%postname/
to http://cnn.com/internationalnews/%postname
intlnews is the old category name, internationalnews is the new one.
Thanks..
Forum: Fixing WordPress
In reply to: how to modify .htaccess to redirect based on a parameterThanks for your reply. I understand its complicated, but I would be greatful for an example on how to do a conditional “wildcard based” redirect in .htaccess “language..”, where I use %% to mean any possible word here (like * in DOS).
something like this
if (requested url) = “http://aaa.com/categoryX%%” then redirect to “http://aaa.com/categoryX/%5Bcontatenated part after the X]”
our pattern of old URLs is pretty consistent. Doesn’t .htaccess support conditions and string extracting commands?Thanks again
Forum: Plugins
In reply to: [EWWW Image Optimizer] Bulk optimize stuck on 58th file of 7000Hi, they increased the server priority for this process, but the optimization still hangs after 50-200 images. So I just clicked resume about 100 times until it did about two thirds of our media library, and now it does a strange thing: when I click resume, it optimizes these strange images – some a reapeating- and every resume does the same set exactly (even though we still have a few hundred images left to optimize in our media folders)
What are those dummy images? and why does dummy/img5.jpg and others appear twice there?
thanks
Optimized image: dummy/img1.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img4.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img5.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img6.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img7.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img4.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img2.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img1.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img3.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img5.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img6.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img7.jpg
Elapsed: 0.003 secondsOptimized image: dummy/img11.jpg
Elapsed: 0.003 secondsForum: Plugins
In reply to: [EWWW Image Optimizer] Bulk optimize stuck on 58th file of 7000ok many thanks…
Forum: Plugins
In reply to: [EWWW Image Optimizer] Bulk optimize stuck on 58th file of 7000Shared… but I revved up the server to have double the normal resources… dones’t seem to help…
Forum: Plugins
In reply to: [EWWW Image Optimizer] Bulk optimize stuck on 58th file of 7000Hi, thank you for your reply… I’ve stopped and resumed for maybe the 5th time… it gets stuck at a different file every time. I have about 10k files, they are all small or medium (maybe averaging 500k at worst)- is it designed to cope with such an amount? or should I add resources to the server? while its working, the frontend site works normally, not particularly slow or anything, so the server doesn’t seem overly implicated.
Much obliged…!
Forum: Plugins
In reply to: [EWWW Image Optimizer] Imagemagick 'convert': MISSINGOk much obliged..
Forum: Fixing WordPress
In reply to: "ftpagefold_v3.0.15.js" recommended to be moved .. how?ok thanks a lot… will do…
Forum: Themes and Templates
In reply to: Related posts – how to disableok thanks will do