dotsanddashes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Data seemingly deleted; unable to login with admin credentialsHi Jacob,
I do indeed have access to the control panel, although the only options concerning PHP are ‘Perl & PHP Module List’ and ‘Switch PHP Version’, neither of which seem to be particularly useful…
Thanks,
Josh.Forum: Plugins
In reply to: [Yoast SEO] Backend problemsI’ve been getting a similar issue this past week – the plugin’s hogging all my PHP memory and disabling other plugins, most notably the Nivo Slider I’m using. Can only get this to function once the SEO’s been disabled..!
Forum: Plugins
In reply to: [WP Nivo Slider] Nivo Slider Dont work in wp3.5?So it would appear to be an issue with the update eating up far more php memory than it was previously. What is the recommended memory for the plugin, exactly..?
Apart from that, unsure as to whether any of the below could potentially be interfering with the functionality of the plugin although I am currently running the following:
Custom Login lite
Facebook Like Box
Nivo Slider WordPress Plugin
Relevanssi
Search & Replace
SlideDeck Pro for WordPress – Slider Widget
Slidorion
Twitter Widget Pro
WordPress SEO
WP-PageNavi
WP Author Slug
WP Nivo Slider
WP No Category Base
WP Smush.it
WP User Avatar
Yet Another Related Posts PluginThank you.
Forum: Plugins
In reply to: [WP Nivo Slider] Nivo Slider Dont work in wp3.5?The issue seems to be persisting… Could it be anything to do with WP 3.5.1..? Or is there any code I can give you which might illustrate what the problem is..?
Forum: Plugins
In reply to: [WP Nivo Slider] Nivo Slider Dont work in wp3.5?Cool! How can I get it..?
Forum: Plugins
In reply to: [WP Nivo Slider] Nivo Slider Dont work in wp3.5?Yeah, I’m confused by it, I must say..!
The plugin is working more or less as it was, yes, but it’s when I make a new slider that I really encounter the issue… I’ve got no option to modify how it appears at all..?
And with the newer versions of jQuery, nivo.js and themes is there anything else (plugins or otherwise) that may need to be updated as well..?
Thanks!
EDIT: sorry, should have included this link – this is what the galleries now look like, as the variables can’t be altered:
Forum: Plugins
In reply to: [WP Nivo Slider] Needs new version of Nivo SliderI’m having real issues with the plugin update on this one – installed yesterday afternoon, and since lost all the slider settings I had previously. I’ve since been able to get some back, though not all… Example of how we use the slider here:
https://dotsanddashes.co.uk/gallery/john-grant-rough-trade-east-march-12th-2013/
But more worryingly, I’ve since lost the ability to edit sliders at all – can’t select effects, nor alter the image order or anything like that.
The page is also generating the following javascript error: “Uncaught TypeError: Object [object Object] has no method ‘sortable'”
Hope someone out there can help!
Forum: Plugins
In reply to: [WP Nivo Slider] Nivo Slider Dont work in wp3.5?I’m having real issues with the plugin update on this one – installed yesterday afternoon, and since lost all the slider settings I had previously. I’ve since been able to get some back, though not all… Example of how we use the slider here:
https://dotsanddashes.co.uk/gallery/john-grant-rough-trade-east-march-12th-2013/
But more worryingly, I’ve since lost the ability to edit sliders at all – can’t select effects, nor alter the image order or anything like that.
The page is also generating the following javascript error: “Uncaught TypeError: Object [object Object] has no method ‘sortable'”
Hope someone out there can help!
Forum: Fixing WordPress
In reply to: Advanced pages of category not found…That’s really kind of you?– thanks! But yeah, absolutely, trying to get as firm a grip on the inner workings as possible..!
Forum: Fixing WordPress
In reply to: Advanced pages of category not found…Yeah, just about sussed it out in the end. Phew!
And thank you very much! Took a while to get everything right, though reckon it was more or less worth it in the end..!
Oh and thank you for all your help, of course!
Forum: Fixing WordPress
In reply to: Advanced pages of category not found…yeah, me too… How do I get that to six, though..?
Forum: Fixing WordPress
In reply to: Advanced pages of category not found…Oh, and this is the category-review.php I’m using:
<?php /** * The template for displaying Reviews Category Archive pages. * * * @package DotsAndDashes * */ get_header(); ?> <div id="container"> <div id="content" role="main"> <h1 class="page-title">Reviews</h1> <?php $category_description = category_description(); if ( ! empty( $category_description ) ) echo '<div class="archive-meta">' . $category_description . '</div>'; ?> <?php if ( ! have_posts() ) : ?> <div id="post-0" class="post error404 not-found"> <h1 class="entry-title"><?php _e( 'Not Found', 'dotsanddashes' ); ?></h1> <div class="entry-content"> <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'dotsanddashes' ); ?></p> <?php get_search_form(); ?> </div><!-- .entry-content --> </div><!-- #post-0 --> <?php endif; ?> <?php $counter = 0; while ( have_posts() ) : the_post(); ?> <?php $counter++; if ($counter%2 == 0 ) { $post_class = 'fr'; } else { $post_class = 'fl'; } ?> <div id="post-<?php the_ID(); ?>" <?php post_class(array('review-item',$post_class )); ?>> <div class="thumb-wrapper"> <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><img src="<?php bloginfo( 'template_url' ); ?>/thumb.php?src=<?php echo wp_get_attachment_url( get_post_thumbnail_id($post->ID)); ?>&h=350&w=350" alt="<?php echo the_title(); ?>"/></a> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'dotsanddashes' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php echo get_post_meta($post->ID, 'Artist', true); ?><br><?php echo get_post_meta($post->ID, 'Album', true); ?></a></h2> </div> </div><!-- #post-## --> <?php comments_template( '', true ); ?> <?php endwhile; // End the loop. Whew. ?> <?php /* Display navigation to next/previous pages when applicable */ ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <div id="nav-below" class="navigation"> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav"></span> <span class="pagi-bracket">[</span>Older<span class="pagi-bracket">]</span>', 'dotsanddashes' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( '<span class="pagi-bracket">[</span>Newer<span class="pagi-bracket">]</span> <span class="meta-nav"></span>', 'dotsanddashes' ) ); ?></div> </div><!-- #nav-below --> <?php endif; ?> </div><!-- #content --> </div><!-- #container --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Advanced pages of category not found…OK so it’s all now bang on! Apart from one slight thing: I’m now picking up ten, as opposed to six reviews per page…
I’ve got this as the applicable bit of code:
} if ( is_category( 111 ) ) { $query->set( 'posts_per_page', 6 ); return;
though it’s not working as it should..?
Forum: Fixing WordPress
In reply to: Advanced pages of category not found…ah OK! So can I remove that, or does it not matter much..?
And no – I hadn’t remembered that bit, I confess..!
Forum: Fixing WordPress
In reply to: Advanced pages of category not found…the blog has both 115 and 1, which is a little confusing..!