arathra
Forum Replies Created
-
Forum: Plugins
In reply to: [bbp style pack] Fonts won't change…I did try with twentyfifteen and it made no difference. In the end I have to use a stylesheet with the changes rather than the plugin which is a real shame.
Forum: Plugins
In reply to: [Chat] buying the pluginBut do you offer support without a subscription? Or upgrades?
I mean, if I understand your pricing policy correctly I have the option of
* the plugin, 1 month support for $20
or
* the plugin, 12 months support + upgrades for $190
That’s a hell of a price difference!!!
Forum: Plugins
In reply to: [Chat] buying the plugin$190 for a chat plugin + a year’s updates and support…
Think I’ll give that one a miss!!
Forum: Fixing WordPress
In reply to: 500 Int Server Error on clean install – subdomainThanks – in the end I had to contact my server managers and they sorted it out fairly quickly. I’m still not sure of the cause so I’m trying to find out. If they tell me I’ll post here for future reference.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Can't get rid of CAPTIONPerfect! Thanks so much!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Can't get rid of CAPTIONThanks. I have a feeling that you are right and Relevanssi is not providing the search results.
I’m using the Minn-Lite template and the relevant code is, I believe, here in the loop:
` <?php while ( have_posts() ) : the_post(); ?>
<?php
// Code to show search terms highlighted
$keys = explode( ” “, $s );
$title = get_the_title();
$content = WPGo_Utility::n_words( wp_strip_all_tags( get_the_content() ), 300 );$title = preg_replace( ‘/(‘ . implode( ‘|’, $keys ) . ‘)/iu’, ‘<span class=”search-results”></span>’, $title );
$content = preg_replace( ‘/(‘ . implode( ‘|’, $keys ) . ‘)/iu’, ‘<span class=”search-results”></span>’, $content );
?><article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<header>
<?php $no_title = __( ‘(no title)’, ‘wpgothemes’ ); ?>
<?php WPGo_Utility::check_empty_post_title( get_the_ID(), ‘h3’, $no_title, ‘search-loop-header’ ); ?>
<?php if ( $render_date ) : ?>
<div class=”post-meta post-meta-inline”>
<?php WPGo_Hooks::wpgo_post_archive_meta_header(); ?>
<?php if ( $render_date ) : ?>
<time class=”date” datetime=”<?php the_date( ‘c’ ); ?>” pubdate><?php the_time( get_option( ‘date_format’ ) ); ?></time><?php echo $date_sep; ?><?php endif ?>
</div><!– .post-meta –>
<?php endif; ?></header>
<?php WPGo_Hooks::wpgo_before_post_archive_content(); ?>
<div class=”post-content”>
<?php echo $content; ?>
<?php wp_link_pages( array( ‘before’ => ‘<div class=”page-link”>’, ‘after’ => ‘</div>’ ) );
?>
</div>
<!– .post-content –></article> <!– .post –>
<?php endwhile; // end of the loop. ?>’
As far as I understand it (and I’m no expert!) this isn’t even getting the excerpt, just a bit of content and stripping it.
How can I get Relevanssi to work with this?
Thanks!
Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] Exclude tag for some keywords on page?Thanks – I’ll look forward to the new version!
Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] Not showing on Opera.My bad – working now following an Opera clean out.
Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] Glossary Page not workingThx – definitely a must-have plugin for my site.
Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] Glossary Page not workingWhen I took the site over to my own server it started working. No idea why but am pleased, nonetheless.
Forum: Plugins
In reply to: [YOP Poll] Fatal Error – wp 4.2I spent the weekend looking deeper into this and it seems that it’s a problem with eaccellorator and certain coding protocols. It also affected another plugin I was using. By disabling eaccellorator I managed to avoid the problem and install the plugin. Thanks.
Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] Fatal Error – wp 4.2Thanks – I tried this but it threw another Invalid opcode 153/1/8 error.
In the end I had to disable eaccelorator for the site (using htaccess) and now it has installed and works fine.
I guess I’ll need to update my php sooner or later which hopefully will allow eaccellorater without these errors.
Thanks for your help – great plugin!
Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] Fatal Error – wp 4.2A little more digging it seems it’s something to do with not supporting anonymous functions. The key bit of code is:
add_action('admin_menu',function(){ add_management_page( __('KeyWords Tooltip Generator Converter','bluet-kw'), __('KTTG Converter','bluet-kw'), 'manage_options', 'my_keywords_settings_importer', 'bluet_kw_render_importer_page' ); });
But I’ve only a very slight idea on how to turn that into a non-anonymous function with create_function()
Can you suggest a fix here? This is one of our site’s key plugins!
Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] Fatal Error – wp 4.2I’m using
Apache Version 2.2.26
PHP Version 5.3.28
MySQL Version 5.1.73-cllI tried uninstalling and re-installing but no joy. This is a recently transferred site I’m getting working on a new domain. Might that have something to do with it?