Forum Replies Created

Viewing 15 replies - 1 through 15 (of 30 total)
  • Thread Starter dotsanddashes

    (@dotsanddashes)

    Hi 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.

    I’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..!

    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 Plugin

    Thank you.

    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..?

    Cool! How can I get it..?

    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:

    https://dotsanddashes.co.uk/uncategorized/jg-rte/

    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!

    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!

    Thread Starter dotsanddashes

    (@dotsanddashes)

    That’s really kind of you?– thanks! But yeah, absolutely, trying to get as firm a grip on the inner workings as possible..!

    Thread Starter dotsanddashes

    (@dotsanddashes)

    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!

    Thread Starter dotsanddashes

    (@dotsanddashes)

    yeah, me too… How do I get that to six, though..?

    Thread Starter dotsanddashes

    (@dotsanddashes)

    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(); ?>
    Thread Starter dotsanddashes

    (@dotsanddashes)

    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..?

    Thread Starter dotsanddashes

    (@dotsanddashes)

    ah OK! So can I remove that, or does it not matter much..?

    And no – I hadn’t remembered that bit, I confess..!

    Thread Starter dotsanddashes

    (@dotsanddashes)

    the blog has both 115 and 1, which is a little confusing..!

Viewing 15 replies - 1 through 15 (of 30 total)