emj
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] Hide Like/Unlike in Search resultsSorry, just found a workaround. In case anyone else needs to do this:
- Edit plugin file wti_like_post_site.php
- Approx line 42 – I added:
// Checking for excluded categories if (is_search()) { $excluded = true; }
voila!
ps great plugin ??
Forum: Plugins
In reply to: Can I get Contact Form 7 to send a customer to another pageYou can! But it’s been a bit buggy in my experience:
https://contactform7.com/redirecting-to-another-url-after-submissions/Forum: Plugins
In reply to: Anything Slider for WordPress Fade in but not outLooks like you figured this out, can you please share how you did it?
Thanks! ??
Forum: Plugins
In reply to: [Easy Nivo Slider] [Plugin: Easy Nivo Slider] Next Gen GalleryI just had the same problem too… this is how you update the scripts (thanks for pointing this out arnoldMADC)
Visit https://nivo.dev7studios.com/pricing/
Download the free ‘jquery plugin’ version
Open the zip and copy the following three files:
– jquery.nivo.slider.js
– jquery.nivo.slider.pack.js
– nivo-slider.cssGo to the plugin folder: easy-nivo-slider > 3rd-party.
Paste and overwrite the files.‘[nivo source=”nextgen” gallery=”1″]’
Worked for me!
This is awesome, thank you!
Forum: Plugins
In reply to: [Stream Video Player] Blackberry Support**BUMP**
sorry:
<a rel="vidbox 800 600" href="<?php if (!empty($image->description)) { echo $image->description; } else { echo $image->imageURL; } ?> " title="<?php echo $image->description ?>" <?php echo $image->thumbcode ?> >
Forum: Plugins
In reply to: [Newsletter Meenews] [Plugin: Newsletter Meenews] 5.0 does not workI had a similar issue…
I upgraded to WordPress 3.0.4, and at the same time downloaded meenews newsletter plugin v5.0 (from www.remarpro.com and the developer site). When I installed the plugin into wordpress, nothing happened ie no newletters option appeared in the dashboard menus.
To get it working, i renamed the plugin folder
from: meenews-newsletter
to: meenewsSeems to be working ok now. Might be a helpful workaround…
Forum: Plugins
In reply to: Flag Comments Pluginscrap that – i figured it out.
Settings > Discussions > E-mail me whenever > A comment is held for moderation
Forum: Plugins
In reply to: Flag Comments PluginI have followed the instructions above and everything is working fine, except I am not getting the notification email to my admin email address? I can only see that a comment had been flagged via the CMS.
Does anyone know how to get the email notifications working?
thanks in advance! ??
Forum: Plugins
In reply to: [Plugin: Contact Form 7] clear input labelshmm, I had the same problem and got textboxes working like this:
a) add this javascript to header.php
function clearText(field)
{
if (field.defaultValue == field.value) field.value = ”;
}(thanks https://www.bradino.com/javascript/clear-textfield-default-value-onclick/)
b) in the contact form 7 plugin folder, edit file /modules/text.php
c) find line 76
$html = ‘<input type=”text” name=”‘ . $name . ‘” value=”‘ . esc_attr( $value ) . ‘”‘ . $atts . ‘ />’;d) between ‘input’ and ‘type’, add:
onFocus=”clearText(this)”worked fine for me, bit of a hack tho
??
Forum: Fixing WordPress
In reply to: Problems with Post Editor after upgrading to 2.8.xThis happened to me too – it was a plugin thing.
I resolved by disabling all plugins (which fixed the problem) then re-enabling one by one until i found the culprit. which turned out to be TinyMCE Advanced.
perfect – upgraded plugin today and its now working fine… whoo! thanks so much for sorting!! ??