Joe B
Forum Replies Created
-
Yes, it does for me.
Hello
Thanks for the reply. So, there are two issues.
1. The pop-up does not work when there is only one event in the current month calendar.
With the shortcode I made, using the ‘Skin’ option ‘Calendar/Monthly View’, and with the ‘Style’ set to ‘Simple’, the tooltip pop-up doesn’t work if there is only one entry or event for the month.
If changing to the next month, then back again to the current month, the pop-up works on the single event.
If there are 2 events or entries in the calendar for the current month, the pop-works.
2. The second issue is quite minor, and is to do with the strange comma and 3 dots.
I have explained all of this in my previous post.
These ‘issues’ happen on all websites that I’ve tested on, and on my localhost/WAMP server that I use for development. It makes no difference which themes are used or whether there are any plugins enabled or disabled, or which theme is used.
On my WAMP server, I have just installed a clean install of the current version of WordPress, with a new database, with no plugins installed, using the default WordPress ‘Twenty Twenty-One’ theme, and still have exactly the same issues.
Regards.
I have the same issue, after updating WordPress and Adrotate, but I cannot revert to an earlier database.
Forum: Plugins
In reply to: [EFavourite Posts] Post Thumbnail in widget listHello Paresh
Thanks, I will send you an email.
Joe
Did you check your .htacces file (if you have one), on your server? Mine got overwritten by the plugin, which brought the site down.
Forum: Plugins
In reply to: [BJ Lazy Load] blank image on woocommerce product list backendThanks for the update, I will give it a try. I found that the BJ Lazy Load plugin conflicted with another plugin, Social Sharing Toolkit, I disabled Social Sharing Toolkit and it worked ok.
Forum: Plugins
In reply to: [BJ Lazy Load] blank image on woocommerce product list backendI have a similar issue, shows images ok on category pages, but not on single posts, sometimes they show, sometimes they don’t. Probably a conflict with a plugin, but I cannot disable any of them as the live site wouldn’t work.
Forum: Reviews
In reply to: [BJ Lazy Load] WOW!It does seem to make a huge difference to site loading times, which is great, and much more noticeable than the cache plugin I use, but some single post images don’t seem to load at all.
Forum: Plugins
In reply to: [visualCaptcha] Plugin allows spamming botsHello
Thanks very much for both of your replies, it seems to be a bit of a catch 22 (or is that captcha 22?), I have used a different captcha for the moment anyway, it is a shame that it had this issue. Also, I have blocked all the IPs of the spambots via htaccess which has permanently stopped it.
Also the bots were accessing the post-new.php file directly (which is in the wp-admin folder), and they were able to post as any of the active admins, must be another loophole somewhere in my old version of WordPress (3.5.1), which I can’t update due to plugin issues. I will be rebuilding the site in a while….
Forum: Plugins
In reply to: [Theme My Login] Security Issue – user password exposedOk, thanks for the reply. Unfortunately, WordPress does have some ‘limitations’, this does seem like quite a major ‘loophole’ that has been overlooked.
Forum: Plugins
In reply to: Automatically changing the permalink address to external link?Hi
I used this, which makes the featured image a link to the external, though it doesn’t work on some sites I have tried it on, (with same theme), could be a plugin conflict. Really slowed down one site I tried this on though.
<?php $mypostimage = ''; if ( has_post_thumbnail() ) { $mypostimage = get_the_post_thumbnail($page->ID, 'summary-image', array('class' => 'photo' , 'alt' => get_the_title() , 'title' => get_the_title() )); } ?> <div class="storycontent"><?php echo apply_filters('the_content', preg_replace('/<img ([^>]*)>/', $mypostimage, get_the_content())); ?>
Forum: Plugins
In reply to: Show Thumbnails in the Most Favorited Posts WidgetHi
This is what I put in the wpfp-page-template.php file, after
wpfp_remove_favorite_link($post_id);
(which is on line 21) and before the
echo "</li>";
echo "<h2> <a href='".get_permalink($post_id)."' title='". $p->post_title ."' image='". woo_get_image('image','300','250','thumbnail',90,$post_id,'img')."' target='". _blank ."' > " . $p->post_title . "</a> </h2>" ;
This works with the WooThemes ‘Object’ theme, changing woo_get_image to get_image in the code above may make it work in other themes, depends on the theme, but I cannot be certain as I haven’t tried it yet.
I tried to make it work in the widget, but it didn’t, so I paid a coder to have a look, in the end what I did was correct, but the code was missing a div for it to show up – my php coding is quite basic, but I wasn’t far off!
Joe
Forum: Plugins
In reply to: [WP Favorite Posts] [Plugin: WP Favorite Posts] Can I sjow Images?For the wootheme that I am using, I put this in the wpfp-page-template.php:-
[Code moderated as per the Forum Rules. Please use the pastebin]
also added the target so that the link opened in a new tab/page.
I am not really a coder, but another thing that would good is showing images/thumbnails in the ‘Most Favorited’ widget, can’t seem to get that to work, anyone have any ideas?